/* --- 1. CONFIGURATION GLOBALE & RESET --- */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #f1ece1; /* Crème RAL 9001 */
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* --- 2. NAVBAR FIXE (SANS TROU) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    background-color: #967969; /* Marron officiel */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
    box-sizing: border-box;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.brand-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-container img {
    height: 120px; /* Taille optimisée pour votre logo blanc */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #f1ece1;
    margin-left: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* --- 3. ACCUEIL : HERO FULLSCREEN (STYLE KALIA) --- */
.hero-fullscreen {
    height: 100vh; /* Prend 100% de la hauteur de l'écran */
    width: 100%;
    background-image: url('../images/cafe-interior.jpg'); /* Image d'intérieur */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parallax élégant */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.45); /* Assombrit l'image pour la lisibilité */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 6rem; /* Titre imposant */
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 8px;
    margin: 0;
    text-transform: uppercase;
}

.hero-text p {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 20px 0 40px;
    font-weight: 400;
}

.btn-yellow {
    display: inline-block;
    background-color: #f4d06f; /* Jaune bouton */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-yellow:hover {
    transform: scale(1.05);
    background-color: #e5c05d;
}

/* --- 4. SECTIONS DE PRÉSENTATION (STYLE GAIOS) --- */
.intro-section {
    padding: 100px 20%;
    text-align: center;
    background-color: #f1ece1;
}

.intro-section h2 {
    color: #967969;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.split-section {
    display: flex;
    align-items: center;
}

