/* ==========================================================================
   1. VARIABLES & FONTS
   ========================================================================== */

/* lato-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/lato-v25-latin-300.woff2') format('woff2');
}
/* lato-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/lato-v25-latin-regular.woff2') format('woff2');
}
/* lato-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/lato-v25-latin-700.woff2') format('woff2');
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
/* montserrat-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/montserrat-v31-latin-800.woff2') format('woff2');
}

:root {
    --orange: #D14905; 
    --orange-hover: #c2410c;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --text: #1e293b;
    --text-muted: #475569;
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Lato', sans-serif; 
    color: var(--text); 
    background: var(--light); 
    line-height: 1.6; 
    overflow-x: hidden; 
}
body.nav-open { overflow: hidden; } /* Lock scroll on menu open */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }

h1, h2, h3, h4, h5, strong, .logo-text strong { font-family: 'Montserrat', sans-serif; }

section { padding: 100px 0; }

/* ==========================================================================
   3. UTILITY CLASSES
   ========================================================================== */

.container { 
    max-width: 1240px; 
    margin-left: auto !important; 
    margin-right: auto !important; 
    padding-left: 20px; 
    padding-right: 20px; 
    width: 100%;
}

.section-white {
    background-color: var(--white);
}

.section-gray {
    background-color: #f1f5f9 !important;
}

.card-base {
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}

.card-white {
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-gray {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.text-white {
    color: #ffffff !important;
}

.text-light-gray {
    color: #cbd5e1 !important; 
}

.accroche { 
    color: var(--orange); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.85rem; 
}

.center-title { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto 60px; 
}

.center-title h2 { font-size: 2.5rem; color: var(--dark); margin: 10px 0 20px; }
.center-title span { color: var(--orange); }

/* ==========================================================================
   4. LAYOUT COMPONENTS (NAV, HERO, FOOTER)
   ========================================================================== */

/* --- Navigation --- */
#top-nav { 
    background: rgba(255,255,255,0.96); 
    position: fixed; top: 0; 
    width: 100%; z-index: 1000; 
    border-bottom: 1px solid #f1f5f9; 
    backdrop-filter: blur(10px); 
}
#top-nav .container { height: 80px; display: flex; justify-content: space-between; align-items: center; }

#logo-wrapper { display: flex; align-items: center; gap: 12px; cursor: pointer; }

#menu-desktop {
    display: flex;
    align-items: center;
    gap: 25px; /* Espace entre les liens, l'urgence et le bouton */
}
#menu-desktop a { color: var(--dark); font-weight: 600; font-size: 0.95rem; }

.nav-contact { border-left: 1px solid #e2e8f0; padding-left: 20px; text-align: right; }
.nav-contact small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}
.nav-contact a { font-size: 1.1rem; font-weight: 800; }
.nav-contact-desktop {
    border-left: 1px solid #e2e8f0;
    padding-left: 20px;
    text-align: right;
    line-height: 1.2;
}

.nav-contact-desktop small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.nav-contact-desktop strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.btn-cta { background: var(--orange); color: white !important; padding: 12px 24px; border-radius: 50px; box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.4); }

/* 1. Séparateur décoratif (réutilisable sous n'importe quel titre) */
.separator-orange {
    width: 60px;
    height: 4px;
    background-color: var(--orange);
    margin: -10px auto 40px;
    border-radius: 2px;
}

/* 2. La Grille (Wrapper) */
.grid-wrapper-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes par défaut */
    gap: 40px;
    width: 100%;
}

/* 3. La Carte (Lien global) */
.card-photo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    group: pointer; /* Active les interactions au survol */
}

/* 4. Conteneur Image (Masque pour le zoom) */
.card-img-zoom {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    /* Ratio d'aspect pour éviter les décalages si l'image ne charge pas vite */
    aspect-ratio: 3 / 2; 
}

/* 5. L'Image elle-même */
.card-img-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 6. Le Titre avec Flèche */
.card-title-arrow {
    font-size: 1.5rem;
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center; /* Centre le contenu */
    gap: 12px;
    transition: var(--transition);
    margin: 0;
}

/* 7. La petite icône cercle */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 0;
    padding-bottom: 3px; /* Petit ajustement optique pour centrer la flèche */
    transition: var(--transition);
}

