/* ======== 1. VARIABLES & RESET ======== */
:root {
    --primary-color: #D73A00; /* Rouge-orangé du logo */
    --secondary-color: #FF6600; /* Orange plus vif des flammes */
    --dark-bg: #1a1a1a;       /* Fond sombre (pierre) */
    --medium-bg: #2c2c2c;     /* Fond des cartes (plus clair) */
    --text-color: #F5F5F5;    /* Texte blanc cassé */
    --text-muted: #AAAAAA;    /* Texte grisé (descriptions) */
    --header-height: 70px;
    
    /* NOUVELLES POLICES */
    --font-body: 'Poppins', sans-serif;
    --font-headings: 'Playfair Display', serif; /* Police pour les titres de page */
    --font-logo: 'Cinzel Decorative', serif; /* POLICE SPÉCIALE POUR LE LOGO */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body); 
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings); /* Police des titres de page */
    font-weight: 700; 
    line-height: 1.3;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}
p.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-family: var(--font-body); 
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

/* ======== 2. HEADER & NAVIGATION (AVEC POLICE LOGO) ======== */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-fixed.scrolled {
    background-color: rgba(26, 26, 26, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* NOUVEAU STYLE POUR VOTRE LOGO TEXTE */
.nav-logo {
    font-family: var(--font-logo);  /* <-- APPLICATION DE LA POLICE LOGO */
    font-size: 2.5rem;              /* Ajusté pour la nouvelle police */
    font-weight: 700;
    color: var(--primary-color);        
    letter-spacing: 2px;            /* Plus espacé pour le style */
    text-transform: uppercase;          
    text-decoration: none;
    line-height: 1;                   
    text-shadow: 0 0 10px rgba(215, 58, 0, 0.6); 
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--secondary-color); 
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.8); 
}


.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body); 
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    background-color: var(--secondary-color); 
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

/* ======== 3. FOOTER (AVEC POLICE LOGO ET CORRECTION COULEUR LIEN) ======== */
.footer {
    background-color: #000;
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* STYLE DU LOGO DANS LE FOOTER */
.footer-col h3 {
    font-family: var(--font-logo); /* <-- APPLICATION DE LA POLICE LOGO */
    font-size: 2.2rem;             /* Un peu plus petit que le header */
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0 8px rgba(215, 58, 0, 0.5); 
    margin-bottom: 1rem; 
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-family: var(--font-headings); /* Titres normaux du footer */
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* CORRECTION COULEUR LIENS ADRESSE/TEL DANS FOOTER */
.footer-col p a {
    color: var(--text-muted); /* Utilise la même couleur que le texte normal du footer */
    text-decoration: none; /* Enlève le soulignement si présent */
}
.footer-col p a:hover {
    color: var(--text-color); /* Couleur au survol (blanc cassé) */
    text-decoration: underline; /* Souligne au survol pour indiquer que c'est cliquable */
}
/* FIN DE LA CORRECTION */

/* STYLE POUR LES LIENS SOCIAUX AVEC ICÔNES (MODIFIÉ) */
.social-link {
    display: flex; /* <-- CHANGÉ DE 'inline-flex' À 'flex' POUR LES EMPILER */
    align-items: center;  /* Centre verticalement */
    gap: 8px;             /* Espace entre l'icône et le texte */
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    width: fit-content; /* S'assure que le lien ne prend pas toute la largeur (pour les écrans larges) */
}

/* Sur mobile, centrer les liens sociaux si le footer est centré */
@media (max-width: 768px) {
    .social-link {
        margin-left: auto;
        margin-right: auto;
    }
}


.social-link:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.social-icon {
    width: 16px;  /* Taille de l'icône */
    height: 16px; /* Taille de l'icône */
    fill: currentColor; /* L'icône prend la couleur du lien (gris, puis blanc au survol) */
}
/* FIN DES STYLES SOCIAUX */

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-bg);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ======== 4. UTILITY CLASSES (Buttons, etc.) ======== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(215, 58, 0, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* STYLE POUR LE BOUTON D'APPEL */
.btn-call {
    padding: 1rem 2rem; 
    font-size: 1.2rem;   
    margin-top: 1rem;    
}

/* Animation 'fade-in' (le JS gère 'visible') */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======== 5. PAGE-SPECIFIC: Accueil (index.html) ======== */

/* Hero Section */
.hero {
    height: calc(100vh - var(--header-height));
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 4.5rem; 
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* About Section */
.section-title {
    text-align: center;
    font-size: 3rem; 
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background-color: var(--medium-bg);
    padding: 4rem 0;
    text-align: center;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* ======== 6. PAGE-SPECIFIC: Menu & Boissons ======== */

.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), var(--medium-bg);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 3.5rem; 
}

.section-title-menu {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    margin-top: 3rem;
}
.section-title-menu:first-of-type {
    margin-top: 0;
}
/* Style pour les sous-titres (H3) des menus */
h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
/* Style pour les sous-titres (H4) des menus (ex: Signature) */
.sub-menu-title {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background-color: var(--medium-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(215, 58, 0, 0.3); 
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-header h3 {
    font-family: var(--font-body); /* Les noms des plats restent en Poppins */
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0; 
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}


/* ======== 7. PAGE-SPECIFIC: Contact (NETTOYÉ) ======== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    margin-top: 3rem;
    background: var(--medium-bg);
    padding: 1.5rem;
    border-radius: 8px;
}
.contact-info h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--font-headings);
}
.contact-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
/* CORRECTION COULEUR LIENS ADRESSE/TEL DANS PAGE CONTACT */
.contact-info p a {
    color: var(--text-muted);
}
.contact-info p a:hover {
    color: var(--text-color);
    text-decoration: underline;
}
/* FIN DE LA CORRECTION */


/* ======== 8. RESPONSIVE DESIGN ======== */

/* Tablettes (max 992px) */
@media (max-width: 992px) {
    .about-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hero-title {
        font-size: 3.5rem; 
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Mobiles (max 768px) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: left 0.3s ease-in-out;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-logo {
        font-size: 2rem; /* Ajusté pour la police Cinzel sur mobile */
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1.5rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--medium-bg);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:hover,
    .nav-link.active {
        background-color: var(--primary-color);
        color: var(--text-color);
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem; 
    }
    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }
    .section-title {
        font-size: 2.5rem; 
    }
     .page-title {
        font-size: 3rem;
    }
    .section-title-menu {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }

    .footer-container {
        text-align: center;
    }
    
    /* Ajustement de la taille du logo footer sur mobile */
    .footer-col h3 {
        font-size: 1.8rem;
    }
}