/* Variables CSS */
:root {
    /* Couleurs */
    --primary: #FF6600;
    --accent: #CC0000;
    --bg-main: #F8F8F8;
    --text-main: #333333;
    --text-secondary: #444444;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --ivory: #F5E0C2;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-soft: rgba(0, 0, 0, 0.08);
    
    /* Typographie */
    --font-headline: 'Montserrat', 'Oswald', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;
    
    /* Espacements */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    /* Bordures */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
}

/* CORRECTION CRITIQUE POUR LA QUALITÉ DES IMAGES */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Qualité optimisée pour toutes les images */
.president-img,
.feature-img,
.media-img,
.portrait-img,
.cnts-img,
.thumbnail-img,
.logo-img,
.hero-background-img {
    image-rendering: auto;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Images en plein écran (hero) */
.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.9);
    -webkit-filter: brightness(0.9);
}

/* Images dans la galerie */
#forumGallery .media-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: optimizeQuality;
}

#forumGallery .media-item:hover .media-img {
    transform: scale(1.05);
}

/* Images dans le modal d'agrandissement */
.modal-image {
    image-rendering: optimizeQuality;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Pour prévenir le flou sur les transformations */
.media-item, .thumbnail, .activity-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.narrow {
    max-width: 896px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--gray-100);
}

.topbar {
    width: 100%;
    background: var(--primary);
    color: var(--white);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

.phone-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .phone-link {
        font-size: 1.5rem;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    object-fit: cover;
    image-rendering: optimizeQuality;
}

.forum-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-headline);
}

.mousso-text {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-headline);
    color: var(--text-main);
}

.superscript {
    font-size: 0.875rem;
    vertical-align: super;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 2px var(--shadow);
    transition: filter 0.3s ease;
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-toggle {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-main);
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--gray-100);
    background: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
    .mobile-panel {
        display: none !important;
    }
}

.panel-content {
    padding: var(--space-md) var(--space-md) 1.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    display: block;
    font-size: 1rem;
    padding: var(--space-sm) 0;
}

.btn-primary.mobile {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
}

/* Main content */
.main-content {
    padding-top: 3rem;
}

/* ===========================================
   HERO SECTION AVEC SLIDER PROFESSIONNEL
=========================================== */
.hero-section {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.hero-slider {
    height: calc(100vh - 80px);
    min-height: 600px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-slider {
        height: 82vh;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Effet de zoom léger */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%);
    pointer-events: none;
    z-index: 3;
}

/* Points de navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary);
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.3);
    transform: scale(1.2);
}

/* Flèches de navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 4;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-arrow:hover {
    background: rgba(255, 102, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Contenu Hero (inchangé mais avec animations) */
.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    width: 100%;
    opacity: 0;
    animation: fadeInContent 1s ease 0.5s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .hero-content {
        width: 66.666667%;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        width: 50%;
    }
}

/* Animations pour les éléments */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Animation de typing pour le highlight */
.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--primary);
    animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
}

/* Tag avec animation */
.hero-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
    margin-bottom: var(--space-lg);
    animation: pulseTag 2s infinite;
}

@keyframes pulseTag {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #222222;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-highlight {
    display: inline-block;
    color: var(--primary);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 1s ease 3s forwards;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--black);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    max-width: 36rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--accent);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--space-md) 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(204, 0, 0, 0.4);
}

.btn-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-accent:hover::after {
    left: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-accent:hover .btn-icon {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--space-md) 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.hero-motto {
    font-size: 0.875rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    width: max-content;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
    animation: slideInRight 1s ease 1.2s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Wave separator */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    color: white;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
        justify-content: center;
    }
    
    .typing-text {
        animation: none;
        border-right: none;
        white-space: normal;
    }
    
    .hero-motto {
        margin: 0 auto;
    }
}

/* Animation pour le défilement automatique */
@keyframes slideTransition {
    0%, 33% {
        opacity: 1;
    }
    34%, 66% {
        opacity: 0;
    }
    67%, 100% {
        opacity: 0;
    }
}

/* Sections communes */
.section {
    padding: 4rem 0;
    border-top: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.elles-section {
    background: rgba(255, 255, 255, 0.8);
}

.grid-container {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 65ch;
}

.quote {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--ivory);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.quote-text {
    font-weight: 600;
}

.quote-author {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--space-sm);
}

.button-group {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.btn-primary.small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    border: 1px solid var(--gray-200);
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gray-50);
}

.btn-outline.small {
    padding: var(--space-sm) var(--space-md);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.portrait-img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 2px var(--shadow);
    image-rendering: optimizeQuality;
}

/* Marche section */
.marche-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .marche-section {
        padding: 5rem 0;
    }
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: #555555;
}