/* --- ANIMATIONS AU SURVOL (HOVER) --- */

.card-photo-link:hover .card-img-zoom img {
    transform: scale(1.08); /* Zoom in */
}

.card-photo-link:hover .card-title-arrow {
    color: var(--orange-hover); /* Titre fonce légèrement */
}

.card-photo-link:hover .icon-circle {
    background-color: var(--orange-hover);
    transform: translateX(5px); /* La flèche bouge vers la droite */
}



.nav-left, .nav-right { flex: 1; display: flex; align-items: center; }
.nav-right { justify-content: flex-end; }
.nav-links-desktop { display: flex; gap: 20px; }

/* Style du Menu Déroulant (Dropdown) */
.dropdown { position: relative; display: inline-block; }
.dropbtn {
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    color: var(--dark);
}

.dropdown-content {
    display: none; /* Caché par défaut */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 3000;
    border: 1px solid #f1f5f9;
}

.dropdown-content a {
    color: var(--dark) !important;
    padding: 12px 20px !important;
    display: block !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #f8fafc;
}

.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: #f1f5f9; color: var(--orange) !important; }
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInMenu 0.3s ease;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ATTENTION : Elements mobiles caches par defaut sur Desktop --- */
#burger-btn, 
.nav-urgence-mobile, 
#mobile-menu-overlay { 
    display: none !important; 
}

/* --- Header / Hero --- */
#hero { 
    position: relative;
    margin-top: 80px; height: 680px; display: flex; align-items: center; color: white;
    background-color: var(--dark);
    overflow: hidden;
}
#hero::before { 
    content: ""; position: absolute; inset: 0; 
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)); z-index: 2; 
}
#hero .container { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: center; gap: 60px; }

#hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
#hero h1 span { background: linear-gradient(to right, #fb923c, #ffedd5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
#hero p { font-size: 1.25rem; font-weight: 300; max-width: 600px; margin-bottom: 40px; opacity: 0.9; }

.hero-btns { display: flex; gap: 20px; margin-bottom: 30px; }
.btn-primary { background: var(--orange); color: white; padding: 18px 36px; border-radius: 12px; font-weight: 700; box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.4); border: none; }
.btn-secondary { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); color: white; padding: 18px 36px; border-radius: 12px; font-weight: 700; backdrop-filter: blur(5px); }
.hero-trust { display: flex; gap: 25px; font-size: 0.9rem; font-weight: 600; color: #cbd5e1; }

.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.trust-avatars { display: flex; align-items: center; }
.trust-avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--white); margin-left: -12px; object-fit: cover; }
.trust-avatars img:first-child { margin-left: 0; }
.trust-score p { margin: 0; padding: 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.9); font-family: 'Montserrat', sans-serif; line-height: 1.2; }
.trust-score strong { color: var(--white); font-weight: 800; }
.star-rating { color: #fbbf24; font-size: 1.1rem; letter-spacing: 1px; line-height: 1; margin-bottom: 2px; }

#hero-form { background: rgba(255, 255, 255, 0.98); padding: 40px; border-radius: 20px; width: 660px; color: var(--dark); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); transform: translateY(30px); }
#hero-form span { font-size: 1.6rem; text-align: center; }
#hero-form p { color: #64748b; font-size: 0.9rem; text-align: center; margin-bottom: 30px; }
#hero-form label { display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: #334155; margin: 15px 0 5px; }
#hero-form input, #hero-form select { width: 100%; padding: 14px; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 1rem; }
#hero-form button { 
    width: 100%; 
    background: var(--dark); 
    color: white; 
    border: none; 
    padding: 16px; 
    border-radius: 10px; 
    font-weight: 700; 
    margin-top: 25px; 
    cursor: pointer; 
    transition: 0.3s; 
}

#hero-form button:hover { 
    background: #000; 
}

#hero-form2 { background: rgba(255, 255, 255, 0.98); padding: 40px; border-radius: 20px; width: 660px; color: var(--dark); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); transform: translateY(30px); }
#hero-form2 span { font-size: 1.6rem; text-align: center; }
#hero-form2 p { color: #64748b; font-size: 0.9rem; text-align: center; margin-bottom: 30px; }
#hero-form2 label { display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: #334155; margin: 15px 0 5px; }
#hero-form2 input, #hero-form2 select { width: 100%; padding: 14px; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 1rem; }
#hero-form2 button { 
    width: 100%; 
    background: var(--dark); 
    color: white; 
    border: none; 
    padding: 16px; 
    border-radius: 10px; 
    font-weight: 700; 
    margin-top: 25px; 
    cursor: pointer; 
    transition: 0.3s; 
}

