        /* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'akira'; /* Name you'll use in CSS */
    src: url('./fonts/Akira\ Expanded\ Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves performance and avoids invisible text */
}

@font-face {
    font-family: 'satoshi'; /* Name you'll use in CSS */
    src: url('./fonts/Satoshi-Variable.ttf') format('truetype');
    font-display: swap; /* Improves performance and avoids invisible text */
}

:root {
    --bg-gray: #E5E6E4;
    --dark-green: #0A1B10;
    --red: #FF0000;
    --orange: #F39C12;
    --font-main: 'satoshi','Arial', sans-serif;
    --font-title: 'akira','Arial Black', 'Impact', sans-serif; /* Pour l'effet massif du titre */
}



body {
    background-color: var(--bg-gray);
    font-family: var(--font-main);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* --- ARRIÈRE-PLAN --- */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh; /* Couvre 65% de la hauteur de l'écran */
    /* REMPLACEZ L'URL PAR VOTRE IMAGE D'ANIMÉ */
    background: url('./imgs/banner.png') center/cover no-repeat;
}

/* --- CONTENEUR GLOBAL --- */
.container {
    max-width: 1400px;
    margin: 0 2rem;
    padding: 2rem;
    background: linear-gradient(to bottom, #E1DFDF, #1D71B8);
}

/* --- NAVIGATION (GLASSMORPHISM) --- */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    position: relative;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-left a, .nav-right a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-circle img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-red {
    background-color: var(--red);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 900 !important;
    letter-spacing: 1px;
}

/* --- GRILLE PRINCIPALE --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 23vh; /* Ajuste la position du texte par rapport à l'image */
}

/* --- COLONNE GAUCHE (TYPOGRAPHIE) --- */
.title-white h1, .title-dark h1 {
    font-family: var(--font-title);
    font-size: 6.5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
}

.title-white {
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3); /* Pour lisibilité sur fond clair */
}

.title-dark {
    color: var(--dark-green);
    margin-top: 5vh; /* Pousse le mot FESTIVAL sur la zone grise */
}

.description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    max-width: 85%;
    margin: 2rem 0;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.btn-dark {
    background-color: black;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
    color: black;
    border: 2px solid black;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* --- COLONNE DROITE (CARTE GLASSMORPHISM) --- */
.right-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 3rem;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px); /* Ajuste la position de la carte sur la ligne de démarcation */
}

