* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d1810;
    --secondary: #8b4513;
    --accent: #d4a574;
    --light: #fdf8f3;
    --text: #3d2914;
    --text-light: #6b5344;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 2rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    color: var(--light);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

header p {
    color: var(--accent);
    font-style: italic;
}

nav {
    margin-top: 1.5rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, rgba(45, 24, 16, 0.9), rgba(45, 24, 16, 0.7)), url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1200') center/cover;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.hero h2 {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--accent);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0.5rem auto;
}

article {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(45, 24, 16, 0.1);
    transition: transform 0.3s;
}

article:hover {
    transform: translateY(-5px);
}

article h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

article .meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

article p {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--accent);
}

footer {
    background: var(--primary);
    color: var(--light);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    opacity: 0.8;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    nav a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
}
