
        :root {
            /* Couleurs orientées arts martiaux : tons chauds, orange dynamique, fond pierre sombre */
            --primary-color: #f25c05;
            --primary-hover: #d94d04;
            --bg-dark: #221e1d;
            --bg-darker: #1a1716;
            --text-light: #fdfbf7;
            
            /* Glassmorphism Design Tokens */
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.25); /* Bordures plus marquées pour l'effet glace */
            --glass-blur: 15px;
            --header-glass: rgba(26, 23, 22, 0.6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- Header & Logo --- */
        .header {
            position: absolute; /* Par défaut sur ordinateur : défile avec la page */
            top: 0;
            left: 0;
            width: 100%;
            padding: 0.6rem 2.5rem;
            z-index: 1000000;
            /* Dégradé léger pour le fondu sans bordure */
            background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
            border-bottom: none; /* Suppression de la limite visuelle */
            transition: all 0.4s ease;
        }

        /* En-tête fixé et stylisé UNIQUEMENT sur mobile */
        @media (max-width: 768px) {
            .header {
                position: fixed !important; 
                background: rgba(26, 23, 22, 0.75);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 0.5rem 1.5rem;
                border-bottom: 1px solid var(--glass-border);
            }
        }

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

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            text-decoration: none;
            color: var(--text-light);
            transition: opacity 0.3s;
        }

        .logo-container:hover {
            opacity: 0.9;
        }

        .logo-img {
            max-width: 200px;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            border-left: 2px solid var(--primary-color);
            padding-left: 1rem;
        }

        .logo-title {
            font-size: 1.3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .logo-subtitle {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary-color);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .desktop-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .desktop-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .desktop-menu a:hover {
            color: var(--primary-color);
        }

        /* Animation Tremblante Orange pour Inscriptions */
        @keyframes shake-orange {
            0% { transform: translateX(0); color: var(--primary-color); }
            5% { transform: translateX(-2px) rotate(-0.5deg); }
            10% { transform: translateX(2px) rotate(0.5deg); }
            15% { transform: translateX(-2px) rotate(-0.5deg); }
            20% { transform: translateX(2px) rotate(0.5deg); }
            25% { transform: translateX(0); }
            100% { transform: translateX(0); }
        }

        .btn-register-nav {
            /* Retour au blanc standard pour le menu */
            color: var(--text-light) !important;
            font-weight: 500 !important;
            animation: none;
            transition: color 0.3s;
        }

        .btn-register-nav:hover, .btn-register-nav.active {
            color: var(--primary-color) !important;
        }

        .btn-login {
            background-color: transparent;
            color: #fff !important;
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 0.4rem 1.2rem !important;
            border-radius: 20px;
            font-weight: 500 !important;
            transition: all 0.3s ease;
            margin-left: 1rem;
            display: inline-block;
        }

        .btn-login:hover {
            border-color: var(--primary-color);
            color: var(--primary-color) !important;
            background-color: rgba(242, 92, 5, 0.1);
        }

        /* Couleur orange appliquée au TITRE de la page Inscriptions */
        .page-title.title-orange {
            color: var(--primary-color) !important;
        }

        .mobile-menu-layout {
            display: none;
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;

            /* Fond photoréaliste : Dojo de Carquefou avec filtre sombre */
            background-color: #0c0a0a;
            background-image:
                linear-gradient(to bottom, rgba(26, 23, 22, 0.95) 0%, rgba(26, 23, 22, 0.60) 40%, rgba(26, 23, 22, 0.90) 100%),
                url('https://usjakungfu.fr/public/3540/upload/images/accueil/1/kungfu03.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, var(--bg-dark), transparent);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            width: 100%;
            animation: fadeInBody 1s ease-out;
            margin-top: 3rem; /* Remontée du contenu vers l'en-tête */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-title {
            font-family: 'Kaushan Script', cursive;
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 400;
            color: #fff;
            margin: 60px 0 70px 0; /* Marges réduites pour remonter le titre et le bouton */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
            text-align: center;
            line-height: 1.2;
        }

        .hover-swap {
            position: relative;
            display: inline-block;
            cursor: default;
            background: transparent !important;
            perspective: 800px;
        }

        .hover-swap .original {
            display: inline-block;
            background: transparent !important;
            transform-origin: center bottom;
            will-change: transform, opacity;
        }

        .hover-swap .hover-text {
            position: absolute;
            top: 50%;
            left: 50%;
            /* Position de départ par défaut */
            transform: translate(-50%, 10%) scale(0.6) rotateX(-30deg);
            opacity: 0;
            white-space: nowrap;
            color: var(--primary-color);
            pointer-events: none;
            background: transparent !important;
            /* Magnifique aura orange et ombre prononcée sans résidu moche */
            text-shadow: 0 0 25px rgba(242, 92, 5, 0.6), 3px 5px 12px rgba(0, 0, 0, 0.9) !important;
            will-change: transform, opacity;
        }

        /* --- ANIMATION EN BOUCLE SYNCHRONISÉE (2 ÉTATS) --- */
        
        /* Disparition des éléments originaux */
        .hover-swap:nth-child(1) .original,
        .hover-swap:nth-child(3) .original {
            animation: sync_orig 8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s infinite;
        }

        /* Surgissement du texte 1 */
        .hover-swap:nth-child(1) .hover-text {
            animation: sync_new_w1 8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s infinite;
        }

        /* Surgissement du texte 2 */
        .hover-swap:nth-child(3) .hover-text {
            animation: sync_new_w2 8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s infinite;
        }

        /* --- KEYFRAMES DU CYCLE SYNCHRONISÉ --- */

        @keyframes sync_orig {
            0%, 40%   { opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
            45%, 85%  { opacity: 0; transform: translateY(-30px) scale(0.8) rotateX(30deg); } /* Fuite ensemble vers le haut */
            90%, 100% { opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
        }

        @keyframes sync_new_w1 {
            0%, 40%   { opacity: 0; transform: translate(-50%, 10%) scale(0.6) rotateX(-30deg); }
            /* Surgit et s'écarte un peu à gauche pour faire de la place avec une échelle de .85 */
            45%, 85%  { opacity: 1; transform: translate(calc(-50% - 35px), -50%) scale(0.85) rotateX(0deg); } 
            90%, 100% { opacity: 0; transform: translate(-50%, 10%) scale(0.6) rotateX(-30deg); }
        }

        @keyframes sync_new_w2 {
            0%, 40%   { opacity: 0; transform: translate(-50%, 10%) scale(0.6) rotateX(-30deg); }
            /* Surgit et s'écarte un peu à droite pour faire de la place avec une échelle de .85 */
            45%, 85%  { opacity: 1; transform: translate(calc(-50% + 35px), -50%) scale(0.85) rotateX(0deg); } 
            90%, 100% { opacity: 0; transform: translate(-50%, 10%) scale(0.6) rotateX(-30deg); }
        }

        /* Anti-bug pour forcer la transparence et supprimer les blocs parasites */
        .hero-title span, .separator {
            background-color: transparent !important;
        }
        
        .hero-title::before, .hero-title::after,
        .hover-swap::before, .hover-swap::after,
        .original::before, .original::after,
        .hover-text::before, .hover-text::after,
        .separator::before, .separator::after {
            display: none !important;
            content: none !important;
        }

        .hero-footer-quote {
            font-size: clamp(1rem, 2vw, 1.15rem);
            font-weight: 400; /* Plus de corps pour ressortir */
            font-style: italic;
            color: #ffffff; /* Blanc pur 100% opaque */
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); /* Détache de la photo d'arrière-plan */
            max-width: 650px;
            margin-top: 3rem;
            /* Placement en conclusion après le bouton */
            line-height: 1.7;
            letter-spacing: 0.5px;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-color);
            color: #fff;
            text-decoration: none;
            padding: 1.2rem 3.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 20px rgba(242, 92, 5, 0.4);
            border: 2px solid transparent;
        }

        .cta-button:hover {
            background: var(--primary-hover);
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 30px rgba(242, 92, 5, 0.6);
            color: #fff;
        }

        /* --- Disciplines Section --- */
        .disciplines {
            padding: 8rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
            background-color: var(--bg-dark);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-family: 'Kaushan Script', cursive;
            font-weight: 400;
            color: #fff;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
            position: relative;
            padding-bottom: 1rem;
        }

        .cards-grid {
            display: flex;
            flex-direction: column;
            gap: 4rem; /* Majestueux espacement vertical */
        }

        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 0;
            text-align: left;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            
            /* Passage au format pleine largeur */
            display: flex;
            flex-direction: row;
            align-items: stretch;
            height: 400px; /* Force TOUTES les cartes à faire exactement la même taille */
        }

        /* Alternance (quinconce) sur les cartes paires (qui donne un bel effet stylé) */
        .card:nth-child(even) {
            flex-direction: row-reverse;
        }

        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: inset 0 -50px 50px -20px var(--bg-dark);
            pointer-events: none;
            z-index: 1;
        }

        .card:hover {
            transform: translateY(-8px); /* Légère élévation car la carte est énorme */
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--primary-color); /* La bordure devient orange vif */
            /* Glow orange très puissant tout autour de la carte */
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 
                        0 0 20px rgba(242, 92, 5, 0.6),
                        0 0 40px rgba(242, 92, 5, 0.4),
                        0 0 60px rgba(242, 92, 5, 0.2);
        }

        .card-image {
            width: 40%;
            position: relative;
        }
        
        .card:nth-child(odd) .card-image {
            border-right: 3px solid var(--primary-color);
        }
        .card:nth-child(even) .card-image {
            border-left: 3px solid var(--primary-color);
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: brightness(0.85);
        }

        .card:hover .card-image img {
            transform: scale(1.05);
            filter: brightness(1);
        }

        .card-content {
            width: 60%;
            padding: 3.5rem 3rem; /* Légèrement ajusté pour donner plus de place au texte */
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-title {
            font-size: 2.2rem; /* Titre imposant */
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .card-desc {
            font-size: 1.15rem; /* Texte aéré et lisible */
            color: rgba(255, 255, 255, 0.75);
            font-weight: 300;
            line-height: 1.8;
        }

        @keyframes fadeInBody {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Logo */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-school {
                font-size: 1.3rem;
            }
        }
        /* --- BRAND NEW NAV SYSTEM (Dropdown & Burger) --- */
        .dropdown { position: relative; display: inline-block; }
        .dropbtn { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
        .dropdown-content { display: none; position: absolute; background-color: var(--bg-dark); min-width: 220px; box-shadow: 0px 10px 30px rgba(0,0,0,0.6); border-radius: 8px; border: 1px solid var(--card-border); z-index: 50; top: 100%; left: 0; padding: 0.5rem 0; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease; }
        .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: block; opacity: 1; transform: translateY(0); pointer-events: auto; }
        .dropdown-content a { display: block; padding: 0.8rem 1.5rem; color: var(--text-light) !important; text-decoration: none; font-size: 1rem; transition: background-color 0.3s, color 0.3s; }
        .dropdown-content a::after { display: none !important; }
        .dropdown-content a:hover, .dropdown-content a.active { background-color: rgba(242, 92, 5, 0.15) !important; color: var(--primary-color) !important; }
        
        .mobile-hero-title { display: none; } /* Caché sur PC, activé sur Mobile */
        
        .menu-toggle { display: none; }
        .burger-menu { 
            display: none; 
            cursor: pointer; 
            flex-direction: column; 
            gap: 6px; 
            z-index: 1000001; /* Doit être au-dessus de TOUT, même de l'overlay .nav-links */
            position: relative; 
            padding: 10px; /* Augmente la zone de clic sans changer le visuel */
            margin-right: -10px; /* Compense le padding pour l'alignement */
            pointer-events: auto !important;
        }
        .burger-menu span { display: block; width: 32px; height: 3px; background-color: #FFFFFF; border-radius: 3px; transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); }
        
        /* Animation Burger vers X */
        .burger-menu.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--primary-color); }
        .burger-menu.is-active span:nth-child(2) { opacity: 0; }
        .burger-menu.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--primary-color); }
        
        html.no-scroll, body.no-scroll { 
            overflow: hidden !important; 
            height: 100vh !important;
        }

        @media (max-width: 1100px) {
            .burger-menu { display: flex !important; }
            
            .nav-links { 
                display: flex !important; 
                position: fixed; 
                top: 0; 
                left: 100%; /* Caché à droite */
                width: 100vw; 
                height: 100vh; 
                z-index: 99999; 
                background-color: rgba(26, 23, 22, 0.95); /* Plus opaque pour la lisibilité */
                backdrop-filter: blur(15px); 
                -webkit-backdrop-filter: blur(15px); 
                flex-direction: column; 
                justify-content: center; 
                align-items: center !important; 
                padding: 1.5rem; 
                transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                overflow-y: auto; /* Permis le scroll si le menu est long */
                overscroll-behavior: none; /* Empêche le défilement de l'arrière-plan */
            }
            
            .nav-links.nav-open {
                left: 0;
            }

            .header-container {
                display: flex !important;
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                width: 100%;
            }

            .logo-img {
                max-width: 120px; /* Réduit pour laisser plus d'espace à droite */
            }
            .logo-container {
                max-width: 75%; /* Empêche le logo de manger toute la largeur et de bloquer le menu */
                overflow: hidden;
            }

            .logo-subtitle {
                display: block;
                font-size: 0.6rem; /* Légèrement plus petit pour faciliter l'affichage */
                white-space: normal; /* Autorise le retour à la ligne pour voir tout le texte */
                line-height: 1.2;
                max-width: 150px; /* Limite la largeur pour forcer un retour propre */
            }

            .logo-text {
                padding-left: 0.8rem;
            }

            .logo-title {
                font-size: 1rem; /* Plus compact */
            }
            .burger-menu {
                margin-top: 5px; /* Ajusté pour l'alignement avec le nouveau padding */
            }

            .desktop-menu { display: none !important; }
            
            .mobile-menu-layout { 
                display: flex !important; 
                flex-direction: column; 
                align-items: center;
                gap: 2rem; 
                width: 100%; 
            }
            
            .mobile-nav-list {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 1.8rem;
                text-align: center;
                width: 100%;
            }

            .mobile-nav-list a {
                font-family: 'Cinzel', serif;
                font-size: 1.8rem;
                font-weight: 700;
                color: #fff;
                text-decoration: none;
                text-transform: uppercase;
                letter-spacing: 2px;
                transition: color 0.3s;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0.5rem;
            }

            .mobile-nav-list a:hover, .mobile-nav-list a.active {
                color: var(--primary-color);
            }

            /* --- Mobile Dropdown / Submenu --- */
            .mobile-submenu {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out, margin-top 0.3s ease;
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                background: rgba(255, 255, 255, 0.03);
                border-radius: 8px;
            }

            .mobile-submenu.open {
                max-height: 500px; /* Assez grand pour les liens */
                margin-top: 1rem;
                padding: 1rem 0;
            }

            .mobile-submenu a {
                font-size: 1.2rem !important;
                font-weight: 500 !important;
                font-family: 'Outfit', sans-serif !important;
                color: rgba(255, 255, 255, 0.8) !important;
            }

            .mobile-nav-list li.has-submenu > a::after {
                content: '▾';
                font-size: 1.2rem;
                transition: transform 0.3s ease;
            }

            .mobile-nav-list li.has-submenu.open-dropdown > a::after {
                transform: rotate(180deg);
                color: var(--primary-color);
            }

            .mobile-nav-list li.has-submenu.open-dropdown > a {
                color: var(--primary-color);
            }

            /* Inscriptions Mobile : Retour au blanc standard (Cible uniquement le menu principal) */
            .mobile-nav-list > li:last-child > a {
                color: #fff !important;
                font-weight: 700;
                animation: none;
                transition: color 0.3s;
            }

            .mobile-nav-list > li:last-child > a:hover,
            .mobile-nav-list > li:last-child > a.active {
                color: var(--primary-color) !important;
            }

            .mobile-nav-footer {
                margin-top: 3rem;
                text-align: center;
                color: rgba(255, 255, 255, 0.5);
                font-size: 0.9rem;
            }
            
            .mobile-nav-footer .contact-line {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
                justify-content: center;
            }

            .mobile-nav-footer a {
                color: var(--primary-color);
                text-decoration: none;
                font-weight: 600;
            }
            .dropdown { width: 100%; text-align: center; }
            .dropbtn { justify-content: center; }
            .dropdown-content { position: static !important; display: none; width: 100%; box-shadow: none !important; background-color: transparent !important; border: none !important; padding: 0 !important; margin: 0 auto; opacity: 1 !important; transform: none !important; text-align: center; align-items: center; }
            .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: block !important; }
            .dropdown-content a { border-left: none; margin-bottom: 0.5rem; justify-content: center; text-align: center; }
            .dropdown-content a:hover { color: var(--primary-color) !important; background-color: transparent !important; }
        }

        /* --- Club Life Gallery Section --- */
        .club-life {
            padding: 5rem 2rem 8rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
            background-color: var(--bg-dark);
        }

        .gallery-masonry {
            columns: 3 320px;
            column-gap: 1.5rem;
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
            filter: brightness(0.6) grayscale(30%);
        }

        .gallery-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(242, 92, 5, 0.2);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
            filter: brightness(1.1) grayscale(0%);
        }
    
