:root {
            --primary: #FF7A00;
            --primary-hover: #E66E00;
            --secondary: #1A2B48;
            --dark: #0F172A;
            --white: #ffffff;
            --bg: #F8FAFC;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: var(--bg); color: #333; line-height: 1.6; overflow-x: hidden; }
        html, body {width: 100%; overflow-x: hidden;}


        /*preload*/

        #preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-wrapper {
    text-align: center;
    width: 300px;
}

.brand-name h2 {
    letter-spacing: 3px;
    font-size: 1.4rem;
    animation: pulse-text 2s infinite ease-in-out;
}

.foundation-logo {
    font-size: 2.5rem;
    color: #0d6efd; /* La couleur de ton site */
}

/* La barre de progression moderne */
.modern-progress-container {
    width: 100%;
    height: 3px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin: 25px 0 10px 0;
    overflow: hidden;
    position: relative;
}

.modern-progress-bar {
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0d6efd, #00d4ff);
    border-radius: 10px;
    animation: progress-load 2.5s ease-in-out forwards;
}

.ls-2 { letter-spacing: 2px; font-size: 10px; }

/* Animations */
@keyframes pulse-text {
    0% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(0.98); }
}

@keyframes progress-load {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Class pour cacher le preloader proprement */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); /* Effet de rideau qui remonte */
}

        /* --- BARRE DE NAVIGATION (Modifiée pour l'Action) --- */
        #navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 25px 0;
            transition: var(--transition);
            background: transparent;
        }

        #navbar.scrolled {
            background: var(--secondary);
            padding: 15px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

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

        .logo {
            color: var(--white);
            font-weight: 800;
            font-size: 1.5rem;
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .logo span { color: var(--primary); }

        .nav-links { display: flex; gap: 35px; list-style: none; }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }
        .nav-links a::after {
            content: ''; position: absolute; width: 0; height: 2px;
            bottom: -5px; left: 0; background: var(--primary); transition: var(--transition);
        }
        .nav-links a:hover::after { width: 100%; }

        .btn-contact {
            border: 2px solid var(--primary);
            color: var(--white);
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-contact:hover { background: var(--primary); transform: scale(1.05); }

        /* --- MENU MOBILE (CORRIGÉ) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2100;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 992px) {

    .menu-toggle { 
        display: flex; 
    }

    .nav-links {
        display: flex; /* 👈 IMPORTANT */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: 0.4s ease;
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: white;
        font-size: 1.6rem;
    }

    .nav-btns {
        display: none;
    }
}


        /* --- HERO SECTION (Reformulée) --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        /* --- IMPACT STATS --- */
        .impact {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            max-width: 1000px;
            margin: -60px auto 0;
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            z-index: 10;
        }
        .impact h3 { font-size: 2.5rem; color: var(--primary); }
        .impact p { font-weight: 600; color: var(--secondary); font-size: 0.85rem; text-transform: uppercase; }

        @media (max-width: 768px) {
            .impact{
                display: flex;
                flex-direction: column;
            }
        }

        /* --- ACTIONS --- */
        .actions { padding: 120px 5%; text-align: center; }
        .actions h2 { font-size: 2.5rem; margin-bottom: 50px; color: var(--secondary); }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            background: var(--white);
            padding: 50px 35px;
            border-radius: 20px;
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }
        .card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--primary); }
        .card-icon { font-size: 3rem; margin-bottom: 20px; display: block; }

        /* --- Entête de Section --- */
.section-header { text-align: center; margin-bottom: 60px; padding: 0 20px; }
.subtitle { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; }
.group-title { 
    margin: 60px 0 30px; 
    font-size: 1.5rem; 
    color: var(--secondary); 
    border-left: 5px solid var(--primary); 
    padding-left: 15px;
    text-align: left;
}

/* --- Cartes Spécifiques --- */
.card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    height: 100%;
}

.card-badge {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 0.7rem;
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
}