#hero-form2 button:hover { 
    background: #000; 
}

/* --- Footer --- */
#footer { background: #0f172a; color: #64748b; padding: 80px 0 30px; border-top: 1px solid #1e293b; }
#footer a { color: #ffffff !important; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease, opacity 0.3s ease; display: inline-block; padding: 6px 0; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 80px; }
.footer-cols h3 { color: white; margin-bottom: 25px; font-size: 0.85rem; letter-spacing: 1px; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }

/* --- PIED DE PAGE : LIGNE DE BAS --- */
/* --- PIED DE PAGE : BAS DE PAGE (STYLE ISOPEK) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px; /* Plus d'espace pour respirer comme sur l'exemple */
    background-color: #0f172a;
    text-align: center; /* Centre tout par défaut */
}

/* Bloc Copyright & Richard */
.footer-copyright {
    margin-bottom: 25px; /* Espace avant le bloc légal */
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #64748b; /* Gris pour le texte normal */
}

.footer-copyright strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-copyright a {
    color: #ffffff !important; /* Nom de Richard en blanc */
    font-weight: 700;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--orange) !important;
}

/* Bloc Liens Légaux (Tout en bas) */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px; /* Espace entre les liens */
    flex-wrap: wrap; /* Pour le mobile */
}

.footer-legal a {
    color: #94a3b8 !important; /* Gris plus clair pour le légal */
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white) !important;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 40px 20px;
    }
    
    .footer-legal {
        flex-direction: column; /* Empile les liens sur petit mobile */
        gap: 15px;
    }
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 768px) {
    .footer-legal .separator {
        display: none; /* On enlève les barres verticales sur mobile */
    }
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}


/* ==========================================================================
   8. PAGE RÉALISATIONS (PORTFOLIO)
   ========================================================================== */

/* --- A. Les Filtres (Boutons) --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    color: var(--orange);
}

/* Petite ligne sous le bouton actif */
.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--orange);
}

/* --- B. La Grille --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- C. La Carte (Item) --- */
.portfolio-item {
    position: relative;
    height: 300px;
    border-radius: 4px; /* Forme légèrement arrondie */
    overflow: hidden;
    cursor: pointer;
    background-color: #eee;
}

/* L'image de fond */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* --- D. L'Effet Overlay (Le calque noir + cadre) --- */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.85); /* Fond sombre bleuté (var --dark) avec transparence */
    opacity: 0; /* Caché par défaut */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Le Cadre Orange Intérieur (Style "Screen") */
.overlay-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--orange);
    pointer-events: none;
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

/* Textes dans l'overlay */
.portfolio-overlay h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.portfolio-overlay span {
    color: #cbd5e1; /* Gris clair */
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s; /* Petit délai */
    font-family: 'Lato', sans-serif;
}

/* --- E. Interactions au Survol (Hover) --- */
.portfolio-item:hover .portfolio-overlay {
    opacity: 1; /* Apparition */
}

.portfolio-item:hover img {
    transform: scale(1.1); /* Zoom image */
}

.portfolio-item:hover .overlay-border {
    transform: scale(1); /* Le cadre grandit un peu */
}

.portfolio-item:hover h3, 
.portfolio-item:hover span {
    transform: translateY(0); /* Le texte remonte */
}

/* --- F. Animation Filtres JS --- */
.portfolio-item.hide {
    display: none;
}

.portfolio-item.show {
    animation: fadeInGrid 0.5s ease forwards;
}


/* ==========================================================================
   5. PAGE SECTIONS
   ========================================================================= */
/* ==========================================================================
   VARIANTE LIGHT POUR LA GRILLE EXPERTISE
   ========================================================================== */

/* 1. On surcharge les cartes pour qu'elles soient blanches et non transparentes */
.expert-grid.light-version div {
    background: var(--white);       /* Fond blanc */
    border: 1px solid #e2e8f0;      /* Bordure grise très fine */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Ombre douce */
    transition: transform 0.3s ease;
}