.coming-soon {
    background-color: black;
    color: white;
    font-family: var(--font-title);
    font-size: 2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

.ovals-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.oval {
    background-color: var(--dark-green);
    width: 70px;
    height: 130px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oval-inner-icon {
    width: 40px;
    height: 40px;
    background-color: #A55EEA; /* Couleur violette du logo interne */
    border-radius: 50%;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: black;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.btn-orange {
    background-color: var(--orange);
    color: black;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* --- RESPONSIVE DESIGN BASIQUE --- */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .title-white h1, .title-dark h1 {
        font-size: 4rem;
    }
    .glass-card {
        width: 100%;
        margin-top: 2rem;
    }
}

/* =========================================
   NOUVELLE SECTION : THÈME (FORME EN "S")
   ========================================= */
.theme-section {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ligne Supérieure */
.theme-row-top {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    position: absolute;
    direction: rtl;
    right: 0
}

.s-shape-top {
    height: 280px;
    background: url('https://images.unsplash.com/photo-1578353022122-108078b6630b?q=80&w=1000') center top/cover no-repeat;
    border-radius: 150px 0 0 150px;
    border: 4px solid #0084ff; /* Bordure bleue */
    border-right: none;
    position: relative;
    /* Décale légèrement vers la droite pour rejoindre le bloc du bas */
    margin-right: -4px; 
}

.line-black-right {
    width: 60px;
    height: 4px;
    background-color: black;
    margin-bottom: 1.5rem;
    margin-left: auto; /* Aligne le trait à droite */
}

.theme-text-right p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: right;
    color: #333;
}

/* Ligne Inférieure */
.theme-row-bottom {
    position: absolute;
    bottom: 0;
    display: grid;
    grid-template-columns: 78% 22%;
    align-items: center;
    margin-top: -4px; /* Superpose les bordures pour créer l'illusion d'une seule forme */

}

.theme-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.label-bold {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
}

.line-black-left {
    height: 2px;
    flex-grow: 1; /* Le trait prend l'espace restant */
    background-color: black;
}

.heavy-title-large {
    font-family: var(--font-title);
    font-size: 3.2rem;
    line-height: 1;
    text-transform: uppercase;
    color: black;
}

.s-shape-bottom {
    height: 280px;
    background: url('https://images.unsplash.com/photo-1578353022122-108078b6630b?q=80&w=1000') center bottom/cover no-repeat;
    border-radius: 0 150px 150px 0;
    border: 4px solid #0084ff;
    border-left: none;
}


/* =========================================
   NOUVELLE SECTION : INFOS & RÉSERVATION
   ========================================= */
.info-section {
    margin-top: 6rem;
    margin-bottom: 5rem;
}

.line-thick-dark {
    width: 120px;
    height: 6px;
    background-color: var(--dark-green);
    margin-bottom: 2rem;
}

.heavy-title-md {
    font-family: var(--font-title);
    font-size: 2.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: black;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.info-right-flex {
    display: flex;
    align-items: center; /* Aligne l'image et la liste horizontalement */
    gap: 2rem;
    justify-content: flex-start; /* Aligne vers la ligne centrale */
}

.event-image {
    width: 250px;
    height: 200px;
    background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=1000') center/cover no-repeat;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-grow: 2;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.features-list i {
    font-size: 1.5rem;
    color: black;
    width: 30px;
    text-align: center;
}

/* Ajustements Responsive basiques pour ces nouvelles sections */
@media (max-width: 1024px) {
    .theme-row-top, .theme-row-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .s-shape-top, .s-shape-bottom {
        border-radius: 50px;
        border: 4px solid #0084ff;
        margin: 0;
    }
    .theme-text-right {
        padding: 0;
    }
    .theme-text-right p {
        text-align: left;
    }
    .line-black-right {
        margin-left: 0;
    }
    .info-right-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}   

    .clip-image {
        clip-path: polygon(58% 0, 58% 43%, 100% 44%, 100% 100%, 50% 100%, 50% 54%, 0 54%, 0 0);
        background-image: url('./imgs/banner.png');
        border-radius: 1rem;
        /* clip-path: inset(0 round 20px); */
        height: 60dvh;
    }

    /* =========================================
   NOUVELLE SECTION : 5ÈME ÉDITION
   ========================================= */
.edition-section {
    /* Dégradé imitant le ciel en arrière-plan */
    padding: 6rem 0; /* Espacement vertical */
    margin-top: 5rem;
    position: relative;
}

.edition-grid {
    margin-top: 0; /* Annule la marge de la grille principale pour cette section */
    align-items: center; /* Centre verticalement le contenu et l'image */
}

/* En-tête (Chiffre + Titre) */
.edition-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.number-five {
    width: 150px; /* Taille à ajuster selon votre image réelle du 5 orange */
    height: auto;
    object-fit: contain;
}

.edition-title h2 {
    font-size: 3rem; /* Taille légèrement réduite par rapport au grand titre du haut */
    line-height: 1.1;
    text-shadow: none; /* On retire l'ombre portée pour un look plus "flat" ici */
}

/* Textes descriptifs */
.edition-desc {
    color: #1a1a1a; /* Un gris un peu plus foncé pour mieux lire sur le ciel */
    max-width: 95%;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* Zone des boutons */
.edition-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.button-group-bottom {
    display: flex;
    gap: 1rem;
}

/* Image de droite (Personnages groupés) */
.edition-right {
    display: flex;
    justify-content: center;
}

.characters-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    /* Petite animation sympa de flottaison */
    animation: float-characters 6s ease-in-out infinite;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.15)); /* Ajoute une ombre réaliste derrière le PNG transparent */
}

/* Animation CSS pour donner l'impression qu'ils tombent/flottent */
@keyframes float-characters {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Ajustements Responsive */
@media (max-width: 1024px) {
    .edition-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .edition-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .edition-title h2 {
        font-size: 2.5rem;
    }
    .button-group-bottom {
        flex-wrap: wrap; /* Permet aux boutons de passer à la ligne sur mobile */
    }
    .characters-image {
        max-width: 90%;
    }
}

/* =========================================
   NOUVELLE SECTION : BOUTIQUE & CAROUSEL
   ========================================= */
.boutique-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden; /* Empêche la scrollbar horizontale globale */
}

/* Grille 50/50 stricte */
.boutique-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

/* --- COLONNE GAUCHE --- */
.boutique-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pousse les contrôles vers le bas */
    padding-bottom: 2rem;
    min-height: 500px; /* Assure de l'espace pour le nuage */
}

.cloud-decor {
    position: absolute;
    top: 10%;
    left: -20%;
    width: 140%;
    height: auto;
    object-fit: contain;
    pointer-events: none; /* Le nuage ne bloque pas les clics */
    mix-blend-mode: screen; /* Rend le nuage plus aérien sur le fond bleu */
    opacity: 0.9;
}

/* Contrôles du carousel */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10; /* Au-dessus du nuage */
    padding-left: 2rem;
}