/* --- Schedule Grid --- */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 6rem;
        }

        .schedule-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 0;
            text-align: left;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
        }

        .schedule-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: inset 0 -50px 50px -20px var(--bg-dark);
            pointer-events: none;
            z-index: 1;
        }

        .schedule-card:hover {
            transform: translateY(-12px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.18);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(242, 92, 5, 0.15);
        }

        .schedule-card-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
            border-bottom: 3px solid var(--primary-color);
        }

        .schedule-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: brightness(0.85);
        }

        .schedule-card:hover .schedule-card-image img {
            transform: scale(1.08);
            filter: brightness(1);
        }

        .schedule-card-content {
            padding: 2.5rem 2.2rem;
            position: relative;
            z-index: 2;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .schedule-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: #fff;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 0.8rem;
        }

        .schedule-list {
            list-style: none;
            flex-grow: 1;
        }

        .schedule-list.columns-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0 2rem;
        }

        .schedule-list li {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
        }

        .schedule-list li::before {
            content: '•';
            color: var(--primary-color);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }

        .class-group {
            display: block;
            font-weight: 500;
            color: #fff;
            margin-bottom: 0.2rem;
        }

        .class-time {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
        }
        
        .start-date {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.5rem 1rem;
            background: rgba(242, 92, 5, 0.1);
            border-radius: 4px;
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            width: fit-content;
        }

        