/* Petit effet au survol */
.expert-grid.light-version div:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
}

/* 2. On change la couleur du titre (Strong) qui était blanc */
.expert-grid.light-version strong {
    color: var(--dark); /* Devient bleu foncé */
    font-size: 1.2rem;
    margin-top: 15px;
}

/* 3. On change la couleur du texte (P) qui était gris clair */
.expert-grid.light-version p {
    color: var(--text-muted); /* Devient gris standard */
}

/* 4. Style des icônes (si vous utilisez des emojis ou une police d'icônes) */
.icon-orange {
    font-size: 3rem; /* Taille de l'icône */
    display: block;
    margin-bottom: 15px;
    /* Si c'est du texte/emoji, on ne peut pas forcer la couleur orange sauf si c'est une font icon */
    /* Si vous mettez des images SVG, supprimez la ligne color */
    color: var(--orange); 
}




   /* --- Nacelle --- */
   .nacelle-quote {
    /* La barre verticale orange */
    border-left: 4px solid var(--orange);
    padding-left: 40px; /* Espace entre la barre et le texte */
    
    /* Style du texte */
    font-size: 1.5rem; /* Texte un peu plus gros */
    font-style: italic; /* Texte penché comme sur l'image */
    color: var(--text-muted); /* Gris foncé existant */
    line-height: 1.5;
}

.nacelle-quote strong {
    color: var(--text); /* Ou var(--orange) si vous préférez le mot nacelle en couleur */
    font-weight: 700;
}

/* AJUSTEMENT MOBILE (Optionnel) */
/* Utilise vos media queries existantes, mais on peut affiner la barre */
@media (max-width: 768px) {
    .nacelle-quote {
        border-left: none; /* On enlève la barre à gauche sur mobile */
        border-top: 4px solid var(--orange); /* On la met au dessus */
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
        font-size: 1.2rem;
    }
}

