    
  /* Import Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

    
    :root {
        --primary: #050505;
        --accent: #d4af37;
        /* Doré discret pour le prestige */
        --light: #f4f4f4;
        --white: #ffffff;
    }

:root {
    --primary: #050505;
    --accent: #d4af37;
    --light: #f4f4f4;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main); /* Appliqué à tout le site */
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    line-height: 1.6;
}
    /* Navbar */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
        background: var(--white);
        position: fixed;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo {
        font-weight: 800;
        font-size: 1.4rem;
    }

    .logo span {
        color: var(--accent);
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li a {
        margin: 0 15px;
        text-decoration: none;
        color: #333;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .btn-participate {
        background: var(--primary);
        color: var(--white);
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
    }

    /* Hero */
    /* Hero */
/* Hero - Ajustement de la taille */
.hero {
    height: 60vh; /* Réduit la hauteur pour supprimer l'excès d'espace */
    background: url('pp.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 60px; /* Espace pour ne pas être caché par la navbar */
}

/* Overlay - Couverture totale */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Couvre 100% de la section hero désormais */
    background: rgba(0, 0, 0, 0.5); /* Filtre sombre pour la lisibilité */
}

/* Hero Content - Alignement */
.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ajustement du titre pour la nouvelle taille */
.hero h1 {
    font-size: 3rem; /* Légèrement plus petit pour équilibrer avec la hauteur */
    margin: 15px 0;
    line-height: 1.2;
    font-weight: 700;
}
    .hero-content {
        z-index: 1;
    }

    .hero h1 {
        font-size: 4rem;
        margin: 20px 0;
        line-height: 1.1;
    }

    .badge {
        background: var(--accent);
        padding: 15px 15px;
        border-radius: 20px;
        font-size: 1.9rem;
    }

    /* Countdown */
    #countdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .time-unit {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 15px;
        border-radius: 8px;
        min-width: 80px;
    }

    .time-unit span {
        font-size: 2rem;
        font-weight: bold;
        display: block;
    }

    .time-unit p {
        font-size: 0.8rem;
        text-transform: uppercase;
        opacity: 0.8;
    }

    /* Sections */
    .section {
        padding: 100px 10%;
    }

    .bg-light {
        background: var(--light);
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .grid-programmes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top:
            40px;
    }

    .prog-card {
        background: var(--white);
        padding: 30px;
        text-align: center;
        border-radius: 8px;
        transition: 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .prog-card i {
        font-size: 2rem;
        color: var(--accent);
        margin-bottom: 15px;
    }

    .prog-card:hover {
        transform: translateY(-10px);
        background: var(--primary);
        color: white;
    }

    .split-view {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
 /* Section Générale - Élégante */
.section-elegant {
    padding: 40px 5%;
    background: #f8f8f8; /* Fond légèrement cassé pour la douceur */
    color: #333;
    overflow: hidden; /* Pour gérer les animations de révélation */
}

.elegant-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-elegant {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary); /* Noir profond */
    position: relative;
}

.section-title-elegant::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent); /* Ligne dorée sous le titre */
    margin: 10px auto 0;
}

.section-intro-elegant {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

/* Grille des Cartes d'Information */
.elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.card-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.21; /* Image de fond très discrète */
    z-index: 0;
    transition: transform 0.5s ease-out;
}

