 /* === RESET & BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Raleway', 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(to bottom, 
                #0a0a0a 0%, 
                #1a0000 30%, 
                #0a0a0a 70%, 
                #000000 100%);
            background-attachment: fixed;
        }

        /* === HEADER / NAVIGATION === */
        header {
            background: linear-gradient(to right, 
                rgba(75, 0, 0, 0.95) 0%, 
                rgba(110, 0, 0, 0.95) 30%,
                rgba(90, 0, 0, 0.95) 70%,
                rgba(60, 0, 0, 0.95) 100%);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
            border-bottom: 1px solid rgba(212, 175, 55, 0.4);
            backdrop-filter: blur(10px);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem; /* RÉDUIT (était 2rem) pour donner plus de largeur au menu */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-img {
            height: 70px;
            width: auto;
            transition: transform 0.3s ease;
            display: block;
        }

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

         nav ul {
            list-style: none;
            display: flex;
            gap: 1rem; /* RÉDUIT (était 2.5rem) pour gagner de la place */
            align-items: center;
            flex-wrap: nowrap; /* EMPÊCHE le retour à la ligne */
        }

        nav a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 0.95rem; /* Légèrement réduit (était 1rem) */
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0.8rem; /* Padding réduit */
            border-bottom: 2px solid transparent;
            white-space: nowrap; /* CRUCIAL : Empêche le texte de se couper */
        }

        nav a:hover {
            color: #d4af37;
            border-bottom: 2px solid #d4af37;
        }

        /* === HERO SECTION OPTIMISÉE LCP === */

/* 1. La boite principale (conteneur) */
.hero {
    position: relative; /* Indispensable pour l'empilement */
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 5rem 2rem;
    overflow: hidden; /* Coupe l'image si elle dépasse */
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* 2. L'image de fond (positionnée derrière) */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit tout l'espace sans déformer */
    z-index: 0; /* Tout au fond */
}

/* 3. Le filtre sombre (positionné au milieu) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Je reprends ton dégradé original */
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(40, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

/* 4. Le contenu texte (positionné devant) */
.hero-content {
    position: relative;
    z-index: 2; /* Tout devant */
    width: 100%;
    max-width: 1200px;
}

/* On garde tes styles de texte existants */
.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.8rem;
    color: #d4af37;
    text-shadow: 4px 4px 15px rgba(0,0,0,0.9);
    line-height: 1.3;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.35rem;
    max-width: 900px;
    margin: 0 auto 2.8rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,1); 
    color: #ffffff;
    font-weight: 500;
    line-height: 1.8;
}

