/* ==========================================================================
   STADE NIORTAIS TENNIS - PREMIUM DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Design Tokens */
    --primary: #0A1628;
    --primary-light: #132240;
    --accent: #C8FF00;
    --accent-warm: #E8D44D;
    --white: #F5F5F0;
    --gray: #8A9BB5;
    --surface: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

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

::selection {
    background: var(--accent);
    color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

a {
    transition: all 0.3s ease;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor {
    width: 12px;
    height: 12px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    border: 1px solid var(--white);
    border-radius: 50%;
    transition: transform 0.2s ease;
    top: 0;
    left: 0;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    background: rgba(200, 255, 0, 0.08);
    border-radius: 50%;
    top: 0;
    left: 0;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
}

.preloader-logo-img {
    width: 120px;
    filter: brightness(10);
}

.preloader-text {
    margin-bottom: 2rem;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-inner {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
}

.preloader-counter {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1rem;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo-img {
    height: 45px;
    filter: brightness(10);
    transition: height 0.5s ease;
}

.navbar.scrolled .navbar-logo-img {
    height: 36px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.navbar-link:hover::after, .navbar-link.active::after {
    width: 100%;
}

.navbar-link:hover {
    color: var(--accent);
}

.navbar-cta {
    background: var(--accent);
    color: var(--primary);
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.navbar-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.3);
}

.navbar-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.navbar-burger.active .burger-line-1 {
    transform: rotate(45deg) translate(5px, 6px);
}
.navbar-burger.active .burger-line-2 {
    opacity: 0;
}
.navbar-burger.active .burger-line-3 {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
    position: relative;
}

.mobile-menu-link::before {
    content: attr(data-index);
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--gray);
    font-family: var(--font-body);
}

.mobile-menu-link:hover {
    color: var(--accent);
}

.mobile-menu-cta {
    margin-top: 2rem;
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
}
.btn-accent:hover {
    box-shadow: 0 0 40px rgba(200, 255, 0, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    display: flex;
    transition: transform 0.3s;
}
.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   COMMON SECTION STYLES
   ========================================================================== */
.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(200, 255, 0, 0.08);
    padding: 0.375rem 1rem;
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--accent);
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 1.5rem auto;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s;
}

.glass-card:hover {
    border-color: rgba(200, 255, 0, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-title-line.accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line-inner {
    width: 100%;
    height: 30%;
    background: var(--accent);
    position: absolute;
    top: -30%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: -30%; }
    100% { top: 100%; }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.about-text em {
    color: var(--accent);
    font-style: italic;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1.25rem;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.value-item:hover {
    border-color: rgba(200, 255, 0, 0.2);
    transform: translateY(-4px);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.value-item span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.about-quote {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 0;
}

.quote-text {
    font-style: italic;
}

/* ==========================================================================
   GALLERY SECTION (Horizontal Scroll)
   ========================================================================== */
.section-gallery {
    padding-bottom: 0;
}

.gallery-header {
    padding-bottom: 3rem;
}

.horizontal-section {
    overflow: hidden;
    position: relative;
}

.scroll-container {
    display: flex;
    width: fit-content;
    will-change: transform;
}

.panel {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.panel-bg {
    position: absolute;
    inset: 0;
}

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

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.4) 60%, rgba(10, 22, 40, 0.7) 100%);
}

.panel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    max-width: 600px;
}

.panel-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(200, 255, 0, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.panel-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.panel-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent);
}

.gallery-progress {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    z-index: 100;
}

.gallery-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
    transition: none;
}

/* ==========================================================================
   ÉCOLE DE TENNIS SECTION
   ========================================================================== */
.ecole-coach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.coach-image {
    border-radius: 20px;
    overflow: hidden;
}

.coach-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.coach-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.coach-title {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.coach-desc {
    color: var(--gray);
    line-height: 1.7;
}

.ecole-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.ecole-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.ecole-card.featured {
    border-color: rgba(200, 255, 0, 0.3);
    background: rgba(200, 255, 0, 0.04);
}

.ecole-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 255, 0, 0.2);
}

.ecole-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ecole-card-header {
    margin-bottom: 1.5rem;
}

.ecole-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent);
    margin-bottom: 0.75rem;
}

