/* ---------------------------------------------------------
   STYLE GLOBAL
--------------------------------------------------------- */

body {
    margin: 0;
    background: #f4efe7;
    font-family: Georgia, serif;
    color: #3a2a1e;
}

.content {
    padding: 20px;
}

/* ---------------------------------------------------------
   HEADER BLANC + LOGO
--------------------------------------------------------- */

.site-header {
    background: #ffffff;
    border-bottom: 4px solid #5a3e2b;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 195px;
    width: auto;
    object-fit: contain;
}

/* ---------------------------------------------------------
   MENU PRINCIPAL (TEXTE BRUN)
--------------------------------------------------------- */

.main-menu {
    display: flex;
    align-items: center;
}

.menu-root {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu-root > li {
    position: relative;
}

.menu-root > li > a {
    color: #5a3e2b;
    text-decoration: none;
    padding: 10px 12px;
    font-weight: bold;
    font-size: 16px;
}

.menu-root > li > a:hover {
    color: #8b5e3c;
}

/* ---------------------------------------------------------
   MENU DÉROULANT (FOND BOIS FONCÉ)
--------------------------------------------------------- */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #5a3e2b;
    padding: 10px 0;
    border-radius: 6px;
    min-width: 220px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #ffe9c6;
    text-decoration: none;
    font-size: 15px;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.15);
}

/* Activation du dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
    background: #5a3e2b;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* ---------------------------------------------------------
   VERSION MOBILE
--------------------------------------------------------- */

@media (max-width: 768px) {

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-root {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown-menu li a {
        padding-left: 25px;
    }
/* ---------------------------------------------------------
   SECTION HERO (bannière d'accueil)
--------------------------------------------------------- */

.hero {
    background: url('/assets/img/hero_chantecler.jpg') center 20% / cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    border-bottom: 4px solid #5a3e2b;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin: auto;
}

/* Version mobile */
@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
}