/* --- Argumentaire --- */
.argumentaire .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.argumentaire h2 { font-size: 2.5rem; color: var(--dark); margin: 15px 0 25px; }
.highlight { background: #eff6ff; border-left: 5px solid var(--dark); padding: 30px; border-radius: 0 20px 20px 0; font-weight: 700; font-style: italic; margin: 30px 0; color: var(--dark); }
.argumentaire figure { position: relative; }
.argumentaire img { width: 100%; border-radius: 24px; transform: rotate(2deg); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.img-badge { position: absolute; bottom: 30px; left: -20px; background: white; padding: 20px; border-radius: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); z-index: 10; }
.img-badge strong { display: block; color: var(--dark); }


/* --- Composition Visuelle --- */
.composition-visuelle { position: relative; display: flex; justify-content: center; align-items: center; padding: 50px 0; perspective: 1000px; }
.composition-visuelle img { position: relative; z-index: 10; width: 100%; max-width: 550px; height: 500px; object-fit: cover; border-radius: 30px; border: 6px solid var(--white); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); transition: var(--transition); }
#bulle-design-orange, #bulle-design-bleu { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 1; animation: flottaison-organique 8s infinite ease-in-out; }
#bulle-design-orange { background: #ffedd5; top: -10%; left: -10%; }
#bulle-design-bleu { background: #dbeafe; bottom: -10%; right: -10%; animation-delay: -4s; }
.bulle-orange, .bulle-bleue { position: absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(60px); opacity: 0.4; z-index: 1; animation: mouvement-fond 10s infinite alternate ease-in-out; }
.bulle-orange { background: #ffedd5; top: -5%; left: -5%; }
#bulle-bleue { background: #dbeafe; bottom: -5%; right: -5%; animation-delay: -5s; }

.badge-interactif { position: absolute; bottom: 60px; left: -15px; z-index: 20; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 16px 22px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.5); display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); transition: var(--transition); pointer-events: none; }
.badge-interactif i { background: #f0fdf4; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; }
.badge-interactif strong { display: block; font-size: 0.9rem; color: var(--dark); }
.badge-interactif span { font-size: 0.75rem; color: #64748b; }

/* --- Saisons --- */
.saisons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.saison-card .icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 25px; }
.icon.green { background: #dcfce7; }
.icon.orange { background: #ffedd5; }

/* --- Methodes / Solutions --- */
.method-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.method-row.reverse { direction: rtl; }
.method-row.reverse .method-text { direction: ltr; }
.method-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.method-imgs img { width: 100%; height: 350px; object-fit: cover; border-radius: 20px; transition: var(--transition); }
.method-text h3 { font-size: 2rem; color: var(--dark); display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.method-text h3 span { background: var(--dark); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.info-box { background: #f8fafc; border-left: 4px solid var(--orange); padding: 25px; border-radius: 0 12px 12px 0; margin: 25px 0; }
.check-list { list-style: none; margin: 25px 0; }
.check-list li { position: relative; padding-left: 35px; margin-bottom: 15px; font-weight: 600; color: var(--dark); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 900; font-size: 1.2rem; }

/* --- FAQ --- */
#faq .container { max-width: 900px; }
#faq h2 { text-align: center; margin-bottom: 50px; font-size: 2.2rem; }
.faq-container { 
    max-width: 800px; 
    margin: 0 auto; 
    width: 100%;
}
.faq-item { margin-bottom: 15px; border: 1px solid #e2e8f0; border-radius: 15px; overflow: hidden; transition: all 0.3s ease; }
.faq-question { width: 100%; padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; outline: none; font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); text-align: left; cursor: pointer; transition: color 0.3s ease; }
.faq-icon { font-size: 1.5rem; font-weight: 400; transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); background-color: #f8fafc; }
.faq-answer p { padding: 0 25px 25px 25px; color: var(--text); font-size: 0.95rem; line-height: 1.7; }
details { background: white; margin-bottom: 15px; border-radius: 15px; border: 1px solid #e2e8f0; overflow: hidden; }
summary { padding: 25px; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '▼'; color: var(--orange); font-size: 0.8rem; transition: 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
details div { padding: 0 25px 25px; color: var(--text); }

/* --- Expertise --- */
#expertise { background: var(--dark); color: white; }
#expertise h2 { font-size: 2.5rem; text-align: center; margin-bottom: 20px; }
#expertise h2 span { color: var(--orange); }
#expertise > .container > p { text-align: center; max-width: 800px; margin: 0 auto 60px; color: #94a3b8; }
.expert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.expert-grid div { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 20px; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.expert-grid span { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.expert-grid strong { display: block; margin-bottom: 10px; font-size: 1.1rem; }
.expert-grid p { font-size: 0.8rem; color: #64748b; }

#final-cta { background: white; color: var(--dark); padding: 60px; border-radius: 30px; text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,0.2); }
#final-cta h3 { font-size: 2rem; margin-bottom: 10px; }
#final-cta h4 { color: var(--orange); margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; gap: 20px; }
.btn-dark { background: var(--dark); color: white; padding: 18px 35px; border-radius: 50px; font-weight: 700; }
.btn-orange { background: var(--orange); color: white; padding: 18px 35px; border-radius: 50px; font-weight: 700; }

/* --- Réalisations --- */
#realisations h2 { text-align: center; font-size: 2.2rem; margin-bottom: 10px; }
#realisations h2 span { color: var(--orange); }
#realisations > .container > p { text-align: center; margin-bottom: 50px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: 15px; }

/* ==========================================================================
   6. INTERACTIVITY & ANIMATIONS
   ========================================================================== */
/* ==========================================================================
   CARROUSEL AUTOMATIQUE INFINI
   ========================================================================== */


/* La piste qui contient toutes les images */
.carousel-auto-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 80px; /* Espace entre les logos */
    width: max-content;
    animation: scroll-partners 40s linear infinite;
}


/* ==========================================================================
   CARROUSEL PARTENAIRES (LOGOS)
   ========================================================================== */

/* Ajustement de la piste pour les logos */
.partners-track {
    /* On utilise la même animation, mais plus lente (40s) car les logos c'est mieux quand ça bouge doucement */
    animation: defilement 40s linear infinite; 
    gap: 40px; /* Plus d'espace entre les logos */
    align-items: center; /* Centre verticalement les logos */
}

/* Style spécifique des images "Logo" */
.logo-img {
    height: 100px !important; /* Hauteur fixe pour l'alignement */
    width: auto !important;   /* Largeur auto pour éviter les déformations */
    max-width: 200px;
    object-fit: contain;
    
    /* On retire le noir et blanc */
    filter: none !important; 
    opacity: 1 !important;
    
    /* Reset des styles de photos */
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: transform 0.3s ease;
}

/* Au survol du logo : il reprend ses couleurs */
.logo-img:hover {
    transform: scale(1.1);
    cursor: pointer;
}


/* Pause de l'animation au survol de la zone */
.partners-track:hover {
    animation-play-state: paused;
}

   .badge-intervention {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #f0fdf4;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
}

.badge-intervention .dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    position: relative;
}


.badge-intervention .dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}


#menu-desktop a:hover { color: var(--orange); }

.btn-cta:hover { background: var(--orange-hover); transform: translateY(-2px); }

#hero-form button:hover { background: #000; }
#hero-form2 button:hover { background: #000; }

.card-white:hover { background-color: var(--bg-gray); transform: translateY(-10px); border-color: var(--orange); box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1); }
.card-gray:hover { background-color: #ffffff; transform: translateY(-10px); border-color: var(--orange); box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1); }

.composition-visuelle img:hover { transform: rotateY(12deg) rotateX(-5deg) rotateZ(-2deg) scale(0.98); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); }
.composition-visuelle:hover .badge-interactif { transform: translate(20px, -10px) rotateZ(-3deg); }

summary:focus { outline: 2px solid var(--orange); outline-offset: 4px; }

.faq-item:hover { border-color: var(--orange); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.faq-item.active .faq-question { color: var(--orange); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-item.active .faq-answer { max-height: 800px; }

#footer a:hover { color: var(--orange) !important; opacity: 1; }

#solutions .method-imgs img:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 50px -12px rgba(217, 78, 6, 0.3); }

#realisations .gallery img { transition: transform 0.6s ease, filter 0.4s ease, box-shadow 0.4s ease; cursor: zoom-in; position: relative; z-index: 1; }
#realisations .gallery img:hover { transform: scale(1.08); filter: brightness(1.1) contrast(1.1); box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3); z-index: 10; border: 2px solid var(--white); }

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

@keyframes flottaison-organique {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes mouvement-fond {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, 40px) scale(1.1); }
}

/* ==========================================================================
   7. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

@media (max-width: 1024px) {

     .nav-links-desktop, .nav-info-desktop { display: none !important; }
    
    #mobile-menu-overlay {
        padding: 80px 40px;
        overflow-y: auto; /* Permet de scroller si la liste est longue */
    }
    
    .mobile-separator {
        width: 100%;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--orange);
        letter-spacing: 2px;
        margin: 15px 0 5px;
        text-align: center;
    }

    #mobile-menu-overlay a {
        font-size: 1.1rem; /* Un peu plus petit pour que tout rentre */
        padding: 8px 0;
    }

    /* Navbar Toggle */
    #menu-desktop, .nav-contact-desktop { display: none !important; }
    #burger-btn, .nav-urgence-mobile { display: flex !important; }

    /* Burger Button Drawing */
    #burger-btn {
        width: 30px; height: 22px; flex-direction: column; justify-content: space-between;
        background: none; border: none; cursor: pointer; padding: 0; position: relative; z-index: 3500;
    }
    #burger-btn span { display: block; width: 100%; height: 3px; background-color: var(--dark); border-radius: 3px; transition: all 0.3s ease-in-out; }

    /* Mobile Nav Layout */
    .nav-grid {
        display: flex !important;
        justify-content: space-between !important;
        width: 100%;
    }

    .nav-right-side {
        flex: 1; /* Prend 1/3 de l'espace */
        justify-content: flex-end;
        display: flex;
    }
    .nav-urgence-mobile {
        display: flex !important;
        flex: 1; /* Prend 1/3 de l'espace */
        justify-content: flex-start;
    }
    .nav-urgence-mobile a { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-urgence-mobile small { font-size: 0.55rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
    .nav-urgence-mobile strong { font-size: 0.75rem; color: var(--orange); font-weight: 800; white-space: nowrap; }
    #logo-wrapper {
        flex: 2; /* Prend le centre (plus large) */
        justify-content: center;
        display: flex;
    }

    .nav-right { flex: 1; display: flex; justify-content: flex-end; }

    /* Mobile Menu Overlay */
    #mobile-menu-overlay {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: white; display: flex !important; flex-direction: column;
        align-items: center; justify-content: center; gap: 30px; transition: right 0.4s ease; z-index: 3000;
    }
    .nav-open #mobile-menu-overlay { right: 0; }
    #mobile-menu-overlay a { font-size: 1.5rem; font-weight: 700; color: var(--dark); font-family: 'Montserrat'; }

    /* Animation Burger to X */
    .nav-open #burger-btn span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
    .nav-open #burger-btn span:nth-child(2) { opacity: 0; }
    .nav-open #burger-btn span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

    /* Hero Responsive */
    #hero { height: auto; padding: 120px 0 60px; }
    #hero .container { flex-direction: column; text-align: center; }
    #hero h1 { font-size: 2.5rem; }
    #hero p { margin: 0 auto 40px; }
    .hero-btns, .hero-trust { justify-content: center; }
    #hero-form { display: none !important; }
    #hero-form2 { display: none !important; }

    /* General Layout */
    .argumentaire .container, .method-row { grid-template-columns: 1fr; gap: 40px; }
    .method-row.reverse { direction: ltr; }
    .expert-grid { grid-template-columns: 1fr 1fr; }
        /* General Layout */

}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden; /* Empêche le scroll horizontal parasite */
        width: 100%;
    }

    section { padding: 60px 0; }
    .section-white, .section-gray { padding: 60px 0; }
    h2 { font-size: 1.8rem; }
    .saisons-grid, .footer-cols, .gallery, .expert-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; }
    .method-imgs { grid-template-columns: 1fr; }
    .method-imgs img { height: 250px; }
    .composition-visuelle {
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden; /* Coupe les blobs qui dépassent */
    }

    .composition-visuelle img {
        height: auto;
        max-height: 300px; /* On réduit la hauteur pour le mobile */
        width: 100%;
        transform: none !important; /* ON COUPE LA TORSION SUR MOBILE (Important) */
        border-radius: 20px;
        border-width: 4px; /* Bordure un peu plus fine */
    }
    .badge-interactif i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .badge-interactif strong {
        font-size: 0.85rem;
    }

    /* --- AJUSTEMENT DES BULLES (BLOBS) --- */
    .bulle-orange, .bulle-bleue {
        width: 200px; /* On réduit les bulles de fond */
        height: 200px;
    }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 992px) {
    /* Tablette : 2 colonnes */
    .grid-wrapper-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile : 1 colonne */
    .grid-wrapper-3col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .card-title-arrow {
        font-size: 1.3rem; /* Titre un peu plus petit sur mobile */
    }
}

