/* --- VARIABLES ET RESET --- */
:root {
    --bg-dark: #0A0A0A; /* Noir très profond */
    --gold: #FFD700;    /* Jaune Or */
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* --- EN-TÊTE (HEADER) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

.logo .gold { color: var(--gold); }
.logo .cross { color: var(--gold); margin-right: 5px; }

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
}

/* --- MENU DÉROULANT MOBILE --- */
.mobile-dropdown {
    position: fixed;
    top: -100%; /* Caché par défaut en haut */
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 90;
    padding-top: 80px; /* Espace pour le header */
    padding-bottom: 20px;
    transition: top 0.4s ease-in-out;
    border-bottom: 2px solid var(--gold);
}

.mobile-dropdown.active {
    top: 0; /* Apparaît en glissant vers le bas */
}

.mobile-dropdown ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-dropdown a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

.mobile-dropdown a.active {
    color: var(--gold);
}

/* --- SECTION HÉRO (BANNIÈRE) --- */
/* --- SECTION HÉRO (BANNIÈRE ANIMÉE) --- */
.hero {
    position: relative;
    height: 85vh; /* Prend une grande partie de l'écran */
    display: flex;
    align-items: flex-end;
    padding: 50px 40px;
	overflow: hidden;
	position: relative;
    
    /* 1. Chemin vers votre nouvelle image locale */
    background: url('assets/images/full_screen.jpeg') no-repeat center center;
    
    /* 2. On zoome l'image à 150% pour avoir de la marge pour le mouvement */
    background-size: 150% 150%;
    
    /* 3. On applique l'animation de mouvement (40 secondes, fluide, aller-retour) */
    animation: panClouds 40s ease-in-out infinite alternate;
    
    /* Effet mask-image conservé pour fondre le ciel clair dans le noir de la page */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

/* --- ANIMATION DES NUAGES --- */
@keyframes panClouds {
    0% {
        /* L'image commence calée à gauche */
        background-position: 0% 50%;
    }
    100% {
        /* L'image se déplace doucement jusqu'à être calée à droite */
        background-position: 100% 50%;
    }
}

.hero-content {
    max-width: 100%;
    z-index: 10;
}

.badge {
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 10px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover { transform: scale(1.05); }

.btn-secondary {
    background-color: rgba(109, 109, 110, 0.7);
    color: white;
}

.btn-secondary:hover { background-color: rgba(109, 109, 110, 0.9); }

/* --- CARROUSELS --- */
.carousel-section {
    padding: 20px 40px;
    margin-top: -40px; /* Remonte légèrement sous le fondu de l'image */
    position: relative;
    z-index: 20;
}

.carousel-section h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    /* Cache la barre de défilement pour un look plus propre */
    scrollbar-width: none; 
}
.carousel::-webkit-scrollbar { display: none; }

.card {
    min-width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-img {
    width: 100%;
    height: 140px;
    background-color: #222;
    border-radius: 8px;
    margin-bottom: 8px;
    background-size: cover;
    background-position: center;
}

/* Couleurs simulées pour les miniatures */
.mock-img-1 { background-image: url('https://images.unsplash.com/photo-1438283173091-5dbf5c5a3206?q=80&w=600&auto=format&fit=crop'); }
.mock-img-2 { background-image: url('https://images.unsplash.com/photo-1510590337019-5ef8d3d73e1d?q=80&w=600&auto=format&fit=crop'); }
.mock-img-3 { background-image: url('https://images.unsplash.com/photo-1470116892389-0de5d9770b2c?q=80&w=600&auto=format&fit=crop'); }
.mock-img-4 { background-image: url('https://images.unsplash.com/photo-1490730141103-6cac27aaab94?q=80&w=600&auto=format&fit=crop'); }
.mock-img-5 { background-image: url('https://images.unsplash.com/photo-1445445290350-18a3b86e0b5b?q=80&w=600&auto=format&fit=crop'); }
.mock-img-6 { background-image: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?q=80&w=600&auto=format&fit=crop'); }
.mock-img-7 { background-image: url('https://images.unsplash.com/photo-1525026198548-4baa0d2f148f?q=80&w=600&auto=format&fit=crop'); }

.card p {
    font-size: 0.9rem;
    font-weight: 600;
}


/* --- LE SOLEIL QUI BRILLE --- */
.sun-glow {
    position: absolute;
    top: -5%;   /* Ajuste la position verticale */
    right: 5%;  /* Ajuste la position horizontale (côté soleil de l'image) */
    width: 200px;
    height: 200px;
    
    /* Crée le cœur blanc et le halo jaune/transparent */
    /*background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,245,200,0.4) 30%, rgba(255,255,255,0) 70%);*/
	background: radial-gradient(circle, rgba(246,254,111,1.00) 0%, rgba(246,254,111,4.00) 30%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    
    /* Ne gêne pas la sélection de texte ou les clics sur les boutons en dessous */
    pointer-events: none; 
    z-index: 1; /* Se place derrière votre texte (qui doit idéalement avoir un z-index supérieur) */
    
    /* Animation de pulsation */
    animation: shine 4s ease-in-out infinite alternate;
}

/* --- ANIMATION DE LA BRILLANCE --- */
@keyframes shine {
    0% {
        transform: scale(1);
        opacity: 0.7;
        /* Ombre douce au départ */
        box-shadow: 0 0 50px 20px rgba(255, 235, 150, 0.3);
    }
    100% {
        transform: scale(1.3); /* Le halo grandit de 30% */
        opacity: 1;
        /* L'ombre devient plus intense et s'étend */
        box-shadow: 0 0 100px 50px rgba(255, 240, 180, 0.6), 0 0 150px 80px rgba(255, 255, 255, 0.2);
    }
}

/* --- MEDIA QUERIES (RESPONSIVE MOBILE) --- */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .desktop-nav {
        display: none; /* Cache le menu PC */
    }

    .menu-toggle {
        display: block; /* Affiche le burger menu */
    }

    .hero {
        height: 75vh;
        padding: 30px 20px;
        align-items: flex-end; /* L'image reste au premier plan visuel */
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .carousel-section {
        padding: 10px 20px;
    }

    .card {
        min-width: 160px;
    }

    .card-img {
        height: 230px; /* Plus vertical sur mobile pour les affiches */
    }
}