.info-item {
    padding-left: var(--space-sm);
}

.item-content {
    display: flex;
    gap: var(--space-md);
}

.item-bullet {
    flex: none;
    width: 0.375rem;
    background: var(--primary);
    border-radius: var(--radius-full);
    margin-top: 0.375rem;
}

.item-text {
    flex: 1;
}

.image-content {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .image-content {
        margin-top: 0;
    }
}

.image-wrapper {
    width: 100%;
    height: auto;
    min-height: 16rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-soft);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .image-wrapper {
        height: 18rem;
    }
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: optimizeQuality;
}

.image-caption {
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
}

.map-container {
    margin-top: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--gray-100);
}

.map-title {
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.map-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.map-placeholder {
    margin-top: var(--space-md);
    height: 12rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px dashed var(--gray-200);
}

/* Don section */
.don-section {
    background: rgba(204, 0, 0, 0.05);
    border-top: 1px solid var(--gray-100);
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .flex-container {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xl);
    }
}

.text-half {
    width: 100%;
}

@media (min-width: 768px) {
    .text-half {
        width: 50%;
    }
}

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

.image-half {
    width: 100%;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .image-half {
        width: 50%;
        margin-top: 0;
    }
}

/* Programme section */
.programme-section {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.center {
    text-align: center;
}

.programme-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    list-style: none;
}

.programme-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.time-badge {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.programme-content {
    flex: 1;
}

.programme-time-title {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.programme-description {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Partenaires section */
.partenaires-section {
    background: var(--ivory);
    border-top: 1px solid var(--gray-100);
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--space-sm);
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
    margin-top: var(--space-xl);
}

@media (min-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 2px var(--shadow);
}

.center-button {
    margin-top: var(--space-xl);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    margin-top: var(--space-xl);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-md);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}
.footer .copyright a {
  color: #ff4a17;
  transition: 0.3s;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.text-center{
    text-align: center !important;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        align-items: center;
    }
}

.footer-info {
    font-size: 0.875rem;
    color: #555555;
}

.footer-tagline {
    margin-top: var(--space-sm);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    font-size: 0.875rem;
}

.footer-link {
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-items {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: box-shadow 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 1px 2px var(--shadow);
}

.contact-icon {
    width: 1rem;
    height: 1rem;
}

.contact-text {
    line-height: 1;
    white-space: nowrap;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--gray-100);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-md);
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.modal-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 42rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 25px -5px var(--shadow);
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.modal-close {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: var(--gray-100);
}

.modal-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-input, .form-select {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    font-family: inherit;
    font-size: 1rem;
    transition: box-shadow 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.18);
    border-radius: var(--radius-sm);
}

.form-check {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.checkbox {
    width: 1rem;
    height: 1rem;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #555555;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 50;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 15px -3px var(--shadow);
    display: none;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s ease;
}

.back-to-top:hover {
    filter: brightness(0.95);
}

.back-to-top.show {
    display: flex;
}

.back-to-top .arrow-up {
    font-size: 13px !important;
    color: #ffffff !important;
    font-weight: bold;
}

/* Focus styles */
:focus {
    outline: none;
}

.focus-ring:focus {
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.18);
    border-radius: var(--radius-sm);
}

/* Animation pour les sections */
.section {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PRELOADER STYLES */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6600 0%, #FF8C42 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease;
}

.preloader-logo {
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

.preloader-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    image-rendering: optimizeQuality;
}

.preloader-text {
    margin-bottom: 30px;
}