/* --- LE SECRET : L'ANIMATION --- */
@keyframes defilement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
    /* On va jusqu'à -50% car on a doublé le contenu. 
       Arrivé à la moitié, on est visuellement revenu au début. */
}

/* --- PAUSE AU SURVOL (Souris & Doigt) --- */
.carousel-track:hover {
    animation-play-state: paused;
    cursor: grab;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .carousel-track img {
        width: 280px; /* Images plus petites sur mobile */
        height: 200px;
    }
    /* Sur mobile, on accélère un peu car les images sont moins larges */
    .carousel-track {
        animation-duration: 20s;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px !important; /* Plus petit sur mobile */
    }
    .partners-track {
        gap: 40px;
        animation-duration: 25s;
    }
}

@keyframes fadeInGrid {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- G. Responsive --- */
@media (max-width: 992px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-filters { gap: 15px; }
    .filter-btn { font-size: 0.9rem; }
}

/* ==========================================================================
   SECTION : POURQUOI NOUS CHOISIR (ICONES)
   ========================================================================== */

/* La Grille de 4 colonnes */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* La Carte individuelle */
.reason-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border-radius: 4px; /* Coins légèrement arrondis comme sur le screen */
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* Ombre très légère */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9; /* Bordure très fine */
}

/* Effet au survol de la carte */
.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(209, 73, 5, 0.1); /* Ombre orangée légère */
    border-color: rgba(209, 73, 5, 0.2);
}