/* Style "Alt" pour l'Inclusion Sociale */
.card.alt {
    background: #fdfdfd;
    border-bottom: 4px solid var(--secondary);
}

.card.alt:hover {
    border-bottom-color: var(--primary);
    background: var(--white);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}


/*vision*/
        .vision-section { padding: 100px 0; background: var(--white); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.vision-image { position: relative; border-radius: 20px; overflow: hidden; }
.vision-image img { width: 100%; height: auto; display: block; }

.experience-badge {
    position: absolute; bottom: 30px; right: 30px;
    background: var(--primary); color: white; padding: 20px;
    border-radius: 15px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.subtitle { color: var(--primary); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; }
.vision-content h2 { font-size: 2.5rem; color: var(--secondary); margin: 15px 0 25px; line-height: 1.2; }
.value-item { display: flex; gap: 15px; margin-top: 25px; }
.value-item i { color: var(--primary); font-size: 1.2rem; margin-top: 5px; }

@media (max-width: 768px) {
    .vision-grid { grid-template-columns: 1fr; }
    .vision-content { text-align: center; }
    .value-item { text-align: left; }
}

/* --- Style du Bouton Subvention dans Vision --- */
.vision-action {
    margin-top: 40px;
}

.btn-subvention {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
}

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

.btn-subvention:hover {
    background: var(--secondary); /* Change de couleur au survol pour le contraste */
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Ajustement mobile */
@media (max-width: 768px) {
    .btn-subvention {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 14px 20px;
    }
}


/* --- SECTION À PROPOS --- */
/* --- SECTION À PROPOS --- */
.about-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.5;
    margin: 20px 0;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mini grille de preuves */
.stats-mini-grid {
    display: flex;
    gap: 30px;
    margin: 35px 0;
    padding: 20px;
    background: #fdf7f2; /* Teinte très légère d'or/orange */
    border-radius: 12px;
}

.stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
}

.stat-item span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
}

/* Style de l'image et décoration */
.about-image-area {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-stack {
    position: relative;
    width: 85%;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 30px 30px 80px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;
}

.gold-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 15px solid #D4AF37; /* Couleur Or Royal */
    border-radius: 20px;
    z-index: 1;
}

.experience-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: var(--secondary);
    color: white;
    padding: 25px;
    border-radius: 15px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-biography {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper { grid-template-columns: 1fr; text-align: center; }
    .about-image-area { order: -1; justify-content: center; margin-bottom: 50px; }
    .gold-accent { display: none; }
    .experience-card { left: 0; right: 0; margin: 0 auto; width: fit-content; }
}


/* --- SECTION ACTUALITÉS PLEINE LARGEUR --- */

.news-section {
    padding: 100px 2%; /* On laisse juste 2% de marge sur les côtés */
    background-color: #f8fafc;
}

.news-grid {
    display: grid;
    /* On utilise auto-fill pour que les cartes s'étalent au maximum */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 25px;
    width: 100%; /* Occupe 100% de la largeur du parent */
    max-width: 100%; /* On enlève la limite des 1200px */
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Toutes les cartes auront la même hauteur par ligne */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* On force la carte FEATURED (Cancer) à prendre 2 colonnes seulement si l'écran est large */
@media (min-width: 1200px) {
    .news-card.featured {
        grid-column: span 2; 
        flex-direction: row;
    }
    .news-card.featured .news-image { width: 50%; height: auto; }
    .news-card.featured .news-body { width: 50%; }
}

.news-image {
    height: 250px; /* Hauteur fixe pour l'harmonie */
    width: 100%;
}

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

.news-body {
    padding: 25px;
    flex-grow: 1; /* Pousse le contenu pour remplir la carte */
    display: flex;
    flex-direction: column;
}

/* Supprimer les marges automatiques du container si tu en as un */
.nav-container {
    max-width: 100% !important; 
    width: 100% !important;
    padding: 0 20px;
}


/*actualité*/
.index-news-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.news-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes seulement */
    gap: 50px;
    margin-top: 50px;
}

.news-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
}

