:root {
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --accent-gold: #c89f71; 
    --font-title: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.gold-text {
    color: var(--accent-gold);
    font-weight: 700;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-dark);
}

/* BOUTONS */
.btn-outline {
    border: 1px solid var(--text-dark);
    padding: 10px 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn-solid {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-solid:hover {
    background-color: var(--accent-gold);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 5%;
}

.hero-box {
    background-color: var(--bg-white);
    padding: 60px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.subtitle {
    color: var(--accent-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 16px;
}

.hero-box h1 {
    font-family: var(--font-title);
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-box p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* --- CONCEPT / ATOUTS --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 20px 0;
}

.feature-number {
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-family: var(--font-title);
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-gray);
}

/* --- MENU --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-title);
    font-size: 36px;
}

.divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 20px auto 0;
}

.menu-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-article {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.menu-text {
    flex-shrink: 0;
    max-width: 70%;
}

.menu-text h3 {
    font-family: var(--font-title);
    font-size: 22px;
    margin-bottom: 4px;
}

.menu-text p {
    font-size: 14px;
    color: var(--text-gray);
}

/* La ligne en pointillés entre le texte et le prix */
.menu-line {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 20px 8px 20px;
}

.menu-price {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-family: var(--font-title);
    font-size: 36px;
}

.divider-left {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 20px 0 40px 0;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.info-block p {
    font-size: 16px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -20px 20px 0px var(--accent-gold);
}

/* --- FOOTER --- */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 30px 0;
    font-size: 13px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mmi-mention {
    opacity: 0.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: 50vh;
        position: relative;
    }
    
    .hero-content {
        justify-content: center;
        padding: 0 20px;
        margin-top: -50px;
    }
    
    .hero-box {
        padding: 40px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-article {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-line {
        display: none;
    }
    
    .menu-price {
        margin-top: 10px;
    }
}

.contact-image {
    position: relative;
    width: 100%;
    min-height: 400px; /* Assure une belle hauteur à la carte */
}

.contact-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: -20px 20px 0px var(--accent-gold); /* On garde ton effet d'ombre classe */
    
    /* Petite touche premium : on désature un peu la carte pour qu'elle matche avec l'élégance du site */
    filter: grayscale(80%) contrast(1.1);
    transition: filter 0.4s ease;
}

/* La carte reprend toutes ses couleurs quand le client passe sa souris dessus */
.contact-image iframe:hover {
    filter: grayscale(0%) contrast(1);
}

/* --- AJUSTEMENTS PAGE MENU DÉDIÉE --- */
.active-link {
    color: var(--text-dark) !important;
    font-weight: 700;
    border-bottom: 1px solid var(--accent-gold);
}

.menu-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    background-color: var(--bg-light);
    border-bottom: 1px solid #f0f0f0;
}

.menu-hero h1 {
    font-family: var(--font-title);
    font-size: 48px;
    margin-bottom: 16px;
}

.menu-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 16px;
}

.menu-page-section {
    padding: 80px 0;
}

/* Organisation en grille pour les catégories */
.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-category {
    margin-bottom: 20px;
}

.category-title {
    font-family: var(--font-title);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.category-divider {
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
    margin-bottom: 32px;
}

.menu-list-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Responsive pour la page menu */
@media (max-width: 850px) {
    .menu-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* --- PAGE CONTACT & FORMULAIRE --- */
.contact-page-section {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Ajustement de la mini-carte pour la colonne de gauche */
.map-mini {
    min-height: 250px;
    margin-top: 40px;
}

/* Style du formulaire */
.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    background-color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #cccccc;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px var(--accent-gold);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-full {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Responsive pour la page contact */
@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* --- SECTION FAQ (ACCORDÉON) --- */
.faq-section {
    background-color: var(--bg-white);
    border-top: 1px solid #f0f0f0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1 tiers pour le titre, 2 tiers pour les questions */
    gap: 80px;
    align-items: start;
}

.faq-header h2 {
    font-family: var(--font-title);
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.faq-header p {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 300px;
}

/* Style de la liste déroulante */
.faq-item {
    border-bottom: 1px solid #eaeaea;
}

/* Le titre de la question sur lequel on clique */
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 18px;
    font-family: var(--font-title);
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Cache la petite flèche noire par défaut du navigateur */
    transition: color 0.3s ease;
}

/* Cache la flèche par défaut spécifiquement sur Safari */
.faq-item summary::-webkit-details-marker {
    display: none; 
}

.faq-item summary:hover {
    color: var(--accent-gold);
}

/* L'icône + à droite */
.faq-icon {
    font-size: 28px;
    color: var(--accent-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* --- ANIMATIONS QUAND ON OUVRE LA QUESTION --- */

/* Change la couleur du titre quand c'est ouvert */
.faq-item[open] summary {
    color: var(--accent-gold);
}

/* Fait pivoter le + de 45 degrés pour qu'il ressemble à un X (fermer) */
.faq-item[open] summary .faq-icon {
    transform: rotate(45deg); 
}

/* Le texte de la réponse */
.faq-content {
    padding-bottom: 24px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    animation: apparitionDouce 0.4s ease-in-out;
}

/* Petite animation d'apparition pour la réponse */
@keyframes apparitionDouce {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive pour mobile */
@media (max-width: 850px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-header p {
        max-width: 100%;
    }
}
/* --- SECTION MOT DU CHEF CENTRÉE --- */

.chef-content-centered {
    max-width: 800px; /* Évite que le texte soit trop étiré sur grand écran */
    margin: 0 auto; /* Centre la boîte au milieu de la page */
    text-align: center; /* Centre le texte à l'intérieur */
    padding: 20px;
}

.divider-center {
    width: 60px;
    height: 2px;
    background-color: #c7a17a; /* Couleur dorée/sable (ajuste avec ta variable si besoin) */
    margin: 20px auto 30px auto;
}

.large-quote {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: #c7a17a;
    line-height: 0;
    margin-top: 20px;
    margin-bottom: 30px;
    opacity: 0.4; /* Rend le guillemet discret et élégant */
}

.chef-content-centered .chef-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic; /* Effet citation */
    color: #4a4a4a;
}

.chef-content-centered .chef-signature {
    margin-top: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
}
/* Responsive pour tablettes et mobiles */
@media (max-width: 900px) {
    .chef-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .chef-image img {
        box-shadow: 15px -15px 0px var(--accent-gold);
    }
}
/* Configuration du Hero pour le slider */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Ajuste selon ton design */
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Style commun aux slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlider 15s infinite; /* Durée totale 15s */
}

/* Décalage de l'animation pour chaque image */
.slide:nth-child(1) {
    animation-delay: 0s;
}
.slide:nth-child(2) {
    animation-delay: 5s;
}
.slide:nth-child(3) {
    animation-delay: 10s;
}

/* Animation du fondu */
@keyframes fadeSlider {
    0% { opacity: 0; }
    10% { opacity: 1; }  /* Apparition */
    33% { opacity: 1; }  /* Reste visible */
    43% { opacity: 0; }  /* Disparition */
    100% { opacity: 0; }
}

/* On s'assure que le contenu reste bien au-dessus */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}