.carousel-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.carousel-btn:hover {
    transform: scale(1.2);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid black;
    background: transparent;
    cursor: pointer;
}

.dot.active {
    background-color: black;
    border-color: black;
}

/* --- COLONNE DROITE --- */
.boutique-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 1rem;
}

.text-white {
    color: white !important;
    text-shadow: none; /* Enlève l'ombre si elle était héritée */
}

.boutique-desc {
    color: #1a1a1a;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.btn-shop {
    align-self: flex-start;
    margin-bottom: 3rem;
}

/* Piste du Carousel */
.carousel-track-wrapper {
    width: 100%;
    position: relative;
}

.shop-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* Permet aux cartes de déborder vers la droite de l'écran */
    width: calc(50vw + 2rem); 
    padding-bottom: 1rem;
    /* Cache la barre de défilement (Scrollbar) pour un look propre */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.shop-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Carte Produit */
.shop-card {
    min-width: 280px;
    background-color: #f0f4f8; /* Gris très clair bleuté */
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: black;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Pousse le footer en bas de la carte */
}

.product-price {
    color: var(--orange);
    font-weight: 800;
    font-size: 1rem;
}

.btn-buy {
    background-color: var(--dark-green);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .boutique-split {
        grid-template-columns: 1fr; /* Passe à 1 seule colonne sur mobile */
    }
    .boutique-left {
        min-height: 200px;
        align-items: flex-start; /* Réaligne les contrôles */
    }
    .carousel-controls {
        padding-left: 0;
    }
    .shop-track {
        width: 100vw; /* Sur mobile, le carousel prend 100% de l'écran */
        padding-right: 2rem;
    }
}

/* =========================================
   NOUVELLE SECTION : ACTUALITÉS (CAROUSEL)
   ========================================= */