.preloader-title {
    font-family: var(--font-headline);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.preloader-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 102, 0, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.preloader-message {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Délai d'affichage du contenu principal */
.main-content {
    opacity: 0;
    animation: fadeInContent 0.5s ease 0.8s forwards;
}

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

/* Nouveaux styles pour la version ONG */
.activity-card {
    text-align: center;
}

.activity-title {
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.partner-name {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-tagline {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* GALERIE D'IMAGES SUPPLEMENTAIRES */
.medias-supplementaires {
    margin-top: var(--space-xl);
    padding: var(--space-xl) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.medias-container {
    display: grid;
    gap: var(--space-lg);
}

.medias-section {
    margin-bottom: var(--space-2xl);
}

.medias-title {
    color: var(--primary);
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: var(--space-sm);
}

.medias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-md);
}

.media-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 150px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: optimizeQuality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.media-video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: var(--black);
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: var(--space-sm);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-caption {
    opacity: 1;
}

/* Modal pour images agrandies */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-modal.active {
    display: flex;
}

.image-modal .modal-image {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--radius-md);
    background: #000;
    image-rendering: optimizeQuality;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

/* Événement Lakota */
.lakota-event {
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    text-align: center;
    background: linear-gradient(135deg, #FF6600 0%, #FF8C42 100%);
}

.lakota-title {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.lakota-date {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
}

/* Correction partenaires */
.partners-grid {
    grid-template-columns: repeat(2, 1fr);
}

.partner-logo {
    flex-direction: column;
    text-align: center;
}

.partner-name {
    display: none;
}

@media (min-width: 768px) {
    .medias-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .media-item, .media-video {
        height: 180px;
    }
}

/* CORRECTIONS AMÉLIORÉES POUR LAKOTA */
.lakota-event {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #FF6600 0%, #FF8C42 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* 2. Animation plus attrayante */
@keyframes shine {
    0% {
        background-position: -100px;
    }
    100% {
        background-position: 200px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes colorChange {
    0%, 100% {
        background: linear-gradient(135deg, #FF6600 0%, #FF8C42 100%);
    }
    50% {
        background: linear-gradient(135deg, #FF8C42 0%, #FF6600 100%);
    }
}

.lakota-event {
    animation: colorChange 8s infinite alternate;
    position: relative;
}

/* Effet de brillance */
.lakota-event::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

/* 3. Titre avec animation */
.lakota-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* 4. Date avec animation */
.lakota-date {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite 0.5s;
}

/* 5. Texte descriptif */
.lakota-event p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 10px;
}

/* 6. Conteneur image plus compact */
.lakota-event .medias-grid {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.lakota-event .media-item {
    width: 280px;
    height: 420px;
    max-width: 90%;
    animation: float 4s ease-in-out infinite 1s;
}

.lakota-event .media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid white;
    image-rendering: optimizeQuality;
}

/* 7. Bouton d'alerte stylisé */
.lakota-alert-btn {
    background: white;
    color: #FF6600;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }
}

.lakota-alert-btn:hover {
    background: #FF6600;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255,102,0,0.4);
}

.lakota-alert-btn i {
    font-size: 1.2rem;
}

/* 8. Étoiles décoratives */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Position des étoiles */
.star:nth-child(1) { top: 20px; left: 20px; width: 10px; height: 10px; animation-delay: 0s; }
.star:nth-child(2) { top: 40px; right: 30px; width: 8px; height: 8px; animation-delay: 0.5s; }
.star:nth-child(3) { bottom: 60px; left: 15%; width: 12px; height: 12px; animation-delay: 1s; }
.star:nth-child(4) { bottom: 30px; right: 15%; width: 6px; height: 6px; animation-delay: 1.5s; }
.star:nth-child(5) { top: 60px; left: 40%; width: 9px; height: 9px; animation-delay: 2s; }

/* 9. Responsive */
@media (max-width: 768px) {
    .lakota-event {
        padding: 20px 15px;
    }
    
    .lakota-title {
        font-size: 1.6rem;
    }
    
    .lakota-date {
        font-size: 1.2rem;
        padding: 8px 20px;
    }
    
    .lakota-event p {
        font-size: 1rem;
        padding: 12px;
    }
    
    .lakota-event .media-item {
        width: 250px;
        height: 375px;
    }
    
    .lakota-alert-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* 10. Supprime l'animation pulse globale sur .lakota-event */
.lakota-event {
    animation: colorChange 8s infinite alternate;
}

/* Styles pour les modaux supplémentaires */
.lakota-modal .modal-content,
.guest-modal .modal-content {
    animation: slideIn 0.3s ease-out;
}

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

/* Champs de textearea */
textarea.form-input {
    min-height: 100px;
    resize: vertical;
    font-family: var(--font-body);
}

/* Style spécifique pour le formulaire invitéé */
.guest-modal .form-group textarea {
    min-height: 120px;
}

/* Styles pour les modaux avec scroll */
.modal-form-container {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-100);
}

.modal-form-container::-webkit-scrollbar {
    width: 6px;
}

.modal-form-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.modal-form-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 3px;
}

/* Assure que le modal reste dans l'écran */
@media (max-height: 700px) {
    .modal-content {
        max-height: 90vh !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .modal-form-container {
        max-height: calc(90vh - 140px) !important;
    }
}

/* Pour mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95% !important;
        max-height: 90vh !important;
        margin: 10px auto !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .modal-form-container {
        padding: 0 15px !important;
    }
    
    .form-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .form-actions button {
        width: 100% !important;
    }
}

/* PAGINATION STYLES */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0 30px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px var(--shadow-soft);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--accent);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background: var(--gray-200);
    color: var(--text-lighter);
    cursor: not-allowed;
    opacity: 0.6;
}

.page-indicator {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
}

.page-indicator span {
    color: var(--primary);
    font-weight: 700;
}

/* Page numbers */
.page-numbers {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px var(--shadow-soft);
}

.page-number:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.page-number.active {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.page-number.dots {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: default;
    width: 20px;
}

.page-number.dots:hover {
    background: transparent;
    color: var(--text-main);
    transform: none;
}

/* Image counter */
.image-counter {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    grid-column: 1 / -1;
    padding: 10px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

/* Pour la galerie spécifique au forum */
.forum-gallery-section .medias-grid {
    min-height: 500px;
}

/* Loading state */
.gallery-loading {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        gap: 15px;
        padding: 15px 10px;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-numbers {
        gap: 5px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .medias-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    }
}

/* Section galerie forum spécifique */
#forum-gallery {
    scroll-margin-top: 100px;
}

#forum-gallery .pagination-controls {
    position: sticky;
    top: 80px;
    z-index: 10;
    margin-top: 0;
}

/* Empêcher le comportement de lien sur les boutons de pagination */
.pagination-btn,
.page-number {
    cursor: pointer;
    user-select: none;
}

.pagination-btn:focus,
.page-number:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===========================================
   SECTION À PROPOS - COLONNES ÉGALES
=========================================== */
.apropos-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0;
}

.apropos-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* Conteneur principal en 2 colonnes égales */
.main-content.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* COLONNE GAUCHE */
.left-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    height: 100%;
}

/* Introduction dans colonne gauche */
.biography-header {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.biography-header .section-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    text-align: left;
}

.biography-header .section-subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.biography-intro .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

/* Photo et citation dans colonne gauche */
.president-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    flex: 1;
}

.president-portrait-wrapper {
    width: 100%;
}

.president-portrait-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 15px;
}

.president-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
    image-rendering: optimizeQuality;
}

.president-img:hover {
    transform: scale(1.02);
}

/* Badge */
.president-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
    margin-top: var(--space-md);
}

/* Citation */
.president-quote {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--primary);
    padding: var(--space-xl);
    margin: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* COLONNE DROITE */
.right-column.biography-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    height: 100%;
}

.biography-section {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Décoration du cadre */
.portrait-decoration {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.decoration-line {
    width: 100px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Badge icon */
.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-text {
    flex: 1;
}

.badge-text strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.badge-text span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Titres des sections */
.section-subheading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 102, 0, 0.2);
}

.section-subheading i {
    font-size: 1.1rem;
}

/* Timeline académique */
.timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.timeline-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-md);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

/* Grille carrière */
.career-grid {
    display: grid;
    gap: var(--space-md);
}

.career-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--white);
    padding: var(--space-md);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.career-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.career-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.career-item h4 {
    color: var(--text-main);
    margin-bottom: 5px;
    font-size: 1rem;
}