.info-card:hover .card-bg-image {
    transform: scale(1.05);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-card p, .info-card ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c2c2c;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-card ul li i {
    color: #28a745; /* Vert pour les checks */
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Animation de révélation au scroll (nécessite JS) */
.reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grille des programmes */
.grid-programmes-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Style des cartes */
.prog-card-v2 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.prog-card-v2:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Gestion des images */
.prog-img-container {
    position: relative;
    height: 200px;
    width: 100%;
}

.prog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prog-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Infos sous l'image */
.prog-info {
    padding: 25px;
    text-align: center;
}

.prog-info i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.prog-info h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.prog-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.super-footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 80px 10% 20px;
    font-family: 'Inter', sans-serif;
    border-top: 2px solid #d4af37;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

/* Colonne Info */
.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-logo span { color: #d4af37; }

.info p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partner-mention {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Liens */
.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: #d4af37;
}

.links ul { list-style: none; padding: 0; }
.links ul li { margin-bottom: 15px; }
.links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}
.links ul li a:hover { color: #d4af37; padding-left: 5px; }

/* Formulaire Newsletter */
.input-group {
    display: flex;
    margin-top: 20px;
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.input-group button {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

.input-group button:hover { background: #fff; }

.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover { background: #d4af37; color: #000; transform: translateY(-3px); }

/* Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: #666;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablettes (moins de 992px) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .elegant-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
    }
    .section {
        padding: 60px 5%;
    }
}

/* Mobiles (moins de 768px) */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 15px 5%;
        flex-direction: column;
        gap: 10px;
        position: relative; /* Débloquer le fixed si nécessaire sur petit écran */
    }
    
    .nav-links {
        display: none; /* Cache les liens simples, prévoir un menu burger ou liste verticale */
    }

    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 100px 20px 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Compte à rebours Mobile */
    #countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .time-unit {
        min-width: 70px;
        padding: 10px;
    }

    /* Sections & Grilles */
    .section-title-elegant {
        font-size: 2rem;
    }

    .info-card {
        padding: 25px;
    }

    .grid-programmes-v2 {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-group button {
        border-radius: 4px;
        padding: 12px;
    }
}

/* Forcer Montserrat sur les titres spécifiques */
h1, h2, h3, h4, .logo, .btn-participate, .badge, .time-unit span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Amélioration visuelle du bouton participier */
.btn-participate {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-participate:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.05);
}

/* Correction Image Hero pour éviter l'écrasement */
.hero {
    background-attachment: scroll; /* Plus stable sur mobile que 'fixed' */
}

/* --- Styles de base Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 2000;
}

/* --- RESPONSIVE TABLETTE & MOBILE (< 992px) --- */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Caché par défaut sur mobile */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Hauteur de la nav */
        left: 0;
        width: 100%;
        background: #fff;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex; /* S'affiche quand on clique sur le burger */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .btn-participate {
        display: none; /* On cache le bouton principal pour gagner de la place */
    }

    /* Le bouton Burger */
    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #333;
        transition: 0.3s;
    }
}

/* --- RESPONSIVE HERO SECTION --- */
@media (max-width: 768px) {
    .hero {
        height: 100vh; /* Garde toute la hauteur sur mobile */
    }

    .hero h1 {
        font-size: 1.8rem !important; /* Réduit la taille du titre */
        padding: 0 10px;
    }

    .hero p {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    #countdown {
        gap: 10px; /* Rapproche les unités du compte à rebours */
    }

    .time-unit {
        min-width: 65px; /* Plus petit pour tenir sur une ligne */
        padding: 10px 5px;
    }

    .time-unit span {
        font-size: 1.5rem; /* Chiffres plus petits */
    }

    .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* --- SECTION HERO --- */
.hero {
    height: 100vh; /* Utilise 100% de la hauteur de l'écran */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Empêche le débordement de la vidéo */
    text-align: center;
    color: var(--white);
}

/* Gestion de la vidéo en arrière-plan */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Assure que la vidéo remplit l'espace sans déformation */
}

/* Overlay pour garantir la lisibilité du texte */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajustez l'opacité selon vos besoins */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Au-dessus de l'overlay */
    width: 90%;
    max-width: 1200px;
}

/* --- ADAPTATION MOBILE (< 768px) --- */
@media (max-width: 768px) {
    .hero {
        height: 80vh; /* Un peu plus court sur mobile pour laisser voir la suite */
    }

    .hero h1 {
        font-size: 2.2rem; /* Taille de titre adaptée au mobile */
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Compte à rebours responsive */
    #countdown {
        gap: 10px; /* Moins d'espace entre les blocs */
        margin-top: 20px;
    }

    .time-unit {
        min-width: 65px; /* Largeur réduite pour tenir sur une ligne */
        padding: 10px 5px;
    }

    .time-unit span {
        font-size: 1.6rem; /* Chiffres plus petits */
    }

    .time-unit p {
        font-size: 0.7rem;
    }
}

/* --- ADAPTATION PETITS MOBILES (< 480px) --- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    #countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur 2 lignes si l'écran est trop petit */
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Header de page */
.page-header {
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px; /* Espace pour la navbar fixed */
}

.presentation-bg {
    background: url('img/header-presentation.jpg') center/cover no-repeat;
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.header-content { position: relative; z-index: 2; }

/* Layout Split (Texte + Image) */
.presentation-detail { padding: 150px 10%; background: #fff; }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-gold {
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.text-side h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px;
    color: #050505;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.value-item i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Image Styling */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px #d4af37; /* Effet de cadre décalé doré */
}

.image-wrapper img { width: 100%; display: block; }

/* Bannière de statistiques */
.stats-banner {
    background: #050505;
    color: white;
    padding: 60px 10%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
}

/* --- RESPONSIVE PRESENTATION --- */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .image-side {
        order: -1; /* Image au-dessus sur mobile */
    }
    .image-wrapper {
        box-shadow: 10px 10px 0px #d4af37;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .stats-banner {
        flex-direction: column;
        gap: 40px;
    }
}