/* --- Documents Section --- */
        .docs-section {
            background: var(--bg-darker);
            padding: 3rem 2rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.03);
            position: relative;
        }
        
        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .doc-category h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .doc-category h3::before {
            content: '';
            display: inline-block;
            width: 15px;
            height: 2px;
            background: var(--primary-color);
            margin-top: 0.65em;
            flex-shrink: 0;
        }

        .doc-list {
            list-style: none;
        }
        
        .doc-list li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }
        
        .doc-list li svg {
            color: var(--primary-color);
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            text-decoration: none;
            padding: 0.8rem 1.2rem;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .btn-download:hover {
            background: rgba(242, 92, 5, 0.15);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .btn-download svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        
/* --- Final CTA --- */
        .cta-section {
            text-align: center;
            padding: 2rem 0;
        }

        .cta-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: #fff;
            text-decoration: none;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4);
            border: 2px solid transparent;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(242, 92, 5, 0.6);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.04); /* Fond très légèrement blanc */
            backdrop-filter: blur(12px); /* Effet verre dépoli ("glass") */
            -webkit-backdrop-filter: blur(12px);
            color: #fff;
            text-decoration: none;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3); /* Bordure fine et élégante */
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.2); /* Reflet interne et ombre externe */
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            .nav-links {
                gap: 1.5rem;
            }
            .schedule-grid {
                grid-template-columns: 1fr;
            }
            .cta-buttons {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
            .download-buttons {
                flex-direction: column;
            }
            .btn-download {
                width: 100%;
                justify-content: center;
            }
        }
        
