/* --- Variables Thème Fast Food --- */
:root {
    --fast-primary: #FFBC0D; /* Jaune "Appétit" */
    --fast-secondary: #DA291C; /* Rouge "Faim" */
    --fast-dark: #27251F;
    --fast-bg: #F5F5F7;
    --radius: 16px;
}

body { background-color: var(--fast-bg); font-family: 'Inter', sans-serif; }

/* --- Hero --- */
.hero-fastfood {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}
.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-fastfood h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.hero-buttons { display: flex; gap: 15px; margin-top: 25px; }

.btn-fast-primary { 
    background: var(--fast-primary); color: var(--fast-dark); 
    padding: 15px 30px; border-radius: 50px; font-weight: 800; text-decoration: none;
}
.btn-fast-outline { 
    border: 2px solid white; color: white; 
    padding: 15px 30px; border-radius: 50px; font-weight: 800; text-decoration: none;
}

/* --- Category Nav --- */
.category-nav {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 70px; /* Après ta navbar */
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.nav-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}
.nav-scroll::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.nav-pill {
    background: var(--fast-bg);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--fast-dark);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.nav-pill:hover { background: var(--fast-primary); }

/* --- Product Grid --- */
.fast-section-block { margin: 50px 0; }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 25px; color: var(--fast-dark); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); }

.product-img img { width: 100%; height: 200px; object-fit: cover; }

.product-info { padding: 20px; }
.product-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.product-header h3 { font-size: 1.25rem; font-weight: 700; color: var(--fast-dark); }
.product-price { background: var(--fast-bg); padding: 5px 12px; border-radius: 10px; font-weight: 800; color: var(--fast-secondary); }

.product-desc { font-size: 0.9rem; color: #666; line-height: 1.4; margin-bottom: 15px; }
/* --- Bloc Commande Directe / Click & Collect --- */
.delivery-item.direct {
    max-width: 400px;
    margin: 0 auto 30px auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 2px solid #ffbc0d; /* Rappel de la couleur dominante */
}

.delivery-item.direct:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.delivery-item.direct a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    text-decoration: none;
    color: #27251f;
}