.ecole-card-age {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

.ecole-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ecole-card-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ecole-card-price {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.price-currency {
    font-size: 1.5rem;
}

.price-detail {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
    margin-top: 0.25rem;
}

/* STAGES BANNER */
.stages-banner {
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.06), rgba(200, 255, 0, 0.02));
    border: 1px solid rgba(200, 255, 0, 0.15);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stages-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.stages-desc {
    color: var(--gray);
    line-height: 1.7;
}

.stages-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.activity-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.activity-tag:hover {
    border-color: var(--accent);
    background: rgba(200, 255, 0, 0.08);
}

/* ==========================================================================
   TARIFS SECTION
   ========================================================================== */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.tarif-card {
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.tarif-card.featured {
    border-color: rgba(200, 255, 0, 0.3);
    transform: scale(1.05);
}

.tarif-card.featured:hover {
    transform: scale(1.08);
}

.tarif-card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 0.375rem 1.25rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tarif-card-header {
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.tarif-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
}

.tarif-card-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
}

.tarif-card-price {
    margin-bottom: 2rem;
}

.tarif-label {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
}

.tarif-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
}

.tarif-currency {
    font-size: 1.5rem;
    color: var(--accent);
}

.tarif-period {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
}

.tarif-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.tarif-card-features li {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tarif-card-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* SOUTIEN */
.soutien-section {
    text-align: center;
    padding-top: 2rem;
}

.soutien-title {
    margin-bottom: 1rem;
}

.soutien-desc {
    color: var(--gray);
    margin-bottom: 2rem;
}

.soutien-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.soutien-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.soutien-card:hover {
    transform: translateY(-4px);
}

.soutien-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.soutien-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.soutien-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.soutien-real {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ==========================================================================
   AGENDA SECTION
   ========================================================================== */
.agenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.horaires-card {
    padding: 2.5rem;
    border-radius: 24px;
}

.horaires-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.horaires-title svg {
    stroke: var(--accent);
}

.horaires-subtitle {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    display: block;
}

.horaires-list {
    display: flex;
    flex-direction: column;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.horaire-row:hover {
    padding-left: 0.5rem;
}

.horaire-row:last-child {
    border-bottom: none;
}

.horaire-day {
    font-weight: 500;
}

.horaire-time {
    color: var(--accent);
    font-weight: 600;
}

.horaire-row.closed .horaire-time {
    color: var(--gray);
    opacity: 0.5;
}

.events-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.events-title svg {
    stroke: var(--accent);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s;
}

.event-item:hover {
    transform: translateX(8px);
}

.event-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.event-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.event-desc {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ==========================================================================
   RÉSERVATIONS SECTION
   ========================================================================== */
.reservations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reservation-card {
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.reservation-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reservation-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent);
    margin-bottom: 1rem;
}

.reservation-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reservation-location {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

.reservation-details {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.reservation-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.reservation-detail svg {
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ==========================================================================
   ÉQUIPE SECTION
   ========================================================================== */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.equipe-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
}

.equipe-card:hover {
    transform: translateY(-6px);
}

.equipe-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.equipe-initial {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.equipe-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.375rem;
}

.equipe-role {
    font-size: 0.8rem;
    color: var(--accent);
}

.equipe-photos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.equipe-photo {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

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

.equipe-photo:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   PARTENAIRES SECTION
   ========================================================================== */
.partenaires-showcase {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.partenaires-img {
    width: 100%;
    border-radius: 20px;
}

.marquee-section {
    overflow: hidden;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    white-space: nowrap;
    color: var(--white);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--accent);
}

.marquee-separator {
    color: var(--accent);
    font-size: 0.75rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partenaire-cta {
    text-align: center;
    margin-top: 3rem;
}

.partenaire-cta p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.section-contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.contact-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(10, 22, 40, 0.92);
}

.section-contact .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 16px;
}

.contact-item-icon svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.contact-item-text p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-item-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-text a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200, 255, 0, 0.08);
}

.contact-form {
    padding: 2.5rem;
    border-radius: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 1.75rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-bottom-color: var(--accent);
}

.form-label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s;
}

.form-input:focus ~ .form-label, 
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -0.5rem;
    font-size: 0.7rem;
    color: var(--accent);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.form-input:focus ~ .form-line {
    width: 100%;
}

.form-select {
    cursor: pointer;
    appearance: none;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #060E1A;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    width: 80px;
    filter: brightness(10);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-link {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.375rem 0;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    color: var(--white);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid, .ecole-coach, .contact-grid, .agenda-grid, .reservations-grid {
        grid-template-columns: 1fr;
    }
    
    .ecole-cards, .tarifs-grid, .soutien-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipe-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .equipe-photos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .tarif-card.featured {
        transform: scale(1);
    }
    
    .stages-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none !important;
    }

    .navbar-menu {
        display: none;
    }
    
    .navbar-burger {
        display: block;
    }
    
    .hero-title-line {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .ecole-cards, .tarifs-grid, .soutien-grid {
        grid-template-columns: 1fr;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipe-photos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .panel-content {
        padding: 2rem;
    }
    
    .panel-title {
        font-size: 1.75rem;
    }
    
    .panel-number {
        font-size: 4rem;
    }
    
    .mobile-menu-link {
        font-size: 2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipe-photos {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 16px;
    }
}