/* --- Pricing Section --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 6rem;
        }

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-top: 3px solid var(--primary-color);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.18);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(242, 92, 5, 0.1);
        }

        .pricing-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: #fff;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 1rem;
        }

        .pricing-card ul {
            list-style: none;
        }

        .pricing-card li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
            font-size: 1.05rem;
        }

        .pricing-card li:last-child {
            border-bottom: none;
        }
        
        .pricing-card li span:first-child {
            font-weight: 500;
        }

        .pricing-card a.price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.25rem;
            background: rgba(242, 92, 5, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .pricing-card a.price:hover {
            background: var(--primary-color);
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(242, 92, 5, 0.3);
        }
    
/* --- Page Hero --- */
        .page-hero {
            position: relative;
            min-height: 40vh; /* Réduit pour éviter trop d'espace vide au-dessus */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 11rem 2rem 4rem; /* Augmenté pour éviter que le titre ne touche le menu */
            /* Transition fluide du noir du header vers le fond de page */
            background: linear-gradient(to bottom, var(--bg-darker) 0%, var(--bg-dark) 100%);
            overflow: hidden;
        }

        /* Add a subtle martial arts background or abstract texture if available, else standard gradient */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(242, 92, 5, 0.15) 0%, transparent 60%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .page-title {
            font-family: 'Kaushan Script', cursive;
            font-size: 5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            margin-top: 0; /* Suppression de l'écartement excessif */
            /* Rayonnement orange très léger (presque subliminal) */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), /* Ombre noire légèrement plus franche pour la lisibilité */
                         0 0 10px rgba(242, 92, 5, 0.3), /* Halo très fin */
                         0 0 20px rgba(242, 92, 5, 0.1); /* Légère diffusion */
            line-height: 1.2;
        }

        .page-subtitle {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
        }

        