.news-item-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

/* Badge de date sur l'image */
.news-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #D4AF37;
    color: #000;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.news-date .day { font-size: 1.5rem; }
.news-date .month { font-size: 0.8rem; text-transform: uppercase; }

.news-item-content {
    padding: 30px 0; /* Pas de padding latéral pour un look magazine */
}

.news-tag {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.news-item-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-item-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.news-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 5px;
    transition: 0.3s;
}

.news-link:hover {
    gap: 15px;
    color: #D4AF37;
}

/* Mobile */
@media (max-width: 900px) {
    .news-dual-grid { grid-template-columns: 1fr; }
    .news-item-image { height: 250px; }
}

/*video section*/

.video-section-luxe {
    padding: 80px 0;
    background: #0a0a0a;
}

.gold-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 15px auto;
}

.video-container-fixed {
    width: 100%;
    height: 600px; /* Taille optimale pour 3 colonnes */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s ease;
}

.video-container-fixed:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-gold-small {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

/* section finale cta*/

.final-cta {
    position: relative;
    padding: 120px 0;
    background: #0a0a0a; /* Noir profond */
    background-image: url('https://images.pexels.com/photos/323705/pexels-photo-323705.jpeg?auto=compress&cs=tinysrgb&w=1600'); /* Texture urbaine/luxe */
    background-size: cover;
    background-attachment: fixed; /* Effet Parallaxe */
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-tagline {
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* Bouton Or Spécial */
.btn-gold-action {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-gold-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: #000;
}

@media (max-width: 768px) {
    .cta-content h2 { font-size: 2rem; }
    .btn-gold-action { width: 100%; justify-content: center; }
}


        /* --- SECTION ENGAGEMENT (Remplace le CTA de don) --- */
        .engagement {
            background: var(--secondary);
            color: white;
            padding: 100px 5%;
            text-align: center;
        }
        .engagement h2 { font-size: 2.2rem; margin-bottom: 20px; }
        .engagement p { max-width: 700px; margin: 0 auto 40px; opacity: 0.8; font-size: 1.1rem; }

        @media (max-width: 992px) {
            .hero-content h1 { font-size: 2.8rem; }
            /* .nav-links { display: none; } */
        }


        .main-footer {
    background-color: #050505; /* Noir presque pur */
    color: #a0a0a0;
    padding-top: 80px;
    border-top: 2px solid #D4AF37;
    font-size: 0.95rem;
}

.gold-text {
    color: #D4AF37;
    font-weight: 800;
    letter-spacing: 2px;
}

.main-footer h5 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 8px;
}

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

.footer-contact i {
    color: #D4AF37;
}

.footer-socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #D4AF37;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    font-size: 0.8rem;
    color: #666;
}

.btn-outline-gold {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: #D4AF37;
    color: #000;
}




    


        /* la page d'a propos*/

        /* HERO ABOUT */
.about-hero {
    height: 80vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gold-text {
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.about-hero h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif; /* Si tu l'as, sinon Serif */
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.official-badges {
    margin-top: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-flex;
    gap: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* BIO SECTION */
.bio-section { padding: 100px 0; background: #fff; }
.bio-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }

.founder-quote {
    font-size: 1.5rem;
    color: var(--secondary);
    font-style: italic;
    border-left: 5px solid #D4AF37;
    padding-left: 25px;
    margin: 40px 0;
    line-height: 1.4;
}

.bio-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}
.stat-card.gold { background: #D4AF37; color: white; }
.stat-card h3 { font-size: 2.5rem; margin-bottom: 5px; }

/* ENGAGEMENTS */
.deep-engagements { padding: 100px 0; background: #1a1a1a; color: white; }
.engagement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }

.eng-box {
    padding: 40px;
    background: #252525;
    border-radius: 20px;
    border: 1px solid #333;
    transition: 0.3s;
}
.eng-box:hover { border-color: #D4AF37; transform: translateY(-10px); }
.eng-box i { font-size: 2.5rem; color: #D4AF37; margin-bottom: 20px; display: block; }
.eng-box h3 { margin-bottom: 15px; }
.eng-box p { color: #aaa; font-size: 0.9rem; }

@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.5rem; }
    .bio-grid { grid-template-columns: 1fr; }
}


/* toutes les vides*/

/* --- HERO SECTION VIDEOS --- */
.video-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: #000 url('https://images.pexels.com/photos/323705/pexels-photo-323705.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

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

.hero-subtitle {
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 15px 0;
}

/* --- GRILLE DE VIDEOS --- */
.all-videos-section {
    background-color: #0f0f0f; /* Fond très sombre */
    padding: 80px 0;
}

.video-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-box {
    width: 100%;
    height: 600px;
    background: #000;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.video-info p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .video-hero { height: 40vh; }
    .video-box { height: 500px; }
}


/* la page de contact*/

/* --- HERO CONTACT --- */
.contact-hero {
    position: relative;
    height: 50vh;
    background: url('https://images.pexels.com/photos/33999/pexels-photo.jpg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 100px; /* Espace pour le menu desktop */
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 20px;
}

/* --- FIX MOBILE : MENU QUI COUVRE LE TEXTE --- */
@media (max-width: 768px) {
    .contact-hero {
        padding-top: 150px; /* On pousse le contenu vers le bas sur mobile */
        min-height: 60vh;
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2rem; /* On réduit un peu la taille du titre pour mobile */
    }

    .contact-form-wrapper {
        padding: 25px; /* Plus compact sur petit écran */
    }
}

/* Style des champs input */
.custom-input {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 6px;
}

.custom-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}


/* --- CARTE INFO --- */
.contact-info-card {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 15px;
    color: white;
    height: 100%;
    border-left: 4px solid #D4AF37;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-top: 5px;
}

.info-item h5 { font-weight: 700; margin-bottom: 5px; }
.info-item p { color: #aaa; margin-bottom: 0; }

/* --- FORMULAIRE --- */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.custom-input {
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #D4AF37;
    box-shadow: none;
    background: #fafafa;
}

.btn-gold-fill {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-gold-fill:hover {
    background: #000;
    color: #D4AF37;
}

.aid-info-card {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.aid-type {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.aid-type i {
    font-size: 2rem;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.aid-type h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #D4AF37;
}

.aid-type p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* faire une demande de don,   postuler*/

/* --- Header de Page --- */
.page-header-postuler {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.pexels.com/photos/6646918/pexels-photo-6646918.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    color: white;
    padding: 100px 0 60px;
}

.hero-sub { color: #D4AF37; font-weight: 500; }

/* --- Le Conteneur du Formulaire --- */
.application-form-section { background-color: #0a0a0a; }

.form-container-luxe {
    background: #121212;
    border-radius: 20px;
    border: 1px solid #222;
}

.gold-title-form {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

/* --- Fieldsets & Legends --- */
.custom-fieldset {
    border: 1px solid #333 !important;
    padding: 25px !important;
    border-radius: 12px;
}

.custom-legend {
    width: auto;
    float: none;
    padding: 0 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
}

/* --- Inputs --- */
.luxe-input {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 12px;
    transition: 0.3s;
}

.luxe-input:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* --- Boite des Frais --- */
.fees-box {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #D4AF37;
}

.fees-display {
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

.fees-hint { color: #888; font-size: 0.85rem; text-align: center; }

/* --- Checkbox & Submit --- */
.validation-checks { background: #1a1a1a; }
.gold-text { color: #D4AF37; }

.btn-submit-luxe {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-submit-luxe:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.btn-submit-luxe:hover:not(:disabled) {
    background: #fff;
    transform: scale(1.05);
}