/* Responsive pour le texte */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.15rem; }
}

        .btn-primary {
            display: inline-block;
            background: linear-gradient(to right, 
                #c49b2a 0%, 
                #d4af37 50%, 
                #e8c547 100%);
            color: #1a1a1a;
            padding: 1.3rem 3.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.4s ease;
            box-shadow: 0 6px 30px rgba(0,0,0,0.6); /* Ombre plus noire pour ressortir */
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: 'Raleway', sans-serif;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 40px rgba(212,175,55,0.6);
            background: linear-gradient(to right, 
                #e8c547 0%, 
                #d4af37 50%, 
                #c49b2a 100%);
        }

        /* === SECTIONS GÉNÉRALES === */
        section {
            padding: 5.5rem 2rem;
        }

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

        h2 {
            font-size: 3rem;
            color: #d4af37;
            margin-bottom: 1.8rem;
            text-align: center;
            position: relative;
            padding-bottom: 1.8rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.5px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background: linear-gradient(to right, 
                transparent 0%, 
                rgba(212,175,55,0.3) 10%, 
                #d4af37 50%, 
                rgba(212,175,55,0.3) 90%, 
                transparent 100%);
        }

        h3 {
            font-size: 1.75rem;
            color: #d4af37;
            margin: 1.5rem 0 1rem;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        p {
            margin-bottom: 1.2rem;
            font-size: 1.08rem;
            line-height: 1.85;
            color: #e5e5e5;
            font-weight: 400;
        }

       /* === STYLE IMAGES DANS LES CARTES (POUR SEO) === */
        .card-img {
          width: 100%;       /* Prend toute la largeur de la carte */
          height: auto;      /* S'adapte automatiquement pour garder le ratio d'origine */
          border-radius: 10px;
          margin-bottom: 1rem;
          border: 1px solid rgba(212, 175, 55, 0.3);
          display: block;    /* Évite les petits espaces blancs sous l'image */
    }

        /* === SECTION AVEC FONDUS DOUX === */
        .section-red-gradient {
            background: linear-gradient(to bottom, 
                rgba(60, 0, 0, 0.4) 0%, 
                rgba(45, 0, 0, 0.5) 25%,
                rgba(30, 0, 0, 0.6) 50%,
                rgba(20, 0, 0, 0.7) 75%,
                rgba(10, 10, 10, 0.8) 100%);
        }

        .section-dark-red {
            background: linear-gradient(to bottom, 
                rgba(20, 0, 0, 0.7) 0%, 
                rgba(25, 5, 5, 0.75) 50%,
                rgba(15, 0, 0, 0.8) 100%);
        }

        .section-black {
            background: linear-gradient(to bottom, 
                rgba(10, 10, 10, 0.9) 0%, 
                rgba(15, 5, 5, 0.85) 50%,
                rgba(10, 10, 10, 0.9) 100%);
        }

        .section-red-to-black {
            background: linear-gradient(to bottom, 
                rgba(50, 0, 0, 0.5) 0%, 
                rgba(35, 0, 0, 0.65) 30%,
                rgba(20, 0, 0, 0.75) 60%,
                rgba(10, 10, 10, 0.85) 100%);
        }

        /* === GRILLES & CARTES === */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .card {
            background: linear-gradient(to bottom right, 
                rgba(80, 0, 0, 0.25) 0%, 
                rgba(50, 0, 0, 0.3) 40%,
                rgba(30, 10, 10, 0.4) 100%);
            padding: 2.5rem;
            border-radius: 18px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.4);
            transition: all 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.15);
            backdrop-filter: blur(10px);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(212,175,55,0.25);
            border: 1px solid rgba(212, 175, 55, 0.4);
            background: linear-gradient(to bottom right, 
                rgba(90, 0, 0, 0.3) 0%, 
                rgba(60, 0, 0, 0.35) 40%,
                rgba(40, 10, 10, 0.45) 100%);
        }

        .card h3 {
            margin-top: 0;
            color: #d4af37;
        }

        .card p {
            color: #e5e5e5;
        }

        .card ul {
            margin: 1.5rem 0;
            padding-left: 1.8rem;
            color: #e5e5e5;
        }

        .card li {
            margin-bottom: 0.8rem;
            line-height: 1.7;
        }

        /* === AVANTAGES / FEATURES === */
        .avantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.8rem;
            margin-top: 4rem;
        }

        .avantage-item {
            text-align: center;
            padding: 3rem 1.8rem;
            background: linear-gradient(to bottom, 
                rgba(70, 0, 0, 0.2) 0%, 
                rgba(40, 0, 0, 0.3) 50%,
                rgba(20, 10, 10, 0.4) 100%);
            border-radius: 18px;
            border: 2px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
        }

        .avantage-item:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
            background: linear-gradient(to bottom, 
                rgba(80, 0, 0, 0.25) 0%, 
                rgba(50, 0, 0, 0.35) 50%,
                rgba(30, 10, 10, 0.45) 100%);
        }

        .avantage-icon {
            font-size: 4rem;
            margin-bottom: 1.8rem;
            filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.4));
        }

        .avantage-item h3 {
            font-size: 1.45rem;
            margin-bottom: 1.2rem;
            color: #d4af37;
        }

        .avantage-item p {
            color: #e5e5e5;
            line-height: 1.8;
        }

        /* === ÉVÉNEMENTS === */
        .evenements-list {
            margin-top: 4rem;
        }

        .evenement-item {
            background: linear-gradient(to right, 
                rgba(80, 0, 0, 0.3) 0%, 
                rgba(50, 0, 0, 0.35) 50%,
                rgba(30, 10, 10, 0.4) 100%);
            padding: 2.8rem;
            margin-bottom: 2.8rem;
            border-left: 5px solid rgba(212, 175, 55, 0.6);
            border-radius: 12px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
            transition: all 0.4s ease;
        }

        .evenement-item:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
            border-left-color: #d4af37;
            background: linear-gradient(to right, 
                rgba(90, 0, 0, 0.35) 0%, 
                rgba(60, 0, 0, 0.4) 50%,
                rgba(40, 10, 10, 0.45) 100%);
        }

        .evenement-item h3 {
            margin-top: 0;
            color: #d4af37;
            font-size: 1.9rem;
        }

        .evenement-item p {
            color: #e5e5e5;
        }

        /* === TÉMOIGNAGES === */
        .temoignages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.8rem;
            margin-top: 4rem;
        }

        .temoignage {
            background: linear-gradient(to bottom right, 
                rgba(70, 0, 0, 0.25) 0%, 
                rgba(45, 0, 0, 0.3) 50%,
                rgba(25, 10, 10, 0.4) 100%);
            padding: 3rem;
            border-radius: 18px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }

        .temoignage:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .temoignage::before {
            content: '"';
            font-size: 5.5rem;
            color: rgba(212, 175, 55, 0.25);
            position: absolute;
            top: -15px;
            left: 20px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .temoignage blockquote {
            font-style: italic;
            margin-bottom: 1.8rem;
            position: relative;
            z-index: 1;
            color: #f5f5f5;
            font-size: 1.08rem;
            line-height: 1.85;
        }

        .auteur {
            font-weight: 600;
            color: #d4af37;
            font-size: 1.02rem;
            font-family: 'Raleway', sans-serif;
        }

       /* === FORMULAIRE COMPACT & ACCESSIBLE === */
.formulaire-devis {
    max-width: 800px; /* Un peu plus large pour permettre les 2 colonnes */
    margin: 4rem auto;
    background: linear-gradient(to bottom, 
        rgba(70, 0, 0, 0.4) 0%, 
        rgba(25, 10, 10, 0.6) 100%);
    padding: 2.5rem; /* Réduit de 4rem à 2.5rem */
    border-radius: 15px;
    box-shadow: 0 12px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Nouvelle classe pour mettre les champs côte à côte */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes égales */
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Pour que ça repasse en 1 colonne sur mobile */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-row .form-group {
        margin-bottom: 1.5rem;
    }
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #d4af37;
    font-size: 0.95rem; /* Texte un peu plus petit */
    font-family: 'Raleway', sans-serif;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.8rem; /* Réduit de 1.1rem à 0.8rem */
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.6);
    color: #f5f5f5;
    font-family: 'Raleway', sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(30, 30, 30, 0.8);
}