/* --- Glass Cards --- */
        .glass-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-left: 5px solid var(--primary-color); /* Ligne signature orange */
            border-radius: 20px;
            padding: 3.5rem;
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            /* Ombre portée + lueur interne pour l'effet épaisseur du verre */
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 
                        inset 0 1px 1px rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .glass-card:hover {
            transform: translateY(-8px);
            border-color: rgba(242, 92, 5, 0.4);
            background: rgba(255, 255, 255, 0.07);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .glass-card h2 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .glass-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .glass-card p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }
        
        .glass-card p:last-child {
            margin-bottom: 0;
        }

        .glass-card strong {
            color: #fff;
            font-weight: 700;
        }

        .glass-card ul {
            list-style-type: none;
            margin-left: 0;
            margin-bottom: 1.5rem;
        }

        .glass-card ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
            color: #e0e0e0;
        }

        .glass-card ul li::before {
            content: '•';
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.5rem;
            line-height: 1;
        }

        
/* --- Layout specific --- */
        .two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .two-columns .glass-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* Highlight Jamel */
        .hero-figure {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .hero-figure-content {
            flex: 1;
        }

        .highlight-text {
            font-size: 1.2rem;
            color: #fff;
            border-left: 3px solid var(--primary-color);
            padding-left: 1.2rem;
            margin: 1.5rem 0;
            font-style: italic;
            opacity: 0.9;
        }

        
/* Public Sections (Children/Adults) */
        .public-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin: 3rem 0;
        }

        .public-box {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .public-box h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        
/* CTA Actions */
        .cta-actions {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            box-shadow: 0 4px 15px rgba(242, 92, 5, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(242, 92, 5, 0.5);
        }

        .btn-secondary {
            background-color: transparent;
            color: #fff;
            border: 1px solid var(--card-border);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: #fff;
            transform: translateY(-2px);
        }

/* --- Container Base Layout --- */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

/* --- Container Section Spacing (Airy layout) --- */
        .container > * {
            margin-bottom: 5rem;
        }
        .container > *:last-child {
            margin-bottom: 0;
        }

/* --- Contact Box Styling --- */
        .contact-box {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-box:hover {
            transform: translateY(-5px);
            border-color: rgba(242, 92, 5, 0.3);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
        }

        .contact-box h2 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .contact-box p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .contact-phone {
            display: inline-block;
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            margin-top: 0.5rem;
            transition: color 0.3s;
        }

        .contact-phone:hover {
            color: var(--primary-color);
        }

/* --- Planning Layout & Calendar --- */
        .planning-layout {
            display: flex;
            flex-direction: column;
            gap: 5rem;
        }

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

        .action-box h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 2rem;
            letter-spacing: 1px;
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-calendar {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background-color: var(--primary-color);
            color: #fff;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }

        .btn-calendar:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(242, 92, 5, 0.4);
            color: #fff;
        }

        .btn-calendar svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .calendar-wrapper h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.8rem;
            display: inline-block;
        }

        .calendar-wrapper h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .calendar-container {
            border-radius: 12px;
            overflow: hidden;
            background: #fff; /* Pour assurer la lisibilité de l'iframe Google Calendar */
        }

/* --- Contact Page Styles --- */
        .intro-box {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-left: 5px solid var(--primary-color); /* Ligne signature orange */
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 
                        inset 0 1px 1px rgba(255, 255, 255, 0.1);
            margin-bottom: 4rem;
            color: #fff;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-form-wrapper {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .contact-form-wrapper h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 0.8rem;
            display: inline-block;
        }

        .contact-form-wrapper h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

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

        .form-label {
            display: block;
            color: #e0e0e0;
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.2rem;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(242, 92, 5, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .rgpd-group {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2.5rem;
            margin-top: 1rem;
        }

        .rgpd-checkbox {
            margin-top: 0.3rem;
            accent-color: var(--primary-color);
            cursor: pointer;
        }

        .rgpd-label {
            font-size: 0.85rem;
            color: #aaa;
            line-height: 1.5;
        }

        .mandatory-notice {
            display: block;
            text-align: center;
            font-size: 0.8rem;
            color: #888;
            margin-top: 1.5rem;
            font-style: italic;
        }

        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .info-card:hover {
            transform: translateX(5px);
            border-color: rgba(242, 92, 5, 0.3);
        }

        .info-icon {
            width: 45px;
            height: 45px;
            background-color: rgba(242, 92, 5, 0.10);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            border: 1px solid rgba(242, 92, 5, 0.2);
        }

        .info-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--primary-color);
        }

        .info-content h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.15rem;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
            letter-spacing: 1px;
        }

        .info-content p, .info-content a {
            color: #ccc;
            font-size: 0.95rem;
            margin: 0;
            text-decoration: none;
            line-height: 1.5;
            transition: color 0.3s;
        }
        
        .info-content a:hover {
            color: var(--primary-color);
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            height: 250px;
            flex-grow: 1; /* S'étire pour remplir l'espace vertical */
            min-height: 250px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        @media (max-width: 900px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }
            .map-container {
                height: 350px;
            }
        }

/* --- Global Sections Headers --- */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            margin-top: 5rem;
        }

        .section-header h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.3rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: #e0e0e0;
            font-size: 1.1rem;
        }