/* L'icône SVG */
.reason-icon {
    margin-bottom: 25px;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reason-icon svg {
    width: 60px; /* Taille de l'icone */
    height: 60px;
}

/* Le texte */
.reason-card p {
    color: var(--text-muted); /* Gris foncé */
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

/* Le texte mis en avant en orange */
.text-orange {
    color: var(--orange);
    font-weight: 700;
}

/* --- RESPONSIVE --- */

/* Tablette (2 colonnes) */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile (1 colonne) */
@media (max-width: 600px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   MODIFICATIONS SPECIFIQUES : TEXTE PLEINE LARGEUR
   ========================================================================== */
@media (min-width: 1024px) {
    /* 1. On cache le formulaire sur ordinateur */
    .hide-on-desktop {
        display: none !important;
    }

    /* 2. On force la grille à prendre toute la largeur ET ON SUPPRIME LA MARGE */
    .method-row.full-width-desktop {
        grid-template-columns: 1fr !important;
        gap: 0;
        margin-bottom: 0 !important; /* <--- C'est ici que la magie opère */
    }
    
    /* 3. On centre le texte et on limite sa largeur pour la lecture */
    .method-row.full-width-desktop .text-content {
        max-width: 900px; /* Empêche le texte d'être trop étiré */
        margin: 0 auto;   /* Centre le bloc de texte */
        text-align: center; /* Centre le texte (optionnel, selon vos goûts) */
    }
}
/* --- STYLE DU MENU MOBILE (Style Richard Lourmet) --- */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* Espace pour le logo/croix */
    transition: 0.4s ease-in-out;
    z-index: 3000;
    overflow-y: auto;
}

body.nav-open #mobile-menu-overlay {
    right: 0;
}

/* Style commun pour TOUS les liens et le bouton services */
#mobile-menu-overlay a, 
#mobile-services-btn {
    width: 100%;
    padding: 20px 30px; /* Espace interne constant */
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem; /* Taille uniforme pour tout le monde */
    font-weight: 600;
    color: var(--dark);
    text-align: left; /* Aligné à gauche comme sur l'exemple */
    background: none;
    border: none;
    border-bottom: 1px solid #eeeeee; /* Ligne de séparation fine */
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

/* Titres orange (Headers) */
.mobile-separator {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 25px 30px 10px; /* Plus d'espace au dessus du titre */
    background-color: #fcfcfc;
}

/* --- LE TIROIR DÉROULANT SERVICES --- */
.mobile-dropdown-container {
    width: 100%;
}

#mobile-services-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

/* Retrait du gris et uniformisation des liens internes */
#mobile-services-list a {
    padding-left: 50px; /* Décalage pour montrer la hiérarchie */
    font-size: 1.1rem; /* Légèrement plus petit ou identique selon préférence */
    background-color: #ffffff; /* Pas de gris */
    color: var(--text-muted);
}