/* Checkboxes en grille compacte */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e5e5;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-item input {
    accent-color: #d4af37;
    width: 16px;
    height: 16px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #c49b2a, #d4af37, #e8c547);
    color: #1a1a1a;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: scale(1.02);
}

        /* === SLOGAN FINAL === */
        .slogan-final {
            background: linear-gradient(to right, 
                rgba(70, 0, 0, 0.8) 0%, 
                rgba(90, 0, 0, 0.85) 25%,
                rgba(80, 0, 0, 0.85) 50%,
                rgba(70, 0, 0, 0.85) 75%,
                rgba(50, 0, 0, 0.8) 100%);
            color: #d4af37;
            text-align: center;
            padding: 4.5rem 2rem;
            font-size: 1.9rem;
            font-weight: 600;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            font-family: 'Playfair Display', serif;
        }

        /* === FOOTER === */
        footer {
            background: linear-gradient(to bottom, 
                rgba(15, 0, 0, 0.95) 0%, 
                rgba(20, 5, 5, 0.97) 50%,
                rgba(10, 0, 0, 0.98) 100%);
            color: #e5e5e5;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3.5rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.35rem;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
            font-family: 'Playfair Display', serif;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .footer-section a {
            color: #e5e5e5;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-section p {
            line-height: 1.8;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            color: #999;
            font-size: 0.95rem;
        }

        /* === RESPONSIVE === */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.15rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            nav ul {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .logo-img {
                height: 55px;
            }

            .formulaire-devis {
                padding: 2.5rem 2rem;
            }

            .grid-3 {
                grid-template-columns: 1fr;
            }

            section {
                padding: 4rem 1.5rem;
            }
        }

        /* === UTILITAIRES === */
        .text-center {
            text-align: center;
        }

        .mt-3 {
            margin-top: 3.5rem;
        }

        .mb-3 {
            margin-bottom: 3.5rem;
        }

        strong {
            color: #d4af37;
            font-weight: 700;
        }

        /* === ANIMATIONS SUBTILES === */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        section {
            animation: fadeInUp 0.6s ease-out;
        }

        /* === SMOOTH SCROLLING === */
        html {
            scroll-behavior: smooth;
        }
        
/* === SECTION TEASER === */
#teaser {
    padding: 4rem 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* 1. LE CONTENEUR EXTERNE (Gère la taille et le cadre) */
.video-wrapper {
    max-width: 800px;  /* Largeur Maximale */
    width: 100%;
    margin: 0 auto;    /* Centré */
    
    /* Le style esthétique (bordure, ombre) se met ICI maintenant */
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    overflow: hidden; /* Important pour que la vidéo ne dépasse pas des bords ronds */
}

/* 2. LE CONTENEUR INTERNE (Gère uniquement le ratio 16/9) */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Le fameux ratio 16:9 */
    height: 0;
    width: 100%; /* Prend 100% de son parent (le wrapper de 800px) */
    background: #000; /* Fond noir en attendant le chargement */
}