/* --- Pricing Cards --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 5rem;
        }
        
        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 50px rgba(242, 92, 5, 0.4); /* Effet d'éclairage fort (halo orange) */
        }

        .pricing-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: #fff;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            letter-spacing: 1px;
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-card li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }

        .pricing-card li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .pricing-card li:first-child {
            padding-top: 0;
        }

        .pricing-card li span:first-child {
            color: #f0f0f0;
            font-size: 1rem;
            font-weight: 500;
        }

        .pricing-card .price {
            background-color: rgba(242, 92, 5, 0.10);
            color: var(--primary-color);
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.2rem;
            min-width: 100px;
            text-align: center;
            border: 1px solid rgba(242, 92, 5, 0.2);
            letter-spacing: 1px;
        }

/* --- Documents Section --- */
        .docs-section {
            margin-bottom: 5rem;
        }

        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .doc-category {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .doc-category:hover {
            transform: translateY(-5px);
        }

        .doc-category h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .doc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .doc-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .doc-list li svg {
            width: 18px;
            height: 18px;
            fill: var(--primary-color); /* Icônes en orange pour la visibilité */
            flex-shrink: 0;
            margin-top: 2px;
        }

        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-download:hover {
            background: rgba(242, 92, 5, 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .btn-download svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

/* --- Footer --- */
        .footer {
            background-color: #1a1716;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 5rem 2rem 2rem;
            margin-top: 5rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 5rem;
        }

        .footer-logo {
            max-width: 90px;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4)); /* Fait légèrement ressortir le logo */
        }

        .footer-info h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-info p, .footer-links p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            font-family: 'Kaushan Script', cursive;
            font-size: clamp(1.4rem, 3.5vw, 2.2rem); /* Garde sa grande taille sur PC, mais s'adapte sur mobile */
            color: rgba(255, 255, 255, 0.75);
            margin-top: 1.5rem;
            line-height: 1.3; /* Améliore l'espacement si la phrase passe sur deux lignes */
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
        }
        
        .footer-bottom a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #fff;
        }

