/* ==========================================================================
   NAVBAR LUXE (Vert & Or)
   ========================================================================== */

/* 1. Bandeau CAN (Terracotta) */
.top-bar-can {
    background-color: #B87333; /* Terracotta */
    color: white;
    text-align: center;
    padding: 8px 5%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1002;
}
.top-bar-can a {
    color: #F4EEE5;
    text-decoration: underline;
    margin-left: 10px;
    font-weight: 600;
}

/* 2. Navigation Principale (Vert) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #0E4D36; /* Vert Majorelle Foncé */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    display: flex; align-items: center; gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-img { height: 50px; width: auto; transition: transform 0.3s; }
.logo:hover .logo-img { transform: scale(1.05); }

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
    font-family: 'Poppins', sans-serif;
    color: #E6D7C3; /* Beige Riad pour le texte */
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: #C8A462; /* Or au survol */ }

/* Bouton Concierge (Or) dans la nav */
.btn-nav-gold {
    background-color: #C8A462;
    color: white !important;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 600;
    border: 1px solid #C8A462;
    transition: 0.3s;
}
.btn-nav-gold:hover { background-color: #b08d55; color: white !important; }

.burger { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ==========================================================================
   RESPONSIVE MOBILE (MENU DÉROULANT COMPACT - COULEURS VERTS)
   ========================================================================== */
@media (max-width: 1050px) {

    .nav-links {
        /* Positionnement sous la barre */
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        height: auto; /* Ne prend que la hauteur nécessaire */
        
        /* COULEURS IDENTIQUES À LA BARRE (Vert) */
        background-color: #0E4D36; 
        border-bottom: 4px solid #C8A462; /* Petite bordure Or en bas */
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;

        /* Animation */
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
        transition: all 0.3s ease-out;
    }
    
    /* État ouvert */
    .nav-links.active { 
        opacity: 1;                 
        transform: translateY(0);
        visibility: visible;
    }
    
    /* Style des liens sur mobile */
    .nav-links a { 
        color: #E6D7C3; /* Beige */
        font-size: 1rem; 
        width: 100%;
        text-align: center;
    }

    /* Le burger apparaît */
    .burger { display: block; }
    
    /* Ajustement bouton Concierge sur mobile */
    .btn-nav-gold {
        width: 80%;
        text-align: center;
        margin-top: 10px;
    }
}