/* ========== VARIABLES & RESET ========== */
:root {
    --primary: #E8581C;
    --primary-dark: #C44A15;
    --secondary: #1B3A5C;
    --accent: #F4A623;
    --dark: #0D1B2A;
    --light: #F7F4F0;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D1D5DB;
    --gray-600: #6B7280;
    --gray-800: #1F2937;
    --green: #2D8A4E;
    --shadow-sm: 0 2px 20px rgba(0,0,0,.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.08);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ===== MAINTENANCE BADGE ===== */
.maintenance-badge{
    position: fixed;
    top: 80px;
    right: 20px;
    background: #F4A623;
    color: #1B3A5C;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    z-index: 9999;
}

/* ========== TOPBAR  ========== */
.topbar {
    background: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 0.85rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gray-600);
}

.topbar-contact i {
    margin-right: 6px;
    font-size: 0.8rem;
    color: var(--primary);
}

.topbar-contact a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

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

.topbar-separator {
    width: 4px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 50%;
}

.since-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.2;
}

.logo-text small {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--gray-600);
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(232, 88, 28, 0.06);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--secondary);
}

.nav-links.show {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0F2741 60%, var(--dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 88, 28, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 22px;
    max-width: 750px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 600px;
    opacity: 0.85;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ========== THANKS BANNER ========== */
.thanks-banner {
    background: linear-gradient(135deg, var(--accent), #FBBF24);
    color: var(--secondary);
    padding: 20px 30px;
    border-radius: 60px;
    margin: 30px 0 20px;
    text-align: center;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(232, 88, 28, 0.3);
    position: relative;
    overflow: hidden;
}

.thanks-banner::before,
.thanks-banner::after {
    content: '❤️';
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    top: 50%;
    transform: translateY(-50%);
}

.thanks-banner::before {
    left: 20px;
}

.thanks-banner::after {
    right: 20px;
}

.thanks-banner h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.thanks-banner p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 5px 0 0;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 88, 28, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ========== SECTIONS ========== */
.section {
    padding: 90px 0;
}

.section-gray {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header .overline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.6rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.about-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 18px;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-200);
    height: 420px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ========== ACTIVITIES ========== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.activity-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.35s;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.activity-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.activity-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.activity-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent), var(--green));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.timeline-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 34px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.timeline-tag {
    background: rgba(232, 88, 28, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.special-thanks-box {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-left: 4px solid var(--accent);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    margin-top: 14px;
    font-size: 0.9rem;
    color: #92400E;
}

/* ========== PARTNERS ========== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.partner-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.partner-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.partner-country {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========== SPORTS ========== */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.sport-card {
    background: linear-gradient(145deg, var(--secondary), #0F2741);
    color: var(--white);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.sport-card:nth-child(2) {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
}

.sport-card:nth-child(3) {
    background: linear-gradient(145deg, #059669, #047857);
}

.sport-card:nth-child(4) {
    background: linear-gradient(145deg, #7C3AED, #5B21B6);
}

.sport-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.sport-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.sport-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.sport-card p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ========== TEAM ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 18px;
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 18px;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ========== MODERN FOOTER ========== */
.footer {
    background: var(--dark);
    color: #94A3B8;
    padding: 70px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;  /* 3 colonnes de même espace */
    gap: 40px;
    margin-bottom: 50px;
}

/* Style pour toutes les colonnes */
.footer-col {
    width: 100%;
}

.footer-col:first-child p {
    margin: 20px 0;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

/* Styles pour les listes sans puces */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

/* Quick Links - sans puces ni icônes */
.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Contact - avec icônes mais sans puces */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary);
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li:last-child i {
    align-self: flex-start;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: center;  /* Centré car liens supprimés */
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* Responsive pour le footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;  /* 2 colonnes sur tablette */
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;  /* 1 colonne sur mobile */
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links.show {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav-links.show li {
        width: 100%;
    }
    
    .nav-links.show a {
        display: block;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    /* Topbar responsive */
    .topbar .container {
        flex-direction: column;
        gap: 8px;
    }
    
    .topbar-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .topbar-separator {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .thanks-banner h3 {
        font-size: 1.3rem;
    }
    
    .thanks-banner::before,
    .thanks-banner::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar-contact {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .topbar-contact span {
        font-size: 0.8rem;
    }
    
    .topbar-contact i {
        margin-right: 4px;
    }
    
    .topbar-separator {
        display: none;
    }
}
}