* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f4eb;
    font-family: Arial, sans-serif;
    color: #3d2b1f;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;

    background: rgba(248, 244, 235, 0.92);

    backdrop-filter: blur(10px);

    z-index: 1000;

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo img {
    height: 70px;
    width: auto;

    display: block;
}

/* =========================
   NAVIGATION DESKTOP
========================= */

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: #5c4326;
    font-weight: 600;

    transition: 0.3s;
}

.desktop-nav a:hover {
    color: #c28b2c;
}

/* =========================
   MENU MOBILE
========================= */

.mobile-menu-button {
    display: none;

    border: none;
    background: none;

    font-size: 2rem;

    cursor: pointer;

    color: #5c4326;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px;

    background:
        linear-gradient(
            rgba(248,244,235,0.65),
            rgba(248,244,235,0.75)
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;

    color: #4a351f;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    line-height: 1.7;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .site-header {
        padding: 15px 20px;
    }

    .logo img {
        height: 48px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* =========================
   SECTIONS COMMUNES
========================= */

.intro-section,
.content-section {
    padding: 100px 40px;
    background: #f8f4eb;
}

.intro-container,
.content-section {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-section h2,
.content-section h2 {
    font-size: 2.6rem;
    color: #4a351f;
    margin-bottom: 25px;
}

.intro-section p,
.content-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4c3a2a;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
    min-height: 45vh;
    padding: 160px 40px 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(248,244,235,0.75),
            rgba(248,244,235,0.85)
        ),
        url("/images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 4rem;
    color: #4a351f;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 35px 20px;
    text-align: center;
    background: #3d2b1f;
    color: #f8f4eb;
    font-size: 0.95rem;
}

/* =========================
   MOBILE NAV
========================= */

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {

    .mobile-nav {
        position: fixed;
        top: 78px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;

        background: rgba(248, 244, 235, 0.98);

        transform: translateY(-120%);
        transition: transform 0.3s ease;

        border-bottom: 1px solid rgba(0,0,0,0.08);

        z-index: 999;
    }

    .mobile-nav.open {
        transform: translateY(0);
    }

    .mobile-nav a {
        padding: 18px 25px;

        text-decoration: none;
        color: #5c4326;
        font-weight: 600;

        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .intro-section,
    .content-section {
        padding: 70px 22px;
    }

    .intro-section h2,
    .content-section h2 {
        font-size: 2rem;
    }

    .page-hero {
        min-height: 35vh;
        padding: 130px 22px 60px;
    }

    .page-hero h1 {
        font-size: 2.6rem;
    }
}