/* Style de base des liens */
.nav-links li a {
    position: relative;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

/* État Hover (Survol) */
.nav-links li a:hover {
    color: var(--accent); /* Doré */
}

/* --- DESIGN LIEN ACTIVE --- */
.nav-links li a.active {
    color: var(--accent);
    font-weight: 700;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%; /* Ligne pleine pour le lien actif */
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Petit effet d'animation pour les autres liens au survol */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Style des objectifs */
.objectives-main {
    padding: 125px 10%;
    background: #fff;
}

.intro-objectives {
    margin-bottom: 60px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Carte Objectif - Design Premium */
.obj-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.obj-card:hover {
    background: var(--primary); /* Devient noir au survol */
    transform: translateY(-10px);
}

.obj-card:hover h3, .obj-card:hover p {
    color: #fff;
}

.obj-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1); /* Chiffre géant transparent */
    transition: 0.3s;
}

.obj-card:hover .obj-number {
    color: rgba(212, 175, 55, 0.3);
}

.obj-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.obj-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.obj-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-objectives {
    padding: 100px 10%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/cta-bg.jpg') center/cover;
    color: #fff;
}

.cta-button-gold {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button-gold:hover {
    background: #fff;
    transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr; /* Une colonne sur mobile */
    }
}


/* --- PROGRAMMES LAYOUT --- */
.programmes-detail {
    padding: 100px 0;
    background: #fff;
}

.prog-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

/* Inversion pour les items pairs */
.prog-item.reverse {
    flex-direction: row-reverse;
}

.prog-visual {
    flex: 1;
    position: relative;
}

.prog-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.prog-text {
    flex: 1;
}

.day-tag {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 5px;
    margin-bottom: 20px;
}

.prog-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.prog-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.prog-list {
    list-style: none;
    padding: 0;
}

.prog-list li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.prog-list li i {
    color: var(--accent);
    margin-right: 15px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .prog-item, .prog-item.reverse {
        flex-direction: column;
        gap: 30px;
        padding: 0 5%;
        margin-bottom: 80px;
    }

    .prog-visual img {
        height: 300px;
    }

    .prog-text h2 {
        font-size: 2rem;
    }
}
.hotel-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 50px;
}

.hotel-info {
    flex: 1;
    padding: 50px;
    background: var(--primary); /* Fond noir pour le contraste */
    color: white;
}

.hotel-info h2 {
    color: var(--accent);
    margin: 15px 0;
}

.hotel-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.hotel-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hotel-features li i {
    color: var(--accent);
}

.hotel-visual {
    flex: 1;
}

.hotel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .hotel-card {
        flex-direction: column;
    }
}

.agenda-section {
    padding: 80px 5%;
    background: #fdfdfd;
}

.agenda-grid {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-day {
    display: flex;
    margin-bottom: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}

.agenda-day:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Sidebar de la date */
.day-sidebar {
    background: var(--primary); /* Noir */
    color: white;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.day-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent); /* Or */
    font-weight: 700;
}

.day-number {
    font-size: 2.2rem;
    font-weight: 800;
}

/* Contenu des événements */
.day-content {
    flex: 1;
    padding: 30px;
}

.event-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.event-time {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.event-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
}

/* Style spécial pour les moments forts (Gala, Croisière) */
.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

/* --- RESPONSIVE AGENDA --- */
@media (max-width: 600px) {
    .agenda-day {
        flex-direction: column;
    }
    .day-sidebar {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 10px;
    }
    .day-number { font-size: 1.5rem; }
    .day-content { padding: 20px; }
}


.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.btn-download:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-download i {
    font-size: 1.2rem;
}

/* --- LAUREATS STYLE --- */
.laureats-section {
    padding: 100px 5%;
    background: #fff;
}