.career-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Engagement */
.engagement-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
    padding: var(--space-lg);
    border-radius: 15px;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.engagement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.engagement-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.engagement-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Grille média */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.media-badge {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.media-item h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 5px;
}

.media-item p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Citation */
.president-quote .quote-text {
    font-size: 1.0rem;
    font-style: italic;
    line-height: 1.2;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.president-quote .quote-author {
    display: flex;
    flex-direction: column;
}

.president-quote .quote-author strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.president-quote .quote-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* HAUTEUR ÉGALE DES COLONNES */
@media (min-width: 992px) {
    .main-content.grid-container {
        align-items: stretch;
    }
    
    .left-column, 
    .right-column {
        min-height: calc(100vh - 200px);
        display: flex;
        flex-direction: column;
    }
    
    .president-container {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .president-quote {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .main-content.grid-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .left-column {
        order: -1;
    }
}

@media (max-width: 767px) {
    .president-portrait-wrapper {
        max-width: 100%;
    }
    
    .president-badge {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-year {
        width: 100%;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-item:last-child {
        grid-column: span 2;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .engagement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .engagement-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .president-portrait-frame {
        padding: 10px;
    }
    
    .president-badge {
        padding: 15px;
    }
    
    .biography-header,
    .biography-section {
        padding: var(--space-lg);
    }
    
    .president-quote {
        padding: var(--space-lg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.biography-header,
.president-portrait-frame,
.president-quote,
.biography-section {
    animation: fadeInUp 0.8s ease-out;
}

.biography-header {
    animation-delay: 0.2s;
}

.president-portrait-frame {
    animation-delay: 0.4s;
}

.president-quote {
    animation-delay: 0.5s;
}

.biography-section {
    animation-delay: 0.6s;
}

/* ===========================================
   SECTION CARAVANE ET COLLECTE
=========================================== */
.caravane-section {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.grid-container.reverse {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-container.reverse {
        grid-template-columns: 1fr 1fr;
        direction: rtl;
    }
    
    .grid-container.reverse > .text-content {
        direction: ltr;
    }
    
    .grid-container.reverse > .image-content {
        direction: ltr;
    }
}

.mission-grid {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.mission-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.mission-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.mission-content {
    flex: 1;
}

.mission-content h3 {
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

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

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    text-align: center;
}

.stat-item {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
    font-family: var(--font-headline);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.caravane-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.main-caravane-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.caravane-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.thumbnail {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.thumbnail-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    image-rendering: optimizeQuality;
}

.thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px;
    font-size: 0.75rem;
    text-align: center;
}

.partnership-badge {
    margin-top: var(--space-xl);
    text-align: center;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-full);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-main);
}

.badge-content i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* Animation pour les statistiques */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 1s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-container.reverse {
        direction: ltr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .president-caption {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
}

/* CORRECTION POUR LES IMAGES DU FORUM - REMPLISSAGE UNIFORME */
#forumGallery .medias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

#forumGallery .media-item {
    height: 320px !important;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
    background: var(--white);
    position: relative;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

#forumGallery .media-img {
    width: 100%;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center center;
    transition: transform 0.3s ease;
    image-rendering: optimizeQuality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Pour les images très verticales, ajustez le positionnement */
#forumGallery .media-img.portrait {
    object-position: top center;
}

/* Pour les images très horizontales (paysages) */
#forumGallery .media-img.landscape {
    object-position: center 25%;
}

#forumGallery .media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Effet au survol - montre le caption */
#forumGallery .media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#forumGallery .media-item:hover .media-img {
    transform: scale(1.05);
}

#forumGallery .media-item:hover .media-caption {
    opacity: 1;
}

/* Overlay pour améliorer la lisibilité */
#forumGallery .media-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#forumGallery .media-item:hover::before {
    opacity: 1;
}

/* Alternative: Si vous préférez toujours voir le caption */
#forumGallery .media-caption.always-visible {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    padding: 12px;
}

/* Modal pour images agrandies */
.image-modal.active {
    display: flex;
    background: rgba(0, 0, 0, 0.95);
}

.image-modal .modal-image {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #000;
    image-rendering: optimizeQuality;
}

.image-modal .modal-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    #forumGallery .medias-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    #forumGallery .media-item {
        height: 280px !important;
    }
    
    #forumGallery .media-img {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    #forumGallery .medias-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    #forumGallery .media-item {
        height: 260px !important;
    }
    
    #forumGallery .media-img {
        height: 180px !important;
    }
}

