/* ===========================
   VARIABLES CSS COMPLÈTES
   Dead Or Alive Paintball
   =========================== */

:root {
    /* ===== COULEURS PRINCIPALES ===== */
    --primary-color: #d64545;
    --primary-dark: #b33939;
    --primary-light: #e86b6b;
    
    /* ===== BACKGROUNDS ===== */
    --dark-bg: #1a202e;
    --dark-secondary: #2d3748;
    --dark-tertiary: #b7cefc;
    --light-bg: #f7fafc;
    --white-bg: #ffffff;
    --blue-dark: #396bb3;
    --blue-light: #73a4ec;
    
    /* ===== TEXTES ===== */
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;
    --text-red:     #d64545;
    
    /* ===== BORDURES ===== */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    --border-dark: #a0aec0;
    
    /* ===== OMBRES ===== */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* ===== ESPACEMENTS ===== */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 3rem;     /* 48px */
    --spacing-2xl: 4rem;    /* 64px */
    
    /* ===== BORDER RADIUS ===== */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* ===== TAILLES DE POLICE ===== */
    --font-xs: 0.75rem;     /* 12px */
    --font-sm: 0.875rem;    /* 14px */
    --font-base: 1rem;      /* 16px */
    --font-lg: 1.125rem;    /* 18px */
    --font-xl: 1.25rem;     /* 20px */
    --font-2xl: 1.5rem;     /* 24px */
    --font-3xl: 2rem;       /* 32px */
    --font-4xl: 2.5rem;     /* 40px */
    --font-5xl: 3rem;       /* 48px */
    
    /* ===== Z-INDEX ===== */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal-backdrop: 5000;
    --z-modal: 10000;
    --z-notification: 15000;
    --z-tooltip: 20000;
    
    /* ===== BREAKPOINTS (pour JS) ===== */
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-wide: 1280px;
}

/* ===========================
   ANIMATIONS SCROLL REVEAL
   =========================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Variations directionnelles */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===========================
   ÉTATS DE FOCUS
   Pour accessibilité clavier
   =========================== */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===========================
   BOUTON RETOUR EN HAUT
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===========================
   NOTIFICATIONS SYSTÈME
   =========================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-notification);
    animation: slideInRight 0.4s ease;
    max-width: 400px;
    border-left: 4px solid var(--primary-color);
}

.notification-success {
    border-left-color: #48bb78;
}

.notification-error {
    border-left-color: #f56565;
}

.notification-warning {
    border-left-color: #ed8936;
}

.notification-info {
    border-left-color: #4299e1;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.notification-close:hover {
    color: var(--primary-color);
}

/* Animations notifications */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* ===========================
   UTILITAIRES
   =========================== */

/* Screen readers only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Cacher visuellement mais garder accessible */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Centrage flex rapide */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
/* ===========================
   RESET ET STYLES DE BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: white;
    overflow-x: hidden;
}

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

/* ===========================
   HEADER ET NAVIGATION
   =========================== */
.header {
    background: var(--dark-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    position: relative;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

/* Bouton Adhérer */
.btn-header {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-header:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(214, 69, 69, 0.4);
}

/* Menu toggle mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   SECTION HERO
   =========================== */
.hero {
    background: var(--dark-bg);
    padding: 200px 20px 120px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image de fond avec opacité */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
}

/* Overlay dégradé */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 69, 69, 0.6) 0%, rgba(26, 32, 46, 0.90) 65%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Règles spécifiques pour chaque HERO */

section#accueil {
    background-image: url('../images/DAO_paintball_toulouse_hero_accueil.jpg');
    background-size: cover;
    background-position: 0px -320px!important;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

section#about {
    background-image: url('../images/DAO_paintball_toulouse_hero_about.jpg');
    background-size: cover;
    background-position: 0px -320px!important;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

section#initiation {
    background-image: url('../images/DAO_paintball_toulouse_hero_about.jpg');
    background-size: cover;
    background-position: 0px -320px!important;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

section#devenir-membre {
    background-image: url('../images/DAO_paintball_toulouse_hero_accueil.jpg');
    background-size: cover;
    background-position: 0px -320px!important;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

section#tournoi-hero {
    background-image: url('../images/DAO_paintball_toulouse_hero_accueil.jpg');
    background-size: cover;
    background-position: 0px -320px!important;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

section#contact-hero {
    background-image: url('../images/DAO_paintball_toulouse_hero_accueil.jpg');
    background-size: cover;
    background-position: 0px -320px!important;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

/* ===========================
   BOUTONS
   =========================== */
.btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    cursor: pointer;
    margin-top: 10px !important;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 69, 69, 0.4);
}

.btn-secondary {
    background: var(--blue-dark) !important;
    color: white !important;
    border: 2px solid var(--blue-dark) !important;
}

.btn-secondary:hover {
    background: var(--blue-light)!important;
    border-color: var(--blue-light)!important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(142 169 227);
    margin-top: 10px !important;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-accent {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-accent:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 69, 69, 0.3);
}

/* ===========================
   SECTIONS COMMUNES
   =========================== */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-light {
    background: white;
}

.section-dark {
    background: var(--dark-secondary);
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
	font-size: 1.2em;
	color: var(--text-light);
	max-width: 600px;
	margin: 20px auto 0;
	line-height: 1.8;
	font-weight: 500;
	font-style: italic;
}

.section-dark h2 
{
    color: var(--text-red);
}

p.subtitles
{
    color: var(--text-red) !important;
}

/* ===========================
   GRILLE DE FEATURES (Pourquoi choisir)
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.feature-item h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===========================
   GRILLE DE CARTES (Services)
   =========================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-content {
	padding: 35px 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-wrap: nowrap;
	align-content: space-around;
	justify-content: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-content h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-content .btn,
.card-content .btn-accent {
    margin-top: auto;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

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

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===========================
   SECTION RÉSERVATION
   =========================== */