.intro-laureats {
    margin-bottom: 80px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.award-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.award-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--accent);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.award-card:hover .award-icon {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.award-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.award-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Galerie d'honneur */
.honor-gallery h3 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.gallery-placeholder {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f2d472 50%, #d4af37 100%);
    background-size: 200% auto;
    color: #050505;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 50px; /* Forme pilule très élégante */
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-premium-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Effets au survol (Hover) */
.btn-premium-cta:hover {
    background-position: right center; /* Fait bouger le reflet doré */
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-premium-cta:hover i {
    transform: translateX(5px); /* La flèche bouge vers la droite */
}

/* Petit effet de pulsation pour attirer l'attention */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.btn-premium-cta {
    animation: pulse-gold 2s infinite;
}

/* Adaptabilité Mobile */
@media (max-width: 768px) {
    .btn-premium-cta {
        padding: 15px 25px;
        font-size: 0.85rem;
        width: 90%; /* Prend presque toute la largeur sur mobile */
        justify-content: center;
    }
}

/* Styles spécifiques Côte d'Ivoire */
.country-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/ivoire-hero.jpg') center/cover;
    text-align: center;
    padding: 100px 0;
}

.header-overlay-ivory {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(45deg, rgba(255, 130, 0, 0.2), transparent, rgba(0, 158, 96, 0.2));
}

.tagline {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 15px;
}

.glass-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-left: 8px solid #ff8200; /* Orange Côte d'Ivoire */
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.obj-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.obj-item i {
    color: #009e60; /* Vert Côte d'Ivoire */
    font-size: 1.5rem;
    margin-top: 5px;
}

.stat-box-gold {
    background: var(--primary);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    transition: 0.3s;
}

.stat-box-gold:hover {
    background: var(--accent);
    color: var(--primary);
}

.stat-box-gold i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.stat-box-gold:hover i {
    color: var(--primary);
}

.cta-inner {
    background: #f4f4f4;
    padding: 60px;
    border-radius: 30px;
    margin-top: 100px;
}

/* Mobile */
@media (max-width: 768px) {
    .glass-card { padding: 30px; }
    .page-header h1 { font-size: 2.5rem; }
}

:root {
    --primary: #0a0a0a;
    --accent: #d4af37;
    --accent-soft: #f4e1a1;
    --white: #ffffff;
    --bg-light: #fdfbf7; /* Un blanc cassé rappelant le sable fin */
    --text-main: #2d2d2d;
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
}

/* --- Container --- */
.container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- Typographie --- */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #d4af37, #8a6d3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.badge-gold {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* --- Section Intro (Split) --- */
.intro-country {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.text-side { flex: 1; }
.image-side { flex: 1; position: relative; }

.card-deco {
    position: relative;
    z-index: 1;
}

.card-deco::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; width: 100%; height: 100%;
    border: 2px solid var(--accent);
    z-index: -1;
    border-radius: 10px;
}

.card-deco img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.card-deco:hover img {
    filter: grayscale(0%);
    transform: translate(10px, 10px);
}

/* --- Section Institutionnelle (Floating Card) --- */
.institutional-section {
    padding: 60px 0;
}

.glass-card {
    background: var(--white);
    padding: 80px;
    border-radius: 40px;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.obj-item {
    padding: 20px;
    border-top: 3px solid var(--accent);
    background: #fffefb;
    transition: 0.3s;
}

.obj-item:hover {
    background: var(--accent);
    color: white;
}

.obj-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.obj-item:hover i { color: white; }

/* --- Stats Grid (Gold Cards) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.stat-box-gold {
    background: #000000;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px; /* Carré chic */
    border: 1px solid #eee;
    transition: 0.4s;
}

.stat-box-gold:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.stat-box-gold i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* --- CTA Section --- */
.cta-inner {
    margin-top: 100px;
    padding: 100px;
    background: var(--primary);
    border-radius: 60px 0 60px 0; /* Design asymétrique Dubaï */
    color: white;
}

.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    background: linear-gradient(45deg, var(--accent), var(--accent-soft));
    color: var(--primary);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    transition: 0.3s;
}

.btn-premium-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .split-layout, .objectives-list, .stats-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .section-title { font-size: 2rem; }
    .glass-card { padding: 40px 20px; }
}


/* --- REGISTRATION PAGE --- */

.registration-header {
    padding: 120px 0 60px;
    background: var(--primary);
    color: white;
}

.form-container {
    max-width: 900px;
    margin: -50px auto 100px; /* Chevauchement sur le header */
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.participation-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: var(--accent);
}

.form-group input, 
.form-group select {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: white;
}

.form-footer {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.form-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .participation-form .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .form-container {
        padding: 30px 20px;
        margin-top: -30px;
    }
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin: -80px auto 100px;
}

.contact-form-section .glass-card {
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contacts-grid {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.contacts-grid h3 {
    color: var(--accent);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.countries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.country-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.country-item strong {
    display: block;
    color: var(--accent);
    margin-bottom: 5px;
    font-size: 1rem;
}

.country-item p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}