/* ===========================================
   EFFETS DE SURVOL (HOVER) POUR TOUS LES BOUTONS
=========================================== */

/* Effet hover pour bouton principal (orange) */
.btn-accent, .btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-accent:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* Effet de vague au survol */
.btn-accent::after, .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-accent:hover::after, .btn-primary:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Effet hover pour bouton secondaire (contour) */
.btn-outline, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Effet de remplissage au survol pour bouton contour */
.btn-outline::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

/* Effet spécifique pour les boutons small */
.btn-accent.small:hover, .btn-primary.small:hover,
.btn-outline.small:hover, .btn-secondary.small:hover {
    transform: translateY(-2px);
}

/* Curseur pointer pour tous les boutons */
button, .btn-accent, .btn-primary, .btn-outline, .btn-secondary,
.pagination-btn, .page-number, .modal-close,
.menu-toggle, .back-to-top {
    cursor: pointer !important;
}

/* Animation pour le bouton "PARTICIPER À LA CARAVANE" spécifiquement */
.button-group .btn-accent {
    animation: pulse-accent 2s infinite;
}

@keyframes pulse-accent {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(204, 0, 0, 0.6);
    }
}

/* Animation pour le bouton "VENIR AU PROCHAIN DON" spécifiquement */
.button-group .btn-outline {
    border-width: 2px;
    transition: all 0.3s ease;
}

.button-group .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(255, 102, 0, 0.05);
}

/* Effet au survol pour les icônes dans les boutons */
.btn-accent:hover i, .btn-primary:hover i,
.btn-outline:hover i, .btn-secondary:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .button-group button {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   STYLES POUR LES MODALS SCROLLABLES
=========================================== */
.modal-form-container {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-100);
}

.modal-form-container::-webkit-scrollbar {
    width: 8px;
}

.modal-form-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

.modal-form-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
    border: 2px solid var(--gray-100);
}

.modal-form-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent);
}

/* Ajustement pour petits écrans */
@media (max-height: 700px) {
    .modal-content {
        max-height: 90vh !important;
        margin: 10px !important;
    }
    
    .modal-form-container {
        max-height: calc(90vh - 140px) !important;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95% !important;
        max-height: 90vh !important;
        margin: 10px auto !important;
    }
}