.reservation-section {
    background: var(--dark-tertiary);
    padding: 80px 20px;
}

.reservation-content {
    max-width: 900px;
    margin: 0 auto;
}

.reservation-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.reservation-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.reservation-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reservation-step {
    text-align: center;
}

.reservation-step .checkmark {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 10px;
}

.reservation-step p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===========================
   SECTION ASSOCIATION/VISION
   =========================== */
.association-section {
    background: white;
    padding: 100px 20px;
}

.association-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.association-content h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.association-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.association-content .subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
    margin-top: 30px;
}

.association-content .intro-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 30px;
}

.association-content .intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.association-content .highlight-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 50px;
}

/* Boîte Vision */
.vision-box {
    background: var(--dark-tertiary);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    padding: 40px 50px;
    margin: 50px auto;
    max-width: 800px;
    text-align: left;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}

.vision-box h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    align-items: center;
    gap: 15px;
}

.vision-box h3::before {
    content: '🎯';
    font-size: 2rem;
}

.vision-box p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

/* ===========================
   SECTION OUVERTURE EXTÉRIEUR
   =========================== */
.partners-section {
    background: var(--dark-tertiary);
    padding: 100px 20px;
}

.partners-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partners-content p {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.partners-content p:last-child {
    margin-bottom: 0;
}

.partners-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* CTA Box */
.cta-box {
    background: white;
    border-radius: 15px;
    padding: 50px;
    margin: 60px auto 0;
    max-width: 700px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.cta-box h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===========================
   TÉMOIGNAGES
   =========================== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   SECTION TARIFS / PRICING
   =========================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start; /* Alignement en haut pour compenser le badge */
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ajout pour forcer la même hauteur */
}

/* Padding-top supplémentaire pour les cartes sans badge */
.pricing-card:not(.featured) {
    padding-top: 55px; /* Compense la hauteur du badge (30px) + son positionnement */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(214, 69, 69, 0.4);
    white-space: nowrap;
}

.pricing-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.pricing-price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
}

.pricing-period {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 10px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    flex-grow: 1; /* Pousse le bouton vers le bas */
}

.pricing-features li {
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Bouton aligné en bas */
.pricing-card .btn,
.pricing-card a[class*="btn"] {
    margin-top: auto; /* Pousse le bouton tout en bas */
}
/* Variables supplémentaires */
:root {
    --text-muted: #718096;
    --light-bg: #f7fafc;
}

/* ===========================
   SECTION DÉROULEMENT SESSION
   =========================== */
/* Ciblage spécifique de la section avec les styles inline */
#deroulement .container > div > div {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===========================
   GRILLE 2x2 - IMAGE À GAUCHE + TEXTE À DROITE
   =========================== */
.session-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 180px 1fr; /* Image fixe 180px + texte flexible */
    min-height: 200px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.step-card-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

.step-card-content {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px; /* Déplacé à droite pour être visible */
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(214, 69, 69, 0.4);
}

.step-card-content h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 55px; /* Espace pour le numéro */
}

.step-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Images et contenu pour les étapes avec structure actuelle */
.img-deroulement-session {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.description-deroulement-session h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.description-deroulement-session p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Variables pour gradient */
:root {
    --gradient-primary: linear-gradient(135deg, #d64545, #b33939);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--dark-bg);
    color: #e2e8f0;
    padding: 80px 20px 30px;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .header .container {
        padding: 12px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        left: -100%;
        top: 0;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-bg);
        transition: left 0.4s ease;
        padding-top: 100px;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 18px 30px;
        width: 100%;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .btn-header {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    /* Hero mobile */
    .hero {
        padding: 160px 20px 80px;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 13px 30px;
        font-size: 0.95rem;
    }
    
    /* Sections mobile */
    .section {
        padding: 70px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    /* Grilles mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .btn-header {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 140px 15px 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .section {
        padding: 50px 15px;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .card-content {
        padding: 30px 25px;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Réservation mobile */
    .reservation-content h2 {
        font-size: 2rem;
    }
    
    .reservation-steps {
        gap: 40px;
    }
    
    /* Association mobile */
    .association-content h2 {
        font-size: 2.2rem;
    }
    
    .vision-box {
        padding: 30px 25px;
    }
    
    /* CTA Box mobile */
    .cta-box {
        padding: 35px 25px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Témoignages mobile */
    .testimonial-item {
        padding: 30px 25px;
    }
    
    .testimonial-quote {
        font-size: 1.05rem;
    }
    
    /* Session steps mobile - CORRIGÉ */
    .session-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .step-card {
        grid-template-columns: 1fr !important; /* Image au-dessus sur mobile */
        min-height: auto !important;
    }
    
    .step-card-image {
        height: 200px !important;
        min-height: 200px !important;
    }
    
    .step-card-content {
        padding: 25px !important;
    }
    
    .step-number {
        top: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    .step-card-content h3 {
        font-size: 1.1rem !important;
        padding-right: 50px !important;
    }
    
    .img-deroulement-session {
        width: 100%;
        height: 120px;
    }
    
    #deroulement .card-content {
        flex-direction: column !important;
        text-align: center;
    }
    
    #deroulement .card-content > div:first-child {
        margin: 0 auto 20px !important;
    }
}
/* Styles pour les icônes sociales */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(214, 69, 69, 0.4);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* ===========================
   GRILLE 2x2 RESPONSIVE
   =========================== */

/* Responsive pour tablettes */
@media (max-width: 768px) {
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="max-width: 1200px"] {
        max-width: 600px !important;
    }
}