.split-wrapper {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-image, .split-text {
    flex: 1;
    padding: 80px;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.dark-bg { background-color: #967969; color: #f1ece1; }
.light-bg { background-color: #f1ece1; color: #967969; }

.btn-outline-white {
    display: inline-block;
    border: 2px solid #f1ece1;
    color: #f1ece1;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.btn-outline-brown {
    display: inline-block;
    border: 2px solid #967969;
    color: #967969;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

/* --- 5. GALERIE VISUELLE --- */
.gallery-full {
    background-color: #967969;
    padding: 0;
}

.gallery-container {
    display: flex;
    height: 550px;
}

.gallery-img {
    flex: 1;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 6. PAGE CONTACT (STYLE LOBUT/DÉTAILLÉ) --- */
.lobut-style-contact {
    padding-top: 150px; /* Espace pour la navbar fixe */
}

/* --- 6. PAGE CONTACT (MODIFIÉ) --- */
.contact-header {
    text-align: center;      /* Centre le titre ET le texte */
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    color: #967969;
    text-transform: uppercase;
    margin-bottom: 15px;     /* Espace entre le titre et la phrase */
}

.contact-header p {
    color: #967969;          /* Garde la couleur marron pour la phrase */
    font-size: 1.1rem;
    max-width: 800px;        /* Empêche la phrase d'être trop large sur PC */
    margin: 0 auto;          /* Centre le bloc de texte lui-même */
}

.contact-quick-info {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto 60px;
    gap: 20px;
}

.info-item {
    text-align: center;
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-item .icon { font-size: 2.5rem; margin-bottom: 15px; }
.info-item h3 { color: #967969; margin-bottom: 10px; text-transform: uppercase; }

.contact-form-section {
    max-width: 800px;
    margin: 0 auto 80px;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-weight: 600; margin-bottom: 8px; color: #967969; }
.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    background-color: #967969;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.reviews-container {
    margin-bottom: 30px;
    width: 100%;
}

/* --- 7. FOOTER --- */
footer {
    text-align: center;
    padding: 50px 20px;
    background-color: #967969;
    color: #f1ece1;
}

/* --- 8. RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 3.5rem; }
    .split-wrapper { flex-direction: column; }
    .split-wrapper.reverse { flex-direction: column; }
    .contact-quick-info, .form-row { flex-direction: column; }
    .nav-links { display: none; } /* On cache les liens pour le mobile simple */
}
/* --- CARROUSEL : STRUCTURE --- */
.carousel-section {
    padding: 80px 0;
    background-color: #f1ece1; /* Crème RAL 9001 */
    overflow: hidden;
}

.carousel-title {
    text-align: center;
    color: #967969; /* Marron */
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-window {
    width: 90%;
    overflow: hidden; /* Cache les images qui débordent */
}

.carousel-track {
    display: flex; /* Aligne les images sur une seule ligne */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px; /* Espace entre les photos */
}

.carousel-item {
    min-width: calc(33.333% - 14px); /* Affiche 3 images à la fois */
    height: 350px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- BOUTONS --- */
.carousel-control {
    background: #967969;
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}

.carousel-control:hover { background: #f4d06f; }

@media (max-width: 768px) {
    .carousel-item { min-width: 100%; } /* 1 image sur mobile */
}
/* --- SECTION ACCÈS & RÉSEAUX --- */
.access-section {
    background-color: #f1ece1; /* Votre couleur Crème */
    padding: 80px 0;
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

.map-box {
    flex: 1;
    min-width: 300px;
    border: 5px solid #967969; /* Bordure Marron */
    border-radius: 10px;
    overflow: hidden;
}

.info-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #967969; /* Texte Marron */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.address {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.address i {
    margin-right: 10px;
}

/* Style des Réseaux Sociaux */
.social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.social-links .icons a {
    color: #f1ece1; /* Icône Crème */
    background-color: #967969; /* Fond Marron */
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links .icons a:hover {
    background-color: #333; /* Changement au survol */
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .access-container {
        flex-direction: column;
    }
}
/* --- AVIS GOOGLE --- */
.reviews-section {
    padding: 80px 0;
    background-color: #f1ece1; /* Ton RAL 9001 */
}

.reviews-title {
    color: #967969; /* Ton Marron */
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
}

/* --- MAP PLEINE LARGEUR (TIRÉE) --- */
.map-fullwidth {
    width: 100%;
    line-height: 0;
    border-top: 5px solid #967969; /* Ligne marron décorative */
    border-bottom: 5px solid #967969;
}

.map-fullwidth iframe {
    width: 100%;
    filter: grayscale(0.2); /* Optionnel : pour un look plus doux */
}

.info-container {
    background-color: #f1ece1;
    padding: 60px 20px;
    text-align: center;
    color: #967969;
}

.social-links .icons a {
    background-color: #967969;
    color: #f1ece1;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: 0.3s;
}
/* --- CARTE PLEINE LARGEUR --- */
.map-fullwidth {
    width: 100%;
    line-height: 0; /* Évite un espace blanc sous la carte */
}

.map-fullwidth iframe {
    width: 100%;
    border-bottom: 5px solid #967969; /* Ligne marron de finition */
}

/* --- SECTION INFOS & CTA --- */
.bottom-info-section {
    background-color: #f1ece1; /* Crème RAL 9001 */
    padding: 60px 0 80px 0;
}

.info-content {
    text-align: center;
    margin-bottom: 50px;
    color: #967969;
}

.contact-cta-box {
    background-color: #967969; /* Marron Café Crème */
    color: #f1ece1;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto; /* Centre le bloc marron */
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f1ece1 !important;
}

.btn-contact-white {
    display: inline-block;
    background-color: #f1ece1;
    color: #967969;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-contact-white:hover {
    background-color: #f4d06f; /* Jaune Café Crème */
}
/* --- CARTE PLEINE LARGEUR --- */
.map-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.map-fullwidth iframe {
    width: 100%;
    height: 450px;
    border-top: 5px solid #967969; /* Marron */
    border-bottom: 5px solid #967969;
}

/* --- SECTION INFOS & CONTACT --- */
.bottom-info-section {
    background-color: #f1ece1; /* Crème RAL 9001 */
    padding: 60px 0 80px 0;
}

.info-content {
    text-align: center;
    margin-bottom: 50px;
    color: #967969; /* Marron */
}

.contact-cta-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.contact-cta-box {
    background-color: #967969; /* Fond Marron */
    color: #f1ece1; /* Texte Crème */
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    width: 100%;
    max-width: 1100px;
}

.btn-contact-white {
    display: inline-block;
    background-color: #f1ece1; /* Bouton Crème */
    color: #967969; /* Texte Marron */
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
}
/* --- VARIABLES --- */
:root {
    --marron: #967969; /* Marron officiel */
    --creme: #f1ece1;  /* Crème RAL 9001 */
    --jaune: #f4d06f;
    --blanc: #ffffff;
}

/* --- RESET & GLOBAL --- */
html, body {
    margin: 0; padding: 0; width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--creme);
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* --- NAVBAR --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 60px; background-color: var(--marron);
    position: fixed; top: 0; width: 100%; z-index: 2000; box-sizing: border-box;
}
.brand-container img { height: 120px; width: auto; }
.nav-links a {
    text-decoration: none; color: var(--creme); margin-left: 25px;
    font-weight: 700; text-transform: uppercase; font-size: 0.8rem;
}

/* --- HERO --- */
.hero-fullscreen {
    height: 100vh; background: url('../images/cafe-interior.jpg') center/cover no-repeat fixed;
    display: flex; justify-content: center; align-items: center;
}
.hero-overlay { background-color: rgba(0, 0, 0, 0.45); width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.hero-text h1 { font-size: 6rem; color: var(--blanc); letter-spacing: 8px; text-transform: uppercase; margin: 0; }

.btn-yellow {
    background-color: var(--jaune); color: var(--blanc);
    padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 700;
}

/* --- MAP ÉTIRÉE --- */
.map-fullwidth { width: 100%; line-height: 0; }
.map-fullwidth iframe { width: 100%; border-top: 5px solid var(--marron); border-bottom: 5px solid var(--marron); }

/* --- SECTIONS TEXTE --- */
.intro-section, .find-us-section { padding: 80px 0; text-align: center; color: var(--marron); }
.section-title { font-size: 2.5rem; font-weight: 700; text-transform: uppercase; }

/* --- NOUVEAU BLOC FUSIONNÉ ÉTIRÉ --- */
.merged-cta-section {
    background-color: var(--marron);
    padding: 80px 0;
    width: 100%; /* Étiré sur toute la largeur */
    color: var(--creme);
}

.merged-cta-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.cta-half { flex: 1; }
.cta-half h2 { font-size: 2.2rem; margin-bottom: 15px; font-weight: 700; }
.cta-half p { margin-bottom: 30px; }

.cta-divider {
    width: 2px;
    height: 150px;
    background-color: rgba(241, 236, 225, 0.3); /* Ligne de séparation légère */
}

.btn-contact-white {
    background-color: var(--creme);
    color: var(--marron);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}
.btn-contact-white:hover { background-color: var(--jaune); color: #333; transform: scale(1.05); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .merged-cta-container { flex-direction: column; }
    .cta-divider { display: none; }
    .hero-text h1 { font-size: 3rem; }
}

/* --- AUTRES STYLES (CAROUSEL, ETC.) --- */
.carousel-section { padding: 80px 0; }
.carousel-track { display: flex; gap: 20px; transition: 0.5s; }
.carousel-item { min-width: calc(33.333% - 14px); height: 350px; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

/* --- VARIABLES (Vos couleurs exactes) --- */
:root {
    --marron: #967969;
    --creme: #f1ece1;
    --jaune: #f4d06f;
    --blanc: #ffffff;
    --transition: all 0.4s ease-in-out;
}

/* --- SECTION CONTACT (Fond Crème & Centré) --- */
.merged-cta-section {
    background-color: var(--creme); /* Fond Crème #f1ece1 */
    padding: 120px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--marron); /* Texte en Marron sur fond Crème */
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.cta-content p {
    color: var(--marron);
    font-size: 0.95rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Bouton spécifique pour cette section (Marron pour trancher) */
.merged-cta-section .btn-yellow {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--marron);
    color: var(--creme);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: var(--transition);
}

.merged-cta-section .btn-yellow:hover {
    background-color: var(--jaune);
    color: var(--marron);
    transform: translateY(-3px);
}

/* --- FOOTER (Reste en Marron) --- */
footer {
    background-color: var(--marron); /* Fond Marron #967969 */
    color: var(--creme);
    padding: 100px 8% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--jaune);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-col a {
    color: var(--creme);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--jaune);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(241, 236, 225, 0.1);
    padding-top: 40px;
}

.footer-bottom p {
    font-size: 0.65rem;
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.small-terms {
    color: var(--creme) !important;
    text-decoration: underline;
    margin-left: 15px;
}
/* --- PAGE RÉSERVATION --- */
.reserva-page {
    padding-top: 100px;
    background-color: var(--creme);
}

.reserva-hero {
    text-align: center;
    padding: 80px 0 40px;
}

.reserva-hero h1 {
    font-size: 3rem;
    letter-spacing: 10px;
    color: var(--marron);
    text-transform: uppercase;
}

.reserva-hero p {
    font-size: 1rem;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-top: 10px;
}

/* CARTE POUR LE WIDGET POPINA */
.booking-section {
    padding: 40px 0 100px;
}

.booking-card {
    background: var(--blanc);
    padding: 60px;
    border-radius: 2px; /* Style Gaios : très peu d'arrondi */
    box-shadow: 0 15px 50px rgba(150, 121, 105, 0.05);
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.placeholder-text {
    color: var(--marron);
    font-style: italic;
    opacity: 0.5;
    margin-bottom: 20px;
}

/* SECTION INFO (3 Colonnes aérées) */
.reserva-info {
    padding: 80px 0;
    border-top: 1px solid rgba(150, 121, 105, 0.1);
    background: var(--creme);
}

.reserva-info h3 {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--jaune);
    margin-bottom: 20px;
}

.reserva-info p {
    font-size: 0.85rem;
    color: var(--marron);
    opacity: 0.9;
}
/* Styles Généraux */
body { font-family: 'Montserrat', sans-serif; background-color: #fcf9f5; color: #333; margin: 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header Menu */
.menu-page { padding-top: 120px; }
.menu-header { text-align: center; margin-bottom: 50px; }
.menu-header h1 { color: #967969; font-size: 3rem; text-transform: uppercase; margin-bottom: 10px; }

/* Sections */
.menu-section { background: white; padding: 40px; border-radius: 20px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(150, 121, 105, 0.1); }
.category-title { color: #967969; border-left: 5px solid #f4d06f; padding-left: 15px; margin-bottom: 25px; text-transform: uppercase; }

/* Grille des plats */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 50px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid #eee; padding: 12px 0; }
.menu-item.full { grid-column: span 2; }

.item-name { font-weight: bold; font-size: 1.1rem; }
.item-desc { font-size: 0.85rem; color: #777; margin-top: 5px; }
.price { font-weight: bold; color: #967969; white-space: nowrap; margin-left: 10px; }

/* Formules */
.formulas { background-color: #967969; color: white; }
.formulas .category-title { color: white; border-color: #f4d06f; }
.formula-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.formula-box { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 10px; text-align: center; border: 1px solid rgba(255,255,255,0.2); }
.formula-box h3 { margin-top: 0; color: #f4d06f; }

/* Adaptabilité Mobile */
@media (max-width: 768px) {
    .menu-grid, .formula-grid { grid-template-columns: 1fr; }
    .menu-item.full { grid-column: span 1; }
    .menu-header h1 { font-size: 2rem; }
}
/* --- ANIMATIONS DE RÉVÉLATION --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Style de la Navbar au défilement */
nav.scrolled {
    padding: 15px 8%;

    box-shadow: 0 5px 20px rgba(150, 121, 105, 0.1);
}

/* Petit effet fluide sur les images au survol */
.split-image img, .carousel-item img {
    transition: transform 0.6s ease;
}

.split-image:hover img, .carousel-item:hover img {
    transform: scale(1.03);
}


/* --- VARIABLES --- */
:root {
    --marron: #967969;
    --creme: #f1ece1;
    --jaune: #f4d06f;
    --blanc: #ffffff;
}

/* --- ANIMATIONS REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- SECTION CONTACT (FOND CRÈME) --- */
.merged-cta-section {
    background-color: var(--creme) !important;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--marron);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content p {
    color: var(--marron);
    margin-bottom: 30px;
}

/* LE BOUTON QUI NE MARCHART PLUS */
.btn-yellow-dark {
    display: inline-block;
    background-color: var(--marron); /* Fond marron */
    color: var(--creme); /* Texte crème */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: none;
}

.btn-yellow-dark:hover {
    background-color: var(--jaune);
    color: var(--marron);
    transform: scale(1.05);
}
/* --- EFFET PARALLAXE SUR LE HERO --- */
.hero-fullscreen {
    background-image: url('../images/cafe-interior.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* L'astuce est ici : l'image reste fixe pendant que le contenu défile */
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- EFFET SUR LA SECTION À PROPOS (Split Section) --- */
/* Pour que l'image de la section split ait aussi un effet de profondeur */
.split-image {
    overflow: hidden; /* Pour que l'image ne dépasse pas */
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Effet au survol : l'image zoom doucement */
.split-section:hover .split-image img {
    transform: scale(1.1);
}

/* --- OPTIMISATION MOBILE --- */
/* On désactive le background-attachment: fixed sur mobile pour éviter les bugs d'affichage */
@media (max-width: 1024px) {
    .hero-fullscreen {
        background-attachment: scroll;
    }
}

/* --- ADAPTATION TÉLÉPHONE (MOBILE) --- */
@media (max-width: 768px) {
    /* Menu Burger */
    .menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 2001;
    }

    .nav-links {
        position: fixed;
        left: -100%; /* Cache le menu à gauche */
        top: 0;
        flex-direction: column;
        background-color: #967969; /* Marron */
        width: 100%;
        height: 100vh;
        justify-content: center;
        text-align: center;
        transition: 0.4s ease;
        z-index: 2000;
    }

    /* Quand on clique sur le burger, le menu arrive */
    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 20px 0;
        font-size: 1.5rem;
    }

    /* Sections Split (Histoire) : on met l'image au dessus du texte */
    .split-wrapper {
        flex-direction: column !important;
    }

    .split-image, .split-text {
        width: 100% !important;
        padding: 30px 20px !important;
    }

    .split-image img {
        height: 300px !important;
    }

    /* Hero Text : on réduit la taille pour que ça ne déborde pas */
    .hero-text h1 {
        font-size: 2.8rem !important;
        letter-spacing: 5px !important;
    }

    /* Footer : une seule colonne */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
}
/* --- NAVIGATION & BOUTON UNIQUE --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    z-index: 3000;
    transition: 0.3s;
}

.explorer-btn {
    display: none; /* Caché sur PC */
    background: #967969;
    color: #f1ece1;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    z-index: 4000;
    align-items: center;
    gap: 10px;
}

.icon-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
    margin: 3px 0;
}

/* Menu mobile plein écran */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(150, 121, 105, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    z-index: 3500;
}

.nav-overlay.active { right: 0; }

.menu-items { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.menu-items a { color: #f1ece1; font-size: 2rem; text-decoration: none; font-family: 'Playfair Display', serif; }

/* --- RESPONSIVE MOBILE (TOUT TÉLÉPHONE) --- */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .explorer-btn { display: flex; }

    /* Hero */
    .hero-text h1 { font-size: 2.8rem; letter-spacing: 3px; }

    /* Sections Split (Image + Texte) */
    .split-wrapper {
        flex-direction: column !important; /* Image au-dessus du texte */
    }

    .split-image, .split-text {
        width: 100% !important;
        padding: 40px 20px !important;
        text-align: center;
    }

    .split-image img { height: 300px; object-fit: cover; }

    /* Carousel */
    .carousel-item { min-width: 100%; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
        text-align: center;
        gap: 30px;
    }
    .footer-socials { justify-content: center; }
}

/* --- TRÈS PETITS TÉLÉPHONES (iPhone SE) --- */
@media (max-width: 380px) {
    .hero-text h1 { font-size: 2.2rem; }
    .explorer-btn { padding: 8px 15px; font-size: 0.8rem; }
}


/* ============================================================
   MOBILE OPTIMIZATION (Toutes les pages)
   ============================================================ */

@media (max-width: 768px) {
    /* --- NAVIGATION --- */
    nav {
        padding: 10px 20px;
    }
    .brand-container img {
        height: 80px; /* Logo plus petit sur mobile */
    }
    .desktop-only {
        display: none !important;
    }
    .explorer-btn {
        display: flex !important; /* Force l'affichage du bouton explorer */
    }

    /* --- TITRES GÉNÉRAUX --- */
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 1.8rem !important; }

    /* --- PAGE ACCUEIL (Sections Split) --- */
    .split-wrapper, .split-wrapper.reverse {
        flex-direction: column !important;
    }
    .split-image, .split-text {
        width: 100% !important;
        padding: 30px 20px !important;
        text-align: center;
    }
    .split-image img {
        height: 250px !important;
    }

    /* --- PAGE MENU (Carte) --- */
    .menu-page {
        padding-top: 100px;
    }
    .formula-grid {
        grid-template-columns: 1fr !important; /* Formules l'une sous l'autre */
        gap: 15px;
    }
    .menu-grid {
        grid-template-columns: 1fr !important; /* Plats l'un sous l'autre */
        gap: 10px;
    }
    .menu-item.full {
        grid-column: span 1 !important;
    }
    .menu-section {
        padding: 20px !important;
        margin-bottom: 20px;
    }

    /* --- PAGE CONTACT --- */
    .contact-quick-info {
        flex-direction: column !important;
        gap: 15px;
    }
    .contact-form-section {
        padding: 25px !important;
    }
    .form-row {
        flex-direction: column !important;
        gap: 0;
    }

    /* --- PAGE RÉSERVATION --- */
    .booking-card {
        padding: 20px !important;
        min-height: 400px;
    }
    .reserva-hero h1 {
        font-size: 2rem !important;
        letter-spacing: 5px;
    }

    /* --- FOOTER --- */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* Ajustements pour très petits écrans (iPhone SE, etc.) */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 2rem !important;
    }
    .btn-yellow, .btn-yellow-dark {
        padding: 12px 25px !important;
        font-size: 0.8rem;
    }
}

ul {
    list-style: none;
    padding: 0;
}

/* Style de l'adresse dans l'en-tête du menu */
.menu-header p {
    color: var(--creme) !important; /* Force la couleur crème #f1ece1 */
    background-color: var(--marron); /* Fond marron pour la visibilité */
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Appliquer le marron à toutes les sections SAUF les formules */
.menu-section:not(.formulas) .category-title,
.menu-section:not(.formulas) .category-subtitle,
.menu-section:not(.formulas) .item-name,
.menu-section:not(.formulas) .item-desc,
.menu-section:not(.formulas) .price,
.menu-section:not(.formulas) .menu-item span {
    color: #967969 !important;
}

/* Optionnel : Assurer que les bordures sous les plats soient aussi discrètes */
.menu-section:not(.formulas) .menu-item {
    border-bottom: 1px solid rgba(150, 121, 105, 0.2) !important;
}
/* --- STYLE DES PHOTOS DU CARROUSEL --- */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* Ajout de la bordure marron (entourne) */
    border: 5px solid var(--marron);
    /* Assure que la bordure est comprise dans la taille de l'image */
    box-sizing: border-box;
    /* Conserve l'ombre existante pour le relief */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Définition de l'animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* Part de plus bas */
    }
    to {
        opacity: 1;
        transform: translateY(0);    /* Arrive à sa position normale */
    }
}

/* Application de l'animation aux titres Hero et Menu */
.hero-text h1,
.menu-header h1 {
    animation: fadeInUp 1.5s ease-out forwards;

    /* On garde l'écriture fine (400) que vous avez demandée */
    font-weight: 400 !important;

    /* Optionnel : un espacement des lettres pour plus de légèreté */
    letter-spacing: 5px;
}

/* Animation pour le sous-titre (apparaît un peu après) */
.hero-text p,
.menu-header p {
    animation: fadeInUp 1.5s ease-out 0.5s forwards; /* Délai de 0.5s */
    opacity: 0; /* Caché au début pour l'animation */
    font-weight: 400;
}
/* --- STYLE DU MENU DÉROULANT (DROPDOWN) --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

/* Le bouton principal du dropdown */
.lang-dropbtn {
    background: transparent;
    border: 1px solid var(--creme); /* #f1ece1 */
    color: var(--creme);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 !important; /* Écriture fine conservée */
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.lang-dropbtn:hover {
    border-color: var(--jaune); /* #f4d06f */
    color: var(--jaune);
}

/* Le menu d'options (caché par défaut) */
.lang-options {
    display: none;
    position: absolute;
    right: 0;
    top: 120%;
    background-color: var(--marron); /* #967969 */
    min-width: 120px;
    border-radius: 10px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 5000;
    overflow: hidden;
}

/* Classe pour afficher le menu via JS */
.lang-options.show {
    display: block;
    animation: fadeInUp 0.3s ease-out; /* Réutilise votre animation de montée */
}

/* Liens à l'intérieur du menu */
.lang-options a {
    color: var(--creme);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: 0.3s;
    text-align: left;
}

.lang-options a:hover {
    background-color: var(--jaune);
    color: var(--marron);
}
/* --- Styles Page Réservation --- */

.lobut-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.lobut-form label {
    display: block;
    margin-bottom: 10px;
    color: #967969; /* Marron Café */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Style des champs (Inputs, Select, Textarea) */
.lobut-form input,
.lobut-form select,
.lobut-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eaddcf; /* Crème foncée */
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #4a3f35;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-sizing: border-box;
}

/* Effet au Focus */
.lobut-form input:focus,
.lobut-form select:focus,
.lobut-form textarea:focus {
    border-color: #967969;
    box-shadow: 0 0 15px rgba(150, 121, 105, 0.1);
    outline: none;
    background-color: #fffaf5;
}

/* Conteneur pour l'icône */
.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    right: 18px;
    color: #967969;
    pointer-events: none;
    font-size: 1.1rem;
}

/* Esthétique spécifique du calendrier (Date Picker) */
input[type="date"] {
    position: relative;
}

/* On change l'apparence du bouton calendrier natif */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

/* Style du bouton d'envoi */
.btn-submit {
    background-color: #967969;
    color: #ffffff;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 6px 20px rgba(150, 121, 105, 0.2);
}

.btn-submit:hover {
    background-color: #f4d06f; /* Jaune Doré */
    color: #967969;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 208, 111, 0.4);
}

/* --- Mise en page spécifique du Menu --- */
.menu-section {
    margin-bottom: 50px;
}

.item-name,
.price,
.menu-section h3,
.menu-item span {
    font-weight: 400 !important;
}

.item-desc {
    font-weight: 400;
}

/* --- Style pour les Photos du Menu --- */
.menu-item.with-image {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.item-photo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.item-info {
    flex-grow: 1;
}

/* Responsive Mobile */
@media (max-width: 600px) {
    .menu-item.with-image {
        gap: 15px;
    }
    .item-photo {
        width: 70px;
        height: 70px;
    }
}
/* --- Design Premium de la Carte (Modernisation) --- */

/* La grille s'adapte toute seule à la taille de l'écran */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 30px !important;
}

/* Transformation de chaque plat en "Carte Premium" */
.menu-item.full {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    display: flex !important; /* Force l'alignement photo/texte */
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(150, 121, 105, 0.08); /* Ombre douce couleur café */
    transition: all 0.3s ease;
    border: 1px solid rgba(150, 121, 105, 0.05);
    height: 100%; /* Cartes de même hauteur */
}

/* Effet au survol : la carte se soulève */
.menu-item.full:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(150, 121, 105, 0.15);
}

/* Style de la photo */
.item-photo {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
}

.item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item.full:hover .item-photo img {
    transform: scale(1.1); /* Zoom de la photo au survol */
}

/* Textes à l'intérieur */
.item-name {
    font-weight: 700 !important;
    color: #4a3f35 !important;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

.item-desc {
    color: #8c7e74 !important;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Style du prix "Badge" */
.price {
    color: #967969 !important;
    font-weight: 700 !important;
    background: #fdfbf9;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid rgba(150, 121, 105, 0.1);
}

/* Style Formules (Marron Café) */
.formula-box {
    background: #967969 !important;
    border-radius: 25px !important;
    padding: 35px !important;
    transition: 0.3s;
}

.formula-box:hover {
    background: #4a3f35 !important;
}

.formula-box h3 {
    color: #f4d06f !important; /* Titre en doré */
    font-weight: 700 !important;
}

/* Responsive : Mobile */
@media (max-width: 480px) {
    .menu-item.full {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .item-photo {
        width: 120px;
        height: 120px;
    }
}

.formula-photo img {
    width: 100%;
    height: 150px; /* Ou la hauteur de votre choix */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ============================================================
   1. CONFIGURATION GLOBALE & RÉGLAGES DE SÉCURITÉ
   ============================================================ */
:root {
    --marron: #967969;
    --creme: #f1ece1;
    --jaune: #f4d06f;
    --blanc: #ffffff;
    --transition: all 0.4s ease-in-out;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--creme);
    color: #333;
    overflow-x: hidden; /* Empêche le défilement horizontal */
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Sécurité anti-débordement pour tous les textes */
h1, h2, h3, p, span {
    overflow-wrap: break-word;
    hyphens: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ============================================================
   2. NAVBAR FIXE
   ============================================================ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: var(--marron);
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 3000;
    box-sizing: border-box;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.brand-container img {
    height: 100px;
    width: auto;
    transition: 0.3s;
}

.nav-links a {
    text-decoration: none;
    color: var(--creme);
    margin-left: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bouton Explorer (Mobile) */
.explorer-btn {
    display: none;
    background: var(--creme);
    color: var(--marron);
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

/* ============================================================
   3. HERO SECTION (Correction débordement titre)
   ============================================================ */
.hero-fullscreen {
    height: 100vh;
    background: url('../images/cafe-interior.jpg') center/cover no-repeat fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-text {
    max-width: 90%;
    text-align: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 6rem); /* S'adapte à la taille de l'écran */
    color: var(--blanc);
    font-weight: 400;
    letter-spacing: clamp(2px, 2vw, 8px);
    margin: 0;
    text-transform: uppercase;
}

/* ============================================================
   4. SECTION À PROPOS (Correction centrage photo)
   ============================================================ */
.split-section { padding: 80px 0; }
.dark-bg { background-color: var(--marron); color: var(--creme); }

.split-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap; /* Permet l'empilement sur mobile */
}

.split-image, .split-text {
    flex: 1;
    min-width: 320px; /* Sécurité mobile */
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centre le contenu verticalement */
}

.split-image img {
    width: 100%;
    max-width: 500px; /* Évite que l'image soit trop immense sur PC */
    height: auto;
    aspect-ratio: 1/1; /* Garde la photo carrée et centrée */
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto; /* Centre la photo horizontalement */
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

/* ============================================================
   5. CARROUSEL & AVIS
   ============================================================ */
.carousel-section { padding: 80px 0; text-align: center; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.5s ease; }

.carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid var(--marron);
}

.reviews-section { padding: 80px 0; background-color: var(--creme); text-align: center; }

/* ============================================================
   6. OPTIMISATION MOBILE (RÉPONSE À VOS PROBLÈMES)
   ============================================================ */
@media (max-width: 768px) {
    nav { padding: 10px 20px; }
    .brand-container img { height: 70px; }
    .desktop-only { display: none !important; }
    .explorer-btn { display: flex !important; }

    /* Empilement vertical obligatoire */
    .split-wrapper {
        flex-direction: column !important;
    }

    .split-image, .split-text {
        width: 100% !important;
        padding: 30px 20px !important;
        text-align: center;
    }

    .split-image img {
        width: 90%; /* Prend presque toute la largeur sur téléphone */
        height: auto;
        max-width: 350px;
    }

    /* Le titre ne dépasse plus de l'écran */
    .hero-text h1 {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
    }

    .carousel-item {
        min-width: 100% !important;
    }
}

/* --- FIX SPECIAL IPHONE POUR L'IMAGE D'ACCUEIL --- */
@media screen and (max-width: 768px) {

    /* On cible les endroits probables où se trouve ton image */
    header, #accueil, .hero, .banner, .main-header {

        /* 1. On désactive l'effet "fixe" qui plante sur iPhone */
        background-attachment: scroll !important;

        /* 2. On recentre l'image 'cafe-interior.jpg' */
        background-position: center center !important;

        /* 3. On s'assure qu'elle couvre bien tout l'espace */
        background-size: cover !important;

        /* 4. Optionnel : Force une hauteur minimale si l'image est écrasée */
        min-height: 500px;
    }
}