/* ===========================================
   AMÉLIORATION DES CHECKBOXES
=========================================== */
.availability-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
}

.checkbox-label:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

/* Style pour les checkboxes dans les formulaires */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
}

.form-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-check .checkbox-label {
    background: none;
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-check .checkbox-label:hover {
    background: none;
    color: var(--primary);
}

/* ===========================================
   SECTION CONVENTION CNTS
=========================================== */
.cnts-convention-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.cnts-title {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cnts-title i {
    color: var(--primary);
}

.cnts-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cnts-gallery {
    margin-top: 1rem;
}

.cnts-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.cnts-image-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cnts-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cnts-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    image-rendering: optimizeQuality;
}

.cnts-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px;
    font-size: 0.75rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cnts-image-item:hover .cnts-caption {
    opacity: 1;
}

/* Badge partenariat amélioré */
.partnership-badge {
    margin-top: 2rem;
    text-align: center;
}

/* Responsive pour la grille CNTS */
@media (max-width: 768px) {
    .cnts-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cnts-img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .cnts-images-grid {
        grid-template-columns: 1fr;
    }
    
    .cnts-img {
        height: 150px;
    }
    
    .cnts-convention-section {
        padding: 1rem;
    }
}

/* Animation pour la section CNTS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cnts-convention-section {
    animation: fadeInUp 0.8s ease-out;
}

/* ===========================================
   ÉTIQUETTE "ESTIMATION 2025" POUR LES STATISTIQUES
=========================================== */

.estimation-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 102, 0, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Ajustement pour garder le même espacement */
.stat-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.stat-number {
    margin-top: 5px;
    margin-bottom: 8px;
}

/* Pour mobile : garder horizontal mais ajuster */
@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .estimation-label {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
}

/* ===========================================
   BOUTONS "VOIR PLUS" ÉLÉGANTS
=========================================== */

.see-more-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    position: relative;
}

.see-more-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.see-more-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.see-more-btn:hover::before {
    left: 0;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

.see-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Effet de pulse subtil */
@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }
}

.see-more-btn {
    animation: subtle-pulse 2s infinite;
}

/* Version alternative avec fond coloré */
.see-more-btn.accent {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.see-more-btn.accent:hover {
    background: transparent;
    color: var(--accent);
}

.see-more-btn.accent::before {
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .see-more-container {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .see-more-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: auto;
    }
}

/* ===========================================
   SECTION MAN - NOUVELLE SECTION ACTION
=========================================== */
.man-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.man-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.man-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.man-section .container {
  position: relative;
  z-index: 1;
}

/* Badge spécial */
.man-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
  }
}

.man-badge i {
  font-size: 1.2rem;
}

.man-section .section-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.man-section .section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Contenu principal */
.man-content {
  margin-top: 40px;
  gap: 40px;
}

/* Date de la rencontre */
.meeting-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 102, 0, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.meeting-date i {
  font-size: 1.1rem;
}

/* Sous-titre */
.man-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-main);
  line-height: 1.3;
}

.man-subtitle small {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 5px;
}

/* Citation */
.man-quote {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  position: relative;
  border-left: 4px solid var(--primary);
}

.man-quote i {
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.5;
  margin-bottom: 15px;
}

.man-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 15px;
}

.man-quote footer {
  display: flex;
  flex-direction: column;
}

.man-quote footer strong {
  color: var(--primary);
  font-size: 1.2rem;
}

.man-quote footer span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Objectifs */
.man-objectives {
  margin: 35px 0;
}

.man-objectives h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.objectives-list {
  list-style: none;
  padding: 0;
}

.objectives-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.objectives-list li:last-child {
  border-bottom: none;
}