/* Le petit badge "Click & Collect" */
.delivery-item.direct .tag {
    background: #ffbc0d;
    color: #27251f;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* Le numéro de téléphone */
.delivery-item.direct .phone {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Le petit texte d'instruction */
.delivery-item.direct small {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* --- Adaptabilité Mobile --- */
@media (max-width: 480px) {
    .delivery-item.direct .phone {
        font-size: 1.4rem;
    }
    .delivery-item.direct {
        width: 90%; /* Prend plus de place sur petit écran */
    }
}

.kcal-tag { font-size: 0.75rem; font-weight: 700; color: #ff8c00; text-transform: uppercase; }

/* --- Delivery --- */
.delivery-card-main {
    background: var(--fast-dark);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
}
.platform-list { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.plat-btn { padding: 10px 25px; border-radius: 12px; transition: 0.3s; }
.plat-btn.ubereats { background: #06C167; }
.plat-btn.deliveroo { background: #00CCBC; }
.plat-btn.justeat { background: #F36324; }
.plat-btn img { height: 25px; }
.hero-fast { height: 50vh; position: relative; overflow: hidden; }
.overlay-fast { 
    position: absolute; inset: 0; background: rgba(0,0,0,0.6); 
    display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff;
}
.overlay-fast h1 { font-size: 3rem; font-weight: 800; text-transform: uppercase; margin: 0; }

.fast-nav { background: #fff; position: sticky; top: 0; z-index: 100; border-bottom: 2px solid #f1f1f1; }
.scroll-wrapper { display: flex; overflow-x: auto; padding: 15px; gap: 10px; }
.nav-item { 
    background: #f8f8f8; padding: 8px 20px; border-radius: 50px; 
    text-decoration: none; color: #333; font-weight: 700; white-space: nowrap;
}
.nav-item:hover { background: #ffbc0d; }

.fast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
.fast-card { background: #fff; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; }
.fast-img { width: 100%; height: 180px; object-fit: cover; }
.fast-info { padding: 15px; }
.fast-head { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 8px; }
.price { color: #e67e22; }
.desc { font-size: 0.85rem; color: #666; margin: 0; }
.category-block { padding-top: 60px; }
.cat-title { border-left: 5px solid #ffbc0d; padding-left: 15px; text-transform: uppercase; }
/* --- Global & Hero --- */
.hero-fast-simple {
    min-height: 35vh; /* Hauteur minimale sur PC */
    height: auto;     /* Permet au container de s'agrandir si besoin */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch; /* Pour que l'overlay couvre toute la hauteur auto */
    position: relative;
}

.overlay-fast {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    padding: 40px 20px; /* Padding pour que le texte ne touche pas les bords */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.overlay-fast h1 { font-size: 3.5rem; font-weight: 800; text-transform: uppercase; }
.btn-call-fast { display: inline-block; background: #ffbc0d; color: #27251f; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 800; margin-top: 20px; box-shadow: 0 4px 15px rgba(255,188,13,0.4); }

/* --- Welcome --- */
.fast-welcome { padding: 60px 0; text-align: center; background: #fff; }
.fast-welcome h2 { font-size: 2.2rem; margin-bottom: 20px; color: #27251f; }
.fast-welcome p { max-width: 800px; margin: 0 auto; line-height: 1.6; color: #555; }

/* --- Nav --- */
.fast-nav { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.scroll-wrapper { display: flex; overflow-x: auto; padding: 15px; gap: 10px; scrollbar-width: none; }
.nav-item { background: #f1f1f1; padding: 10px 20px; border-radius: 50px; text-decoration: none; color: #333; font-weight: 700; white-space: nowrap; }
.nav-item:hover { background: #ffbc0d; }

/* --- Grid Carte --- */
.carte-fast { background: #f9f9f9; padding: 40px 0; }
.category-block { margin-bottom: 50px; scroll-margin-top: 80px; }
.cat-title { font-size: 1.8rem; text-transform: uppercase; margin-bottom: 20px; color: #27251f; border-left: 6px solid #ffbc0d; padding-left: 15px; }
.fast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.fast-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.fast-img { width: 100%; height: 200px; object-fit: cover; }
.fast-info { padding: 15px; }
.fast-head { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 10px; }
.price { color: #d35400; }
.desc { font-size: 0.9rem; color: #666; }

/* --- Delivery --- */
.delivery-fast { padding: 60px 0; background: #27251f; color: white; text-align: center; }
.delivery-grid-fast { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }
.delivery-card { background: #fff; color: #333; padding: 20px; border-radius: 12px; text-decoration: none; display: flex; flex-direction: column; align-items: center; width: 200px; }
.delivery-card img { height: 40px; margin-bottom: 10px; }
.delivery-card span { font-size: 0.8rem; font-weight: 700; }







/* --- Global Header Fast Food --- */
.fast-header {
    background: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

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

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #27251f;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* --- Lang Switcher --- */
.lang-switcher { font-weight: 700; font-size: 0.9rem; }
.lang-switcher a { text-decoration: none; color: #ccc; transition: 0.3s; }
.lang-switcher a.active { color: #ffbc0d; }
.lang-switcher .sep { margin: 0 5px; color: #eee; }

/* --- Burger Fast-Food --- */
.burger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2100; /* Pour rester au dessus de l'overlay */
}

.burger .bar { /* On cible .bar au lieu de span */
    display: block;
    width: 100%;
    height: 4px;
    background: #27251f;
    border-radius: 2px;
    transition: 0.3s;
}

/* --- Menu Overlay --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: #ffbc0d; /* Jaune Fast-Food */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 3000;
}

.nav-overlay.active { transform: translateX(0); }

.nav-links-full {
    list-style: none;
    text-align: center;
    padding: 0;
}

.nav-links-full li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #27251f;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 15px 0;
    transition: 0.3s;
}

.nav-links-full li a:hover { transform: scale(1.1); }

.nav-footer-fast {
    margin-top: 50px;
    text-align: center;
    color: #27251f;
}

.horaires-title { font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }

.social-fast { margin-top: 20px; display: flex; gap: 20px; justify-content: center; }
.social-fast a { color: #27251f; font-weight: 700; text-decoration: underline; }

/* --- Mobile --- */
@media (max-width: 768px) {
    .site-title { font-size: 1.1rem; }
    .nav-links-full li a { font-size: 1.8rem; }
}
/* --- Hero Format Bandeau (Fast-Food) --- */
.hero-fast-simple {
    min-height: 35vh; /* Hauteur réduite pour voir la suite plus vite */
   max-height: 35vh; /* Hauteur réduite pour voir la suite plus vite */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.overlay-fast {
    background: rgba(0,0,0,0.5); /* Un peu plus léger pour voir l'image */
    width: 100%;
    height: 100%;
    padding: 40px 0; /* Espacement interne pour laisser respirer le texte */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay-fast h1 {
    font-size: 2.8rem; /* Un peu plus petit pour le format bandeau */
    margin-bottom: 5px;
}

.overlay-fast p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Bouton d'appel plus compact pour le bandeau */
.btn-call-fast {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1rem;
}
/* Container de droite */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Espace entre drapeaux, réseaux et burger */
}

/* Style des drapeaux */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-switcher img.flag-icon {
    width: 24px; /* Ajuste la taille selon tes images */
    height: auto;
    border-radius: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-switcher a.active img.flag-icon {
    opacity: 1;
    border: 1px solid var(--accent); /* Optionnel : un petit bord pour la langue active */
}

/* Style des réseaux sociaux dans le header */
.header-socials {
    display: flex;
    gap: 15px;
}

.header-socials a {
    color: inherit; /* Prend la couleur du texte du header */
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.header-socials a:hover {
    transform: translateY(-2px);
    color: var(--accent); /* Change la couleur au survol si tu as une variable accent */
}

/* Ajustement Burger pour être bien aligné */
.burger {
    cursor: pointer;
    z-index: 3100;
    margin-left: 10px;
}

/* Responsiveness : cacher les réseaux sur mobile très petit si besoin */
@media (max-width: 480px) {
    .header-socials {
        display: none; /* Cache les icônes si l'écran est trop étroit */
    }
}
/* Alignement global de la partie droite */
.nav-right {
    display: flex;
    align-items: center;
}

/* Gestion du point séparateur entre Insta et FB */
.social-discovery span {
    display: inline-block;
    margin: 0 5px;
}

/* On cache les réseaux sociaux sur mobile pour ne pas surcharger le header */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .nav-right {
        gap: 15px; /* On réduit l'espace sur mobile */
    }
}

/* Optionnel : Si ton thème fast utilise une variable de couleur pour le texte */
.social-discovery a {
    transition: opacity 0.3s;
}

.social-discovery a:hover {
    opacity: 0.7;
}
/* --- Logo & Titre Adaptatifs --- */

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-wrap: nowrap; /* Force la ligne unique */
    max-width: 70%; /* Laisse de la place pour les drapeaux/burger */
}

.header-logo-img {
    height: 50px; /* Taille PC */
    width: auto;
    flex-shrink: 0; /* Empêche le logo de s'écraser */
    transition: height 0.3s ease;
}

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(0.9rem, 4vw, 1.4rem); /* Taille dynamique : min 0.9rem, idéal 4% largeur écran, max 1.4rem */
    color: #27251f;
    text-transform: uppercase;
    white-space: nowrap; /* Empêche le retour à la ligne du texte */
    overflow: hidden;
    text-overflow: ellipsis; /* Ajoute "..." si vraiment trop long (sécurité) */
}

/* --- Media Queries Mobiles Spécifiques --- */
@media (max-width: 480px) {
    .header-logo-img {
        height: 35px; /* On réduit la taille du logo sur mobile */
    }

    .nav-container {
        padding: 0 10px; /* On gagne un peu de place sur les bords */
    }

    .nav-right {
        gap: 10px; /* On resserre les éléments à droite */
    }

    /* On réduit un peu la taille des drapeaux pour laisser de la place au titre */
    .lang-switcher style {
        font-size: 1.1rem !important; 
    }
}

/* --- FOOTER GLOBAL FAST-FOOD --- */
footer {
    background-color: #1a1a1a; /* Noir profond */
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h4 {
    color: #ffbc0d; /* Jaune Fast-Food */
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p, .footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #ffbc0d;
}

/* Lien Google Maps spécifique */
.map-link {
    display: inline-block;
    margin-top: 10px;
    background: #333;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff !important;
    font-weight: 700;
}

/* Réseaux Sociaux */
.share-links {
    display: flex;
    gap: 15px;
}

.share-links a {
    background: #ffbc0d;
    color: #1a1a1a !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.8rem;
}

/* Bas de page */
.footer-bottom {
    margin-top: 50px;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #ffbc0d;
    text-decoration: underline;
}

/* --- MODAL EVENT STYLE FAST-FOOD --- */
.modal-content {
    border-radius: 0; /* Look plus "indus" */
    border: 4px solid #ffbc0d;
}

.modal-text {
    background-color: #ffffff;
}

.modal-text h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: #27251f !important;
    font-size: 2rem !important;
}

.modal-text p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    color: #555 !important;
}

/* Bouton Modal */
.btn-gold {
    background: #ffbc0d !important; /* Jaune au lieu du doré */
    color: #27251f !important;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 50px !important;
    padding: 15px 30px !important;
    transition: 0.3s;
    border: none;
}

.btn-gold:hover {
    background: #27251f !important;
    color: #ffbc0d !important;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .share-links {
        justify-content: center;
    }
}


/* --- MISE EN PAGE RÉSERVATION FAST --- */
.reservation-page {
    padding: 80px 20px;
    background: var(--fast-bg);
    min-height: 85vh;
}

.res-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Info à gauche, Form à droite */
    gap: 50px;
    align-items: center;
}

/* Colonne de gauche : Info */
.res-info h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--fast-dark);
    margin: 10px 0;
    line-height: 1;
}

.category-subtitle {
    color: var(--fast-secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.res-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.res-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Colonne de droite : Formulaire */
.res-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: var(--fast-dark);
}

.input-group input, 
.input-group select {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fafafa;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: var(--fast-primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 188, 13, 0.1);
}

/* Bouton Confirmer */
.btn-res {
    width: 100%;
    background: var(--fast-primary);
    color: var(--fast-dark);
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-res:hover {
    background: var(--fast-dark);
    color: white;
    transform: translateY(-3px);
}

.btn-res:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .res-container {
        grid-template-columns: 1fr;
    }
    .res-info {
        text-align: center;
    }
    .res-info h1 {
        font-size: 2.5rem;
    }
    .res-image {
        display: none; /* On cache l'image sur mobile pour gagner de la place */
    }
}

@media (max-width: 480px) {
    .input-row {
        grid-template-columns: 1fr;
    }
}
/* --- HEADER MENUS --- */
.overlay-fast-menu {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}

.overlay-fast-menu h2 {
    font-size: 3.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 5px;
}

/* --- GRID MENUS --- */
.menus-section-fast {
    padding: 60px 0;
    background: #f9f9f9;
}

.menus-grid-fast {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
}

.menu-card-fast {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-card-fast:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Image circulaire en badge */
.menu-badge-img {
    height: 180px;
    background: #27251f;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.menu-badge-img img {
    width: 150px; height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffbc0d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Contenu */
.menu-content-fast {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-header-fast {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-header-fast h3 {
    font-size: 1.6rem; font-weight: 800; text-transform: uppercase; margin: 0;
    color: #27251f;
}

.menu-price-tag {
    background: #ffbc0d;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.2rem;
}

.menu-tagline {
    font-style: italic; color: #666; margin-bottom: 20px; font-size: 0.95rem;
}

/* Étapes du menu style "Liste d'ingrédients" */
.menu-steps-fast {
    border-top: 1px dashed #ddd;
    padding-top: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.fast-step {
    margin-bottom: 10px;
    font-size: 1rem;
}

.step-label {
    font-weight: 800;
    text-transform: uppercase;
    color: #ffbc0d;
    font-size: 0.8rem;
    display: block;
}

.step-desc {
    color: #333;
}

/* Bouton d'action */
.btn-order-menu {
    display: block;
    text-align: center;
    background: #27251f;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-order-menu:hover {
    background: #ffbc0d;
    color: #27251f;
}

/* Mobile */
@media (max-width: 480px) {
    .overlay-fast-menu h2 { font-size: 2.2rem; }
    .menus-grid-fast { grid-template-columns: 1fr; }
}


/* --- PAGE CARTE FAST-FOOD --- */

/* Header & Titre */
.carte-page-bg {
    background-color: #f8f9fa
    padding: 60px 0;
}

.carte-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.carte-section {
    margin-bottom: 50px;
}

.carte-section h3 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #27251f;
    margin-bottom: 30px;
    border-left: 6px solid #ffbc0d;
    padding-left: 15px;
    line-height: 1;
}
.carte-section h3::before {
    content: "";
    display: block;
    width: 8px;
    height: 40px;
    background: #ffbc0d;
    border-radius: 4px;
}
.category-subtitle {
    display: block;
    color: #ffbc0d;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Grille d'items */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

/* Carte Produit Individuelle */
.carte-item {
    background: #ffffff !important; /* On force le blanc */
    padding: 20px !important;
    border-radius: 15px !important;
    border: none !important; /* On enlève la bordure fine */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important; /* Ombre pour le relief */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.carte-item:hover {
    transform: translateY(-5px); /* Petit effet de lévitation au survol */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
}

/* Image du plat */
.item-img img {
    width: 110px !important;
    height: 110px !important;
    border-radius: 12px !important;
    border: 2px solid #f1f1f1 !important; /* Bordure discrète autour de l'image */
    object-fit: cover;
}

/* Détails (Nom, Prix, Desc) */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #27251f;
    text-transform: capitalize;
}

/* On cache les petits points de suite (trop classique) */
.item-dots {
    display: none !important;
}

.item-price {
    background: #ffbc0d; /* Prix sur fond jaune pour le punch */
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 1rem;
}

.item-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive pour mobile */
@media (max-width: 600px) {
    .items-grid {
        grid-template-columns: 1fr;
    }
    .carte-item {
        flex-direction: column; /* Image au dessus du texte sur petit mobile */
        text-align: center;
    }
    .item-header {
        flex-direction: column;
        gap: 10px;
    }
}
/* --- PAGE CONCEPT/ENGAGEMENT --- */
.philo-site-wrapper {
    background: #27251f; /* Fond sombre pour contraster avec le bloc blanc */
    padding: 80px 20px;
}

.philo-white-block {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Citation style "Punchy" */
.quote-box {
    text-align: center;
    margin-bottom: 40px;
}

.quote-icon {
    font-size: 4rem;
    color: #ffbc0d;
    line-height: 1;
    margin-bottom: 10px;
}

.lead-text {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #27251f;
    line-height: 1.2;
}

/* Image et contenu */
.philo-team-img-box {
    margin: 30px 0;
    overflow: hidden;
    border-radius: 20px;
}

.philo-img-fluid {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s;
}

.philo-img-fluid:hover {
    transform: scale(1.05);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* Réseaux sociaux style bouton */
.social-discovery-box {
    margin-top: 40px;
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.follow-text {
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.social-links2 a {
    color: #27251f;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 10px;
    padding: 8px 15px;
    border: 2px solid #27251f;
    border-radius: 8px;
    transition: 0.3s;
}

.social-links2 a:hover {
    background: #ffbc0d;
    border-color: #ffbc0d;
}

/* Mobile */
@media (max-width: 600px) {
    .philo-white-block { padding: 30px; }
    .lead-text { font-size: 1.4rem; }
}


/* --- Ajustements Spécifiques Mobile --- */
@media (max-width: 768px) {
    .hero-fast-simple {
        min-height: 45vh; /* On donne un peu plus d'espace par défaut sur mobile */
    }

    .overlay-fast h1 {
        font-size: 1.8rem; /* On réduit la taille du titre qui prend trop de place */
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .overlay-fast p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .btn-call-fast {
        padding: 12px 20px;
        font-size: 0.9rem;
        display: inline-block; /* Évite que le bouton s'étire sur toute la largeur */
    }
}
/* --- Correction Totale Débordement --- */

.philo-white-block {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    /* CRUCIAL : empêche le contenu de pousser les murs */
    box-sizing: border-box; 
    overflow: hidden; 
}

.social-discovery-box {
    margin-top: 40px;
    background: #f8f9fa;
    padding: 20px 10px; /* On réduit le padding latéral */
    border-radius: 15px;
    box-sizing: border-box;
    width: 100%; /* S'adapte au parent */
}

.social-links2 {
    display: flex;
    flex-wrap: wrap; /* Permet de passer à la ligne AVANT de toucher le bord */
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.social-links2 a {
    box-sizing: border-box;
    max-width: 100%; /* Interdit au bouton d'être plus large que son parent */
    padding: 10px 15px;
    font-size: 0.9rem;
    text-align: center;
    word-break: break-word; /* Sécurité si le texte est trop long */
}

/* --- Media Query Mobile (La zone critique) --- */
@media (max-width: 600px) {
    .philo-white-block {
        padding: 30px 15px; /* On réduit fortement ici pour libérer de l'espace */
    }

    .social-links2 {
        flex-direction: column; /* On empile tout pour gagner de la largeur */
    }

    .social-links2 a {
        width: 100%; /* Le bouton prend toute la place dispo proprement */
        max-width: 250px;
    }

    .social-links2 .dot {
        display: none;
    }
}