.news-section {
    /* Crée le fond divisé : bleu en haut, gris en bas */
    background: linear-gradient(to bottom, #589bce 0%, #589bce 45%, var(--bg-gray) 45%, var(--bg-gray) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.news-main-title {
    text-align: center;
    color: white;
    font-family: var(--font-title);
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

/* Conteneur principal du carousel */
.news-carousel-container {
    position: relative;
    width: 100%;
    /* LES VARIABLES MAGIQUES POUR LE CALCUL PARFAIT */
    --gap: 2rem; 
    /* La carte centrale prend 50% de l'écran moins l'espacement */
    --card-width: calc(50vw - var(--gap)); 
    /* Le padding latéral garantit que la première carte est parfaitement centrée */
    --padding-side: calc(50vw - (var(--card-width) / 2));
}

/* L'EFFET DE FLOU (BLUR) MAGIQUE */
.fade-overlay {
    position: absolute;
    top: -20px;
    bottom: -20px;
    width: var(--padding-side); /* Le flou couvre EXACTEMENT les demi-cartes sur les côtés */
    z-index: 10;
    pointer-events: none;
}

.fade-left {
    left: 0;
    /* Dégradé de couleur correspondant au fond gris clair */
    background: linear-gradient(to right, rgba(229, 230, 228, 0.95) 0%, rgba(229, 230, 228, 0) 100%);
    /* Flou réel avec masque progressif pour une transition douce */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to right, black 20%, transparent 100%);
    mask-image: linear-gradient(to right, black 20%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(229, 230, 228, 0.95) 0%, rgba(229, 230, 228, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to left, black 20%, transparent 100%);
    mask-image: linear-gradient(to left, black 20%, transparent 100%);
}

/* Piste défilante */
.news-track {
    display: flex;
    gap: var(--gap);
    padding: 0 var(--padding-side); /* Applique l'espacement calculé */
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-track::-webkit-scrollbar {
    display: none; /* Cache la scrollbar (Chrome/Safari) */
}

/* Cartes Actualités */
.news-card {
    width: var(--card-width);
    min-width: unset; /* Annule l'ancienne largeur fixe */
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
    /* Effet visuel pour le "Highlight" */
    opacity: 0.4;
    transform: scale(0.95); /* Réduit légèrement les cartes sur les côtés */
    transition: all 0.4s ease-in-out;
}

.news-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: black;
    border-radius: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.news-tag {
    background-color: black;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-date {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
}

.news-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: black;
    line-height: 1.2;
}

.news-excerpt {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

/* Contrôles du bas */
.news-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.news-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: black;
    transition: transform 0.2s;
}

.news-btn:hover {
    transform: scale(1.2);
}

.news-pagination {
    background-color: #d1d4d6; /* Pilule grise */
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #777;
    background: transparent;
    cursor: pointer;
}

.news-dot.active {
    background-color: black;
    border-color: black;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-main-title { font-size: 2.5rem; }
    .news-track { padding: 0 5vw; }
    .news-card { min-width: 320px; }
    .fade-overlay { width: 10%; } /* Réduit l'effet de flou sur mobile */

    .news-carousel-container {
        --card-width: 80vw; /* La carte prend 80% de l'écran sur mobile */
    }
}

.news-card.in-focus {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   NOUVELLE SECTION : INTERACTION & COMPTE À REBOURS
   ========================================= */
.interactive-section {
    padding: 6rem 2rem;
}

/* --- PARTIE HAUTE (GRILLE) --- */
.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

/* Colonne Gauche : Arches */
.interactive-left .heavy-title-large {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 3rem;
}

.interactive-left {
    min-width: 0; /* LA CORRECTION CRUCIALE : empêche la grille d'exploser */
    display: flex;
    flex-direction: column;
}

.arch-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.arch-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Centre parfaitement la flèche verticalement */
    z-index: 10;
    font-size: 1.5rem;
    color: black;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

/* .arch-nav-arrow:hover {
    transform: scale(1.1);
} */

.arch-nav-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.arch-prev {
    left: 0;
}

.arch-prev::after {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: black;
    margin-left: 5px;
}

.arch-next {
    right: 0;
}
.arch-next::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: black;
    margin-right: 5px;
}

.arch-nav-arrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1.5px;
    background-color: black;
    margin-left: 2px;
}

.arch-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 0 3rem; /* Crée de l'espace à l'intérieur pour que les flèches ne cachent pas les cartes */
    
    /* Masquer les barres de défilement */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.arch-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.arch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0; /* Empêche les cartes de s'écraser */
}

.arch-shape {
    width: 130px;
    height: 160px;
    background-color: #d8dbdd;
    border-radius: 80px 80px 12px 12px; 
}

/* .arch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.arch-shape {
    width: 130px;
    height: 160px;
    background-color: #d8dbdd; /* Gris clair pour les espaces vides */
    /* Arrondi parfait en haut, coins légèrement arrondis en bas */
    /* border-radius: 80px 80px 12px 12px;  */
/* } */

.arch-label {
    font-weight: 800;
    font-size: 0.9rem;
    color: black;
}

/* Colonne Droite : Formulaire */
.form-main-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.idea-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 800;
    color: black;
}