/* État ouvert */
.dropdown-active #mobile-services-list {
    max-height: 1000px; /* Suffisant pour tous les services */
}

.dropdown-active #mobile-services-btn {
    color: var(--orange);
}

/* Animation de la flèche ou du plus */
#mobile-services-btn span {
    font-size: 0.9rem;
    transition: 0.3s;
}

.dropdown-active #mobile-services-btn span {
    transform: rotate(180deg);
}

/* Bouton Devis Gratuit spécifique en bas */
#mobile-menu-overlay .btn-cta {
    margin: 20px 30px;
    justify-content: center;
    border-radius: 50px;
    background: var(--orange);
    color: white !important;
    border: none;
    padding: 15px;
}


/* --- NOUVEAU LOGO IMAGE --- */

/* On s'assure que le wrapper ne force pas des espacements bizarres */
#logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none; /* Sécurité */
}

/* Style de l'image du logo */
.nav-logo-img {
    height: auto;
    max-height: 70px; /* La barre fait 80px, on laisse 5px de marge haut/bas */
    width: auto;      /* Garde les proportions */
    display: block;
    transition: transform 0.3s ease;
}

/* Petit effet au survol (optionnel) */
#logo-wrapper:hover .nav-logo-img {
    transform: scale(1.05);
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 768px) {
    .nav-logo-img {
        max-height: 50px; /* Plus petit sur mobile pour ne pas casser le menu */
    }
    
    /* Ajustement spécifique pour le logo du footer sur mobile si besoin */
    #footer .nav-logo-img {
        max-height: 60px; 
    }
}