/* L'IFRAME */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* =========================================
   MENU BURGER & RESPONSIVE NAVIGATION
   ========================================= */

/* Par défaut (PC) : on cache le bouton burger */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #d4af37; /* Couleur Or */
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* === VERSION MOBILE (Max 768px) === */
@media (max-width: 768px) {
    
    /* 1. Afficher le bouton burger */
    .hamburger {
        display: block;
        z-index: 2000;
    }

    /* 2. Cacher le menu par défaut et le styliser */
    .nav-menu {
        position: fixed; /* Fixe par rapport à l'écran */
        left: 0;
        top: 0; /* Prend tout l'écran */
        width: 100%;
        height: 100vh; /* Hauteur totale */
        background: rgba(0, 0, 0, 0.95); /* Fond noir presque opaque */
        backdrop-filter: blur(10px);
        
        /* Centrage du contenu */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        /* Animation : Caché par défaut */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 1500;
    }

    /* 3. Classe active : Quand on clique, le menu apparaît */
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    /* Style de la liste sur mobile */
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.5rem; /* Liens plus gros sur mobile */
    }

    /* Animation du bouton burger en croix (Optionnel mais joli) */
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* === BOUTON DEVIS DANS LE MENU (Style Ancien Site) === */

/* Le style du bouton */
/* === BOUTON DEVIS CORRIGÉ === */
a.nav-link.btn-header {
    background: linear-gradient(to right, #c49b2a, #d4af37, #e8c547);
    color: #000 !important;
    padding: 10px 20px; /* Un peu moins large */
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem; /* Police ajustée pour tenir sur une ligne */
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: none;
    display: inline-block; /* Assure que le bouton reste un bloc */
    white-space: nowrap;   /* Interdit la coupure du texte */
    margin-left: 10px;     /* Petit espace pour le séparer des autres */
}

/* Effet au survol (Hover) */
a.nav-link.btn-header:hover {
    transform: translateY(-2px); /* Monte un peu */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(to right, #e8c547, #d4af37, #c49b2a); /* Inverse le dégradé */
    border-bottom: none; /* Enlève la ligne jaune standard du menu */
    color: #000;
}

/* === AJUSTEMENT MOBILE === */
@media (max-width: 768px) {
    /* Sur mobile, on agrandit un peu le bouton pour qu'il soit bien cliquable */
    a.nav-link.btn-header {
        margin-top: 1rem; /* Un peu d'espace au dessus */
        padding: 15px 40px;
        font-size: 1.1rem;
        width: auto;
        display: inline-block;
    }
}
/* === ETAT DE SUCCÈS DU FORMULAIRE === */
/* === ETAT DE SUCCÈS DU FORMULAIRE (CORRIGÉ) === */
.btn-submit.success {
    /* Le !important force le vert à remplacer le doré */
    background: linear-gradient(to right, #28a745, #218838) !important;
    color: #ffffff !important; /* Texte bien blanc */
    border: 1px solid #1e7e34 !important;
    
    cursor: default; /* Curseur normal */
    pointer-events: none; /* Empêche de recliquer */
    box-shadow: none !important; /* On enlève l'ombre dorée */
    transform: none !important;
}

.btn-submit.error {
    background: linear-gradient(to right, #dc3545, #c82333); /* Rouge */
    color: white;
}
/* Ajout à la fin de votre fichier CSS */
#retour-formulaire {
    /* Quand le navigateur scroll vers cet élément, il laisse 300px d'espace au-dessus */
    /* Cela permet de centrer le bouton dans l'écran plutôt que de le coller tout en haut */
    scroll-margin-top: 50vh; 
}