.form-group input, 
.form-group textarea {
    background-color: transparent;
    border: 1px solid #7a7a7a;
    border-radius: 8px;
    padding: 0.8rem;
    font-family: var(--font-main);
    font-size: 1rem;
    color: black;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: black; /* Focus visuel */
}

.btn-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* --- PARTIE BASSE (COMPTE À REBOURS) --- */
.countdown-section {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-pill {
    width: 100%;
    max-width: 900px;
    border: 2px solid var(--dark-green);
    border-radius: 100px;
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 4rem;
    font-weight: 300; /* Police très fine comme sur la maquette */
    color: black;
    line-height: 1;
}

.time-label {
    font-size: 0.75rem;
    color: #444;
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 3rem;
    font-weight: 300;
    color: black;
    margin-top: -1.5rem; /* Ajuste l'alignement vertical des ":" */
}

.text-center {
    text-align: center;
}

.countdown-footer .heavy-title-large {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.countdown-footer .description {
    max-width: 800px;
    margin: 0 auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .countdown-pill {
        flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
        border-radius: 30px;
        padding: 2rem;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .time-separator {
        display: none; /* Cache les séparateurs sur mobile pour gagner de la place */
    }
    
    .time-block {
        width: 40%; /* Deux blocs par ligne sur mobile */
    }
}

/* =========================================
   FOOTER (PIED DE PAGE)
   ========================================= */
.site-footer {
    background-color: var(--dark-green);
    color: white;
    padding: 6rem 0 2rem;
    margin-top: 4rem;
}

/* --- PARTIE HAUTE (LOGO + SLOGAN) --- */
.footer-top {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.logo-img {
    width: 150px;
    height: auto;
}

.footer-slogan .heavy-title-large {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    /* Assure que la police impactante est bien blanche sur fond sombre */
    color: white; 
    text-shadow: none; 
}

.slogan-subtext {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* --- PARTIE CENTRALE (SPLIT 40/60) --- */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Donne un peu plus de place aux liens à droite */
    gap: 5rem;
    margin-bottom: 4rem;
}

/* Newsletter & Réseaux */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-input {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--orange); /* Bordure orange fine */
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
    color: #a0a0a0;
}

.newsletter-input:focus {
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3); /* Lueur orange au focus */
}

.newsletter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

/* Grille de liens */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    text-decoration: none;
    color: #b0b5b1; /* Gris clair bleuté */
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: white;
}

/* --- PARTIE BASSE (COPYRIGHT) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Ligne de séparation subtile */
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #b0b5b1;
}

.legal-links {
    display: flex;
    gap: 2.5rem;
}

.legal-links a {
    text-decoration: none;
    color: #b0b5b1;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: white;
}

/* --- RESPONSIVE DESIGN (MOBILE & TABLETTE) --- */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-slogan .heavy-title-large {
        font-size: 2rem;
    }

    .footer-middle {
        grid-template-columns: 1fr; /* Passe à une seule colonne */
        gap: 4rem;
    }

    .newsletter-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr; /* 1 seule colonne sur petit mobile */
    }
}