/* =========================================
   🌐 MOBILE & TABLET MASTER OVERRIDES
   ========================================= */

@media (max-width: 1024px) {
    /* Tablet specific */
    .cards-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .card, .card:nth-child(even) {
        flex-direction: column; /* Force le mode carte verticale sur tablette/mobile */
        min-height: auto;
        height: auto; /* Permet à la carte de s'allonger pour afficher tout le contenu */
    }
    .card-image {
        width: 100%;
        height: 250px;
    }
    .card:nth-child(odd) .card-image, 
    .card:nth-child(even) .card-image {
        border-right: none;
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
    }
    .card-content {
        width: 100%;
        padding: 2.5rem;
    }
    .two-columns {
        grid-template-columns: 1fr; /* Stack columns on tablet */
    }
    .gallery-masonry {
        columns: 2 300px;
    }
    .hero-title {
        font-size: 4rem;
        margin: 100px 0;
    }
}

@media (max-width: 1100px) {
    /* Mobile & Tablet specific */
    
    /* 0. Fix Overflow / Scroll Horizontal */
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .header {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 0.8rem 1.5rem !important;
        overflow: visible !important;
        background: rgba(26, 23, 22, 0.8) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }
    .header-container {
        width: 100%;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: row !important; /* Maintient Logo et Burger sur la même ligne */
        justify-content: space-between !important;
        align-items: center !important;
    }
    .logo-container {
        display: flex;
        flex-direction: row !important; /* Logo à gauche, texte à droite */
        align-items: center;
        text-align: left;
        gap: 0.5rem;
    }
    .logo-img {
        width: 60px;
        object-fit: contain; /* Correction affichage tronqué */
        overflow: visible;
    }
    .logo-text {
        border-left: 1px solid var(--primary-color);
        padding-left: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .logo-title {
        font-size: 0.98rem;
        display: block; 
        margin-bottom: 0;
        white-space: nowrap;
    }
    .logo-subtitle {
        font-size: 0.58rem;
        white-space: normal; /* Changé de nowrap pour voir toute la phrase */
        margin: 0;
        line-height: 1.2;
        max-width: 140px;
    }
    .burger-menu {
        position: relative;
        margin-top: 5px;
        display: flex !important;
        flex-direction: column;
        width: 38px; /* Un peu plus large pour la stabilité */
        z-index: 1000001 !important; /* Force la priorité absolue */
    }
    
    /* 2. Hero Fixes (Espacements verticaux) */
    .hero {
        min-height: auto; 
        padding-top: 8rem !important; /* Réduit l'espace vide en haut (au lieu de 14rem) */
        padding-bottom: 4rem; 
        background-attachment: scroll !important; /* Répare le bug iOS Safari où l'image de fond disparaît */
        background-position: center !important; /* Recentré pour mieux voir l'image entière */
    }
    
    .desktop-hero-title {
        display: none !important; /* Cache le titre PC sur mobile */
    }
    .mobile-hero-title {
        display: block !important;
        position: relative;
        width: 100%;
        text-align: center;
        min-height: 80px;
        font-family: 'Kaushan Script', cursive !important; /* Restauration Typographie Cursive */
        font-size: 1.8rem;
        margin: 0 auto !important;
        line-height: 1.4;
    }
    .mobile-hero-title .layer {
        position: absolute; /* Superposition Parfaite */
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        transition: opacity 0.3s ease;
    }
    .mobile-hero-title .layer-1 {
        color: white;
        animation: fadeOutLayer 6s infinite;
    }
    .mobile-hero-title .layer-2 {
        color: var(--primary-color);
        animation: fadeInLayer 6s infinite;
    }

    @keyframes fadeOutLayer {
        0%, 40% { opacity: 1; }
        50%, 90% { opacity: 0; }
        100% { opacity: 1; }
    }
    @keyframes fadeInLayer {
        0%, 40% { opacity: 0; }
        50%, 90% { opacity: 1; }
        100% { opacity: 0; }
    }
    .cta-button {
        margin-top: 3rem !important; /* Plus d'espace au-dessus du bouton Inscriptions */
        display: inline-block;
        padding: 0.8rem 2.2rem; /* Bouton moins gros sur mobile */
        font-size: 1rem;
    }

    .hero-footer-quote {
        font-size: 0.9rem !important; /* Plus petit */
        margin-top: 1.5rem !important; /* Plus proche du bouton */
        line-height: 1.4;
    }

    .page-title {
        font-size: 3rem !important; /* Non-accueil pages */
        margin-top: 0 !important;
    }
    .hero-content {
        margin-top: 1rem; /* Marges réduites */
    }
    .page-hero {
        padding-top: 12rem !important; /* Augmenté de 8rem pour un rendu beaucoup plus aéré */
        min-height: 45vh;
    }
    
    /* 3. Containers and Grids */
    .container {
        padding: 0 1.5rem 4rem !important;
    }
    .disciplines {
        padding-top: 2.5rem !important; /* Réduire l'énorme vide */
        padding-bottom: 2.5rem !important;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .club-life {
        padding-top: 1.5rem !important; /* Espace réduit entre dernière carte et club life */
        padding-bottom: 4rem !important;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .cards-grid {
        gap: 3.5rem; /* Espace sain conservé sur mobile */
    }
    .gallery-masonry {
        columns: 1; /* Pure stacking on mobile */
    }
    .two-columns, .public-grid, .schedule-grid, .pricing-grid, .docs-grid, .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* 4. Formatting tweaks */
    .glass-card {
        padding: 1.8rem;
    }
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .btn {
        width: 100%;
    }
    
    /* Fix weird paddings in Contact & Planning */
    .planning-table-container, .contact-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    /* Very Small Mobile */
    .logo-img { width: 140px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 2.2rem; }
    .footer-container { gap: 2rem; }
}

/* --- Grille Galerie IA --- */
.ai-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .ai-gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .ai-gallery-grid .ai-demo-card:last-child {
        grid-column: 1 / -1;
        max-width: 800px; /* Plus grande car elle est maintenant en dernier */
        margin: 0 auto;
    }
}

/* --- Effet Hover IA Galerie --- */
.ai-demo-card {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 30, 30, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ai-demo-card .hover-effect-container {
    position: relative;
    width: 100%; /* Largeur max dans la carte qui a déjà du padding */
    aspect-ratio: 1 / 1;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.ai-demo-card .hover-effect-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}

.ai-demo-card .hover-effect-container .img-ai {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: contain;
}

.ai-demo-card:hover .img-ai {
    opacity: 1;
}

.ai-demo-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.ai-demo-text .ai-badge {
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