.objectives-list li i {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.objectives-list li span {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.objectives-list li strong {
  color: var(--primary);
}

/* Engagements */
.man-commitments {
  display: grid;
  gap: 20px;
  margin: 35px 0;
}

.commitment-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.commitment-text {
  flex: 1;
}

.commitment-text strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.commitment-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Boutons d'action */
.man-buttons {
  margin-top: 40px;
}

.man-buttons .btn-accent,
.man-buttons .btn-outline {
  padding: 15px 30px;
  font-size: 1rem;
}

/* Images */
.man-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.man-main-image:hover {
  transform: scale(1.02);
}

.man-main-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  image-rendering: optimizeQuality;
}

.man-main-image .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.man-main-image .image-caption i {
  color: var(--primary);
}

/* Grille d'images */
.man-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.man-image-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.man-image-item:hover {
  transform: translateY(-5px);
}

.man-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.man-image-item:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.man-image-item:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  color: white;
  font-size: 1.5rem;
  background: rgba(255, 102, 0, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* Mini carte */
.man-map {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.man-map h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.map-mini {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  background: rgba(255, 102, 0, 0.05);
  padding: 12px;
  border-radius: 8px;
}

.map-note i {
  color: var(--primary);
}

/* Section remerciement */
.man-thanks {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.man-thanks::before {
  content: '❤️';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 150px;
  opacity: 0.1;
  transform: rotate(15deg);
}

.thanks-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-content i {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.thanks-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.signature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signature strong {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.signature span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .man-content {
    grid-template-columns: 1fr !important;
  }
  
  .man-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .man-section {
    padding: 3rem 0;
  }
  
  .man-badge {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .man-subtitle {
    font-size: 1.3rem;
  }
  
  .man-quote {
    padding: 20px;
  }
  
  .man-quote p {
    font-size: 1rem;
  }
  
  .commitment-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }
  
  .commitment-icon {
    margin-bottom: 10px;
  }
  
  .man-images-grid {
    grid-template-columns: 1fr;
  }
  
  .man-main-image img {
    height: 250px;
  }
  
  .man-buttons {
    flex-direction: column;
  }
  
  .man-thanks {
    padding: 30px 20px;
  }
  
  .thanks-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .meeting-date {
    font-size: 0.85rem;
    padding: 6px 15px;
  }
  
  .objectives-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .map-note {
    flex-direction: column;
    text-align: center;
  }
}

/* ===========================================
   POPUP VIDÉO - VERSION CENTRÉE AVEC GRANDE VIDÉO
=========================================== */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-popup.show {
  display: flex;
  opacity: 1;
}

.video-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh; /* Limite la hauteur à 90% de l'écran */
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 102, 0, 0.2);
  
  /* Centrage vertical du contenu */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-popup.show .video-popup-content {
  transform: scale(1);
  opacity: 1;
}

/* Bouton fermeture */
.video-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-popup-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* En-tête */
.video-popup-header {
  padding: 20px 25px 10px;
  text-align: center;
  flex-shrink: 0; /* Empêche la compression */
}

.video-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-popup-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.video-popup-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Lecteur vidéo - GRAND et CENTRÉ */
.video-popup-player {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: 10px 0;
  flex-shrink: 0; /* Empêche la compression */
}

.popup-video {
  width: 100%;
  height: 340px; /* Encore plus grand ! */
  border-radius: 16px;
  background: #000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  object-fit: cover; /* Remplit tout l'espace */
  border: 2px solid rgba(255, 102, 0, 0.3);
}

/* Contrôles personnalisés */
.video-custom-controls {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 340px; /* Même hauteur que la vidéo */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  pointer-events: none;
}

.video-popup-player:hover .video-custom-controls {
  opacity: 1;
}

.video-play-btn {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.video-play-btn:hover {
  transform: scale(1.15);
}

.video-play-btn i {
  margin-left: 5px;
}

/* Barre de progression */
.video-progress-container {
  margin-top: 8px;
  padding: 0 20px;
  flex-shrink: 0;
}

.video-progress-bar {
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.video-time-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 4px;
  padding: 0 20px;
  flex-shrink: 0;
}

.extrait-badge {
  background: rgba(255, 102, 0, 0.2);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: auto;
  border: 1px solid rgba(255, 102, 0, 0.3);
}

/* Pied de page */
.video-popup-footer {
  padding: 10px 20px 20px;
  flex-shrink: 0;
}

.video-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  border-left: 3px solid var(--primary);
}

.video-quote i {
  color: var(--primary);
  font-size: 0.9rem;
}

.video-quote p {
  color: white;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.video-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

/* Bouton TikTok */
.btn-tiktok {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  justify-content: center;
}

.btn-tiktok:hover {
  background: linear-gradient(45deg, #000, #1a1a1a);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.btn-tiktok i {
  font-size: 1.2rem;
  color: #00f2ef;
}

/* Bouton rappel */
.btn-remind {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: white;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.btn-remind:hover {
  background: rgba(255, 102, 0, 0.15);
  border-color: var(--primary);
}

.btn-remind i {
  color: var(--primary);
}

.video-hashtags {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  text-align: center;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .video-popup-content {
    width: 95%;
    max-width: 600px;
  }
  
  .video-popup-header {
    padding: 15px 15px 5px;
  }
  
  .video-popup-title {
    font-size: 1.3rem;
  }
  
  .popup-video {
    height: 280px;
  }
  
  .video-custom-controls {
    height: 280px;
  }
  
  .video-play-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  
  .video-actions {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .popup-video {
    height: 220px;
  }
  
  .video-custom-controls {
    height: 220px;
  }
  
  .video-popup-title {
    font-size: 1.1rem;
  }
  
  .video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
}

/* ===========================================
   SECTION DON SOLIDAIRE - SOUBRÉ TABASKI 2026
=========================================== */

.don-soubre-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.don-soubre-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.don-soubre-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.don-soubre-section .container {
  position: relative;
  z-index: 1;
}

/* Badge */
.soubre-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
  animation: badgeGlow 2s infinite;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5);
  }
}

.soubre-badge i {
  font-size: 1.2rem;
}

.section-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Contenu principal en 2 colonnes */
.soubre-content {
  margin-top: 40px;
  gap: 40px;
}

/* Carte donateur */
.donor-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  color: white;
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.donor-card:hover {
  transform: translateY(-5px);
}

.donor-avatar {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.donor-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.donor-info p {
  opacity: 0.9;
  margin-bottom: 8px;
}

.donor-role {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
}

/* Message du DG */
.donor-message {
  background: white;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  position: relative;
}

.donor-message i {
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.5;
  margin-bottom: 15px;
  display: block;
}

.donor-message p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 15px;
}

.message-signature {
  text-align: right;
  color: var(--primary);
  font-size: 0.9rem;
}

/* Statistiques du don */
.don-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.don-stat-item {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.don-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.don-stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 1.3rem;
}

.don-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}

.don-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Détails du don */
.don-details {
  background: white;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.don-details h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.details-list {
  list-style: none;
  padding: 0;
}

.details-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.details-list li:last-child {
  border-bottom: none;
}

.details-list li i {
  width: 30px;
  color: var(--primary);
  font-size: 1rem;
}

.details-list li strong {
  color: var(--accent);
}

/* Citation présidente */
.presidente-thanks {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 102, 0, 0.1);
  text-align: center;
}

.presidente-thanks i {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.presidente-thanks p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 15px;
}

.presidente-signature {
  font-size: 0.85rem;
}

.presidente-signature strong {
  color: var(--primary);
  display: block;
}

/* Bouton TikTok */
.soubre-button-container {
  text-align: center;
  margin-top: 10px;
}

.soubre-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
}

.soubre-btn:hover {
  background: linear-gradient(45deg, #1a1a1a, #000);
  transform: translateY(-3px);
}

.soubre-btn i {
  font-size: 1.2rem;
}

/* Galerie d'images */
.soubre-gallery {
  margin-top: 0;
}

.soubre-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.soubre-main-image:hover {
  transform: scale(1.02);
}

.soubre-main-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.soubre-main-image .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 15px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Grille d'images secondaires */
.soubre-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.soubre-image-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.soubre-image-item:hover {
  transform: translateY(-5px);
}

.soubre-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.soubre-image-item:hover img {
  transform: scale(1.1);
}

.soubre-image-item .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.soubre-image-item:hover .image-overlay {
  opacity: 1;
}

.soubre-image-item .image-overlay i {
  color: white;
  font-size: 1.5rem;
  background: rgba(255, 102, 0, 0.8);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* Vidéos TikTok */
.soubre-videos {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.soubre-videos h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.tiktok-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tiktok-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tiktok-link:hover {
  background: #000;
  color: white;
  transform: translateX(5px);
}

.tiktok-link i:first-child {
  color: #00f2ef;
  font-size: 1.2rem;
}

.tiktok-link span {
  flex: 1;
  font-size: 0.9rem;
}

.tiktok-link i:last-child {
  opacity: 0.5;
  font-size: 0.8rem;
}

.tiktok-link:hover i:last-child {
  opacity: 1;
}

/* Carte localisation */
.soubre-map {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.soubre-map h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.soubre-map .map-mini {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.soubre-map .map-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  background: rgba(255, 102, 0, 0.05);
  padding: 10px;
  border-radius: 8px;
}

.soubre-map .map-note i {
  color: var(--primary);
}

/* Citation finale */
.soubre-final-quote {
  margin-top: 50px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 20px;
  color: white;
}

.quote-content i {
  font-size: 2rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.quote-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================================
   RESPONSIVE
=========================================== */
@media (max-width: 992px) {
  .soubre-content {
    grid-template-columns: 1fr !important;
  }
  
  .don-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .don-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .soubre-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .donor-card {
    flex-direction: column;
    text-align: center;
  }
  
  .details-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .soubre-main-image img {
    height: 200px;
  }
  
  .tiktok-link {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .soubre-images-grid {
    grid-template-columns: 1fr;
  }
  
  .soubre-badge {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
  
  .don-stat-number {
    font-size: 1.2rem;
  }
  
  .quote-content p {
    font-size: 0.95rem;
  }
  
  .donor-info h3 {
    font-size: 1.2rem;
  }
  
  .soubre-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}