:root {
    --brand: #43b58b;
    --brand-2: #17b3a1;
    --ink: #e8eef6;
    --muted: #b3c0d1;
    --bg-top: #000914;
    --bg-bot: #000914;
    --radius: 18px;
    --shadow: 0 8px 24px rgba(68, 75, 71, 0.137);
}

/* =========================
   TOP BUTTON
   ========================= */
#backToTop {
    position: fixed;
    bottom: 2.2rem;
    right: 2.2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .4);
    color: var(--brand);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(.95);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease, background .25s ease, color .25s ease;
}

body.show-top-btn #backToTop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#backToTop:hover {
    background: rgba(67, 181, 139, .25);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

@media (prefers-reduced-motion:reduce) {
    #backToTop {
        transition: none !important;
    }
}

/* #2A4C57 */

h2,
section h2,
div h2,
.about-text h2,
#firstSection h2,
header h2 {
    font-family: MontserratBold, system-ui, Arial, sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(2.1rem, 7vw, 5rem) !important;
    /* taille fluide */
    line-height: 1.1 !important;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #ffffff !important;
    margin: clamp(1rem, 2vw, 1.8rem) 0 clamp(2.8rem, 2vw, 1.6rem) !important;
    text-wrap: balance;
    word-break: break-word;
    padding-top: 4rem;
}

h2 {
    transition: font-size .3s ease, letter-spacing .3s ease;
}

p {
    font-size: 1.3rem;
}

.textBlue2 {
    color: var(--brand);
    font-weight: 900;
    font-size: 1.4rem;
}

@media (max-width:600px) {

    h2,
    section h2,
    div h2,
    .about-text h2,
    #firstSection h2 {
        font-size: clamp(2.1rem, 10vw, 3rem) !important;
        /* padding-bottom: 3rem; */
    }
}

/* ───────── NAVBAR ───────── */
.navbar.main-nav {
    position: fixed;
    top: 0.75rem;
    /* petit décalage en desktop */
    left: 0;
    right: 0;
    z-index: 1030;

    display: flex;
    justify-content: center;

    /* cachée par défaut, affichée seulement avec .active */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s ease;

    background: transparent;
    border: 0;
    box-shadow: none;
}

/* NAV visible après scroll → .active déjà gérée par ton JS */
.navbar.main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Conteneur interne : pillule centrée (comme la brand) */
.nav-inner {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 0.6rem 1.4rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    border-radius: 999px;
    background: rgb(27 47 45 / 0.58);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(10, 28, 40, 0.18);
    box-sizing: border-box;
}

/* On peut renforcer un peu la nav une fois .active si tu veux un effet subtil */
.navbar.main-nav.active .nav-inner {
    background: rgb(27 47 45 / 58%);
    ;
    border-color: rgba(68, 121, 105, 0.5);
    box-shadow: 0 12px 38px rgba(7, 24, 35, 0.28);
}

/* Logo */
.nav-logo img {
    height: 42px;
    max-width: 100%;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .3));
    transition: transform .25s ease;
    display: block;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* Liens */
.nav-links .nav-item {
    margin: 0 .35rem;
}

.nav-links .nav-link {
    padding: .45rem .75rem;
    color: #ffffff;
    font-size: .80rem;
    letter-spacing: .14em;
    position: relative;
    transition: all .25s ease;
    text-transform: uppercase;
}

.nav-links .nav-link:hover {
    opacity: 1;
    text-decoration: none;
    color: #22B39B;
    font-weight: 900;
}

/* Soulignement dégradé brand */
.nav-links .nav-link::after {
    content: "";
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: .25rem;
    height: 2px;
    background: linear-gradient(90deg, #65d3cd, #3CB49B);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
    opacity: 0;
}

.nav-links .nav-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Admin dropdown */
.nav-admin .dropdown-menu {
    min-width: 180px;
    border-radius: .9rem;
    padding: .4rem 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(200, 200, 200, 0.5);
    backdrop-filter: blur(10px);
}

/* ───────── BURGER ───────── */

.nav-toggle {
    border: none;
    padding: .25rem;
    outline: none;
    background: transparent;
}

.nav-toggle:focus {
    outline: none;
    box-shadow: none;
}

.nav-toggle-bar {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform .25s ease, opacity .2s ease, width .25s ease, margin .25s ease;
}

.nav-toggle-bar+.nav-toggle-bar {
    margin-top: 5px;
    width: 13px;
    margin-left: 8px;
}

/* État ouvert (Bootstrap retire .collapsed) */
.nav-toggle:not(.collapsed) .nav-toggle-bar:first-child {
    transform: translateY(4px) rotate(45deg);
    width: 21px;
    margin-left: 0;
}

.nav-toggle:not(.collapsed) .nav-toggle-bar:last-child {
    transform: translateY(-4px) rotate(-45deg);
    width: 21px;
    margin-left: 0;
}

/* ───────── RESPONSIVE ───────── */

@media (max-width: 991.98px) {

    /* full largeur en mobile, pas de débordement */
    .navbar.main-nav {
        top: 0;
        padding-top: 0 !important;
        /* collée en haut sur mobile */
    }

    .nav-inner {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0.55rem 1rem;
        border-radius: 0 0 1.2rem 1.2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
        flex-wrap: nowrap;
    }

    .navbar-collapse {
        width: 100%;
        padding: .55rem 0 .35rem;
    }

    .nav-links {
        text-align: center;
        width: 100%;
    }

    .nav-links .nav-item {
        margin: .25rem 0;
    }
}

/* Desktop : on cache le burger si tu veux */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

/* Ceinture & bretelles pour éviter un scroll latéral surprise */
html,
body {
    overflow-x: hidden;
}


/* Desktop : on cache le burger si tu veux */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

/* Ceinture & bretelles : pas de débordement horizontal */
html,
body {
    overflow-x: hidden;
}


/* NAV PLUS LARGE UNIQUEMENT SUR LA PAGE ADMIN */
#admin-dashboard .main-nav .nav-inner {
    max-width: 1200px !important;
    width: 95%;
}

/* =========================
   HERO
   ========================= */
header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

header video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
}

.fade-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000914 100%);
    z-index: 0;
    pointer-events: none;
}

/* Contenu header */
.headerTitle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: clamp(10px, 3vw, 30px);
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Titre principal */
.fontHeader1 {
    font-family: MontserratBold, sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: .9;
    font-size: clamp(3rem, 12vw, 15rem);
}

/* Ligne contenant img + date */
.headerSubline {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

/* Image */
.headerSubline img {
    height: clamp(6rem, 14vw, 22rem);
    display: block;
}

/* Date */
.fontHeader2 {
    font-family: MontserratBold, sans-serif;
    font-weight: 300;
    color: #ffffff;
    font-size: clamp(1rem, 2.8vw, 3rem);
    margin: 0;
}

/* --- Responsive --- */
@media (max-width:900px) {
    .headerTitle {
        top: 52%;
        align-items: center;
        text-align: center;
    }

    .headerSubline {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:600px) {
    .headerTitle {
        top: 55%;
        padding: 0 5%;
    }

    .fontHeader1 {
        font-size: clamp(3.8rem, 10vw, 6rem);
        line-height: 1;
    }

    .fontHeader2 {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    }
}

@media (max-width:400px) {
    .headerTitle {
        top: 58%;
    }
}

/* flèche animée */
@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0)
    }

    50% {
        transform: translate(-50%, 8px)
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
    opacity: .8;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

#arrowDown {
    height: 4rem;
}

/* =========================
   COUNTDOWN
   ========================= */
.countdown-section {
    /* background: #ffffff; */
    display: flex;
    justify-content: center;
}

.countdown {
    font-weight: 900;
    font-family: MontserratBold, sans-serif;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3rem);
    flex-wrap: nowrap;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    padding-top: clamp(2rem, 6vw, 11rem);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

.time-box span {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
}

.time-box small {
    font-size: clamp(.65rem, 1.4vw, .95rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: .25rem;
    opacity: .85;
}

@media (max-width:500px) {
    .countdown {
        gap: clamp(.4rem, 2vw, 1rem);
    }

    .time-box span {
        font-size: clamp(1.5rem, 10vw, 2.6rem);
    }

    .time-box small {
        font-size: clamp(.55rem, 2.5vw, .8rem);
    }
}

/* =========================
   First section 
   ========================= */
#firstSection.ma-zone {
    /* background: #ffffff; */
    position: relative;
    z-index: 1;
}

#firstSection .about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(6px, 12vw, 50px);
    padding: clamp(48px, 8vw, 100px) clamp(16px, 6vw, 10%);
    max-width: 1600px;
    margin-inline: auto;
}

#firstSection .about-image {
    flex: 0 0 auto;
    width: clamp(400px, 32vw, 700px);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease .2s, transform .8s cubic-bezier(.19, 1, .22, 1) .2s;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(133, 133, 133, 0.125);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    margin: 0;
    padding: 0;
    position: sticky;
    top: 8vh;
}

/* Image */
#firstSection .about-image img {
    display: block;
    width: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .5s ease, filter .35s ease;
}

/* Hover image */
@media (hover:hover) {
    #firstSection .about-image img:hover {
        transform: scale(1.06);
        filter: saturate(1.05);
    }
}

/* ───────── TEXTE (VERSION CLAIRE) ───────── */
#firstSection .about-text {
    flex: 1 1 420px;
    min-width: 320px;
    color: #ffffff;

    opacity: 0;
    transform: translateY(40px) scale(.98);
    transition: opacity .8s ease, transform .8s cubic-bezier(.19, 1, .22, 1);
}

/* Titre */
#firstSection .about-text h2 {
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 800;
    font-family: MontserratBold, sans-serif;
    text-transform: uppercase;

    /* Gradient légèrement réajusté pour du clair */
    background: linear-gradient(90deg, #1b7554, #65d3cd, #1b7554);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-top: 0;
    animation: firstSectionGradient 5s linear infinite;
}

/* Paragraphes */
#firstSection .about-text p {
    font-size: clamp(1rem, .9vw + .3rem, 1.2rem);
    line-height: 1.65;
    color: #ffffff;
    margin: 0;
}

/* Apparition */
#firstSection .about.visible .about-text,
#firstSection .about.visible .about-image {
    opacity: 1;
    transform: none;
}

/* ───────── ANIMATION DU GRADIENT ───────── */
@keyframes firstSectionGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ───────── RESPONSIVE ───────── */
@media (max-width:1100px) {
    #firstSection .about {
        flex-direction: column;
        text-align: center;
        gap: clamp(20px, 5vw, 40px);
    }

    #firstSection .about-image {
        width: clamp(260px, 65vw, 480px);
        position: relative;
        top: 0;
    }

    #firstSection .about-text {
        text-align: center;
        margin-top: 1rem;
        min-width: 100%;
    }
}

@media (max-width:768px) {
    #firstSection .about {
        padding: clamp(40px, 12vw, 70px) 16px;
        gap: clamp(18px, 6vw, 28px);
    }
}

@media (prefers-reduced-motion:reduce) {

    #firstSection .about-text,
    #firstSection .about-image {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    #firstSection .about-text h2 {
        animation: none !important;
    }
}

@media (max-width:576px) {

    #firstSection .event-stats .col-3,
    #firstSection .event-stats .col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .event-highlights .bigText {
        font-size: 1.3rem;
    }

    .event-highlights .suffix {
        font-size: .9rem;
    }
}

.bigText {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #43b58b;
    font-weight: 900;
    font-family: MontserratBold, sans-serif;
}

/* Animation pulsing */
@keyframes pulseHighlight {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.highlight {
    display: inline-block;
    animation: pulseHighlight 2.2s ease-in-out infinite;
    transition: transform .3s ease;
}


/* =========================
   CAROUSEL (c25)
   ========================= */
:root {
    --c25-gap: clamp(.6rem, 1.2vw, 1rem);
    --c25-h: clamp(220px, 48vh, 420px);
    --c25-radius: 14px;
}

.c25 {
    padding: 1rem 0 6rem;
}

.c25-vp {
    /* width: min(1900px, 100%); */
    margin: 0 auto;
    overflow: hidden;
}

.c25-row {
    display: flex;
}

.c25-item {
    list-style: none;
    flex: 0 0 auto;
    margin-right: var(--c25-gap);
}

.c25-item:last-child {
    margin-right: 0;
}

.c25-item img {
    height: var(--c25-h);
    width: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--c25-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
    transition: transform .15s ease, opacity .15s ease;
    user-select: none;
    pointer-events: auto;
}

.c25-item img:hover {
    transform: scale(1.02);
    opacity: .95;
    cursor: pointer;
}

.c25 * {
    box-sizing: border-box;
}

.c25 img {
    max-width: none;
}

@media (prefers-reduced-motion:reduce) {
    .c25-item img {
        transition: none !important;
    }
}

/* =========================
   SECTION “POURQUOI VENIR
   ========================= */
.why-exhibit {
    position: relative;
    padding: clamp(2.6rem, 4vw, 4rem) 0;
    text-align: center;
    /* anti-flicker : ne pas couper la wave et limiter le repaint */
    overflow: visible;
    contain: paint;
    isolation: auto;
    /* background:
                radial-gradient(80% 50% at 50% 0%, color-mix(in oklab, var(--brand) 28%, transparent) 0%, transparent 70%),
                radial-gradient(40% 20% at 50% 0%, color-mix(in oklab, var(--brand-2) 20%, transparent) 0%, transparent 100%),
                linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 100%); */
}

.hero-title {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pourquoi-exposer .micro {
    color: var(--muted);
    margin: 0 auto 1.8rem;
    max-width: 65ch;
}

.why-exhibit .container {
    width: min(1200px, 92%);
    margin-inline: auto;
    position: relative;
    z-index: 2;
    /* stabilité GPU au scroll */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Cartes */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.2vw, 1.25rem);
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (min-width:700px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: var(--shadow);
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
    will-change: transform, filter;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, .04);
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    transition: width .25s ease;
}

.card:hover::before {
    width: 4px;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .42);
    background: rgba(255, 255, 255, .12);
}

.card .media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card .media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0) scale(1.02);
    transition: transform .4s ease, filter .3s ease, opacity .3s ease;
    will-change: transform, filter;
    backface-visibility: hidden;
}

.card .media .media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .35) 100%);
    pointer-events: none;
    transition: opacity .35s ease;
    opacity: .9;
}

.card:hover .media img {
    transform: translateZ(0) scale(1.04);
    filter: saturate(1.05);
}

.card:hover .media .media-overlay {
    opacity: .8;
}

/* .card .content {
            text-shadow: 0 1px 12px rgba(4, 12, 22, .25);
        } */

.card h3 {
    margin: 2rem 1.25rem .55rem;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .01em;
    text-transform: uppercase;
    font-family: MontserratBold, sans-serif;
    background: linear-gradient(90deg, rgb(255, 255, 255) 40%, var(--brand) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    will-change: transform;
}

.card h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transform: scaleX(.3);
    transform-origin: left;
    opacity: .9;
    transition: transform .35s ease, opacity .35s ease;
}

.card:hover h3::after {
    transform: scaleX(1);
    opacity: 1;
}

.card p {
    margin: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
    padding-top: .5rem;
}

.card .content .accent {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: none;
}

@supports (backdrop-filter: blur(6px)) {
    .card {
        backdrop-filter: blur(6px) saturate(140%);
        -webkit-backdrop-filter: blur(6px) saturate(140%);
    }

    .card::after {
        background: transparent;
    }
}

@media (max-width: 600px) {
    .card:hover {
        transform: none;
    }

    .card .media img {
        transition: transform .28s ease;
    }
}


/* Séparateurs de section (vagues) */
.section-shape {
    position: relative;
    overflow: hidden;
}

.section-shape::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 8vw;
    pointer-events: none;

    /* Vague */
    clip-path: polygon(100% 0%, 0% 0%, 0% 52.16%, 2% 47.08%, 4% 41.49%, 6% 35.85%, 8% 30.62%, 10% 26.24%,
            12% 23.07%, 14% 21.37%, 16% 21.29%, 18% 22.84%, 20% 25.87%, 22% 30.15%, 24% 35.32%,
            26% 40.94%, 28% 46.56%, 30% 51.70%, 32% 55.94%, 34% 58.93%, 36% 60.42%, 38% 60.28%,
            40% 58.54%, 42% 55.32%, 44% 50.91%, 46% 45.66%, 48% 40.01%, 50% 34.43%, 52% 29.38%,
            54% 25.28%, 56% 22.48%, 58% 21.19%, 60% 21.54%, 62% 23.49%, 64% 26.88%, 66% 31.43%,
            68% 36.76%, 70% 42.43%, 72% 47.96%, 74% 52.91%, 76% 56.85%, 78% 59.47%, 80% 60.54%,
            82% 59.98%, 84% 57.83%, 86% 54.27%, 88% 49.60%, 90% 44.20%, 92% 38.52%, 94% 33.04%,
            96% 28.20%, 98% 24.41%, 100% 21.99%);
    background: #000914;
    z-index: 1;
}

.bgSection {
    position: relative;
    background: radial-gradient(80% 50% at 50% 0%,
            color-mix(in oklab, var(--brand) 28%, transparent) 0%, transparent 70%),
        radial-gradient(40% 20% at 50% 0%,
            color-mix(in oklab, var(--brand-2) 20%, transparent) 0%, transparent 100%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 100%);
}

.accent {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: none;
}

/* ============================
   HERO HÉBERGEMENT – PARALLAX
   ============================ */

.hotel-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem) 0;

    /* Parallax */
    background: url("/assets/img/hotelJost.png") center/cover no-repeat fixed;

    overflow: hidden;
}

/* Overlay sombre pour lisibilité globale */
.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    /* backdrop-filter: blur(2px); */
}

/* ============================
   CARD TRANSLUCIDE
   ============================ */

.hotel-card {
    position: relative;
    z-index: 3;
    width: min(95%, 1200px);
    margin: 0 auto;
    padding: clamp(1.8rem, 4vw, 3rem);
    border-radius: 20px;

    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

/* Ligne dégradée à gauche (détail DA) */
.hotel-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    opacity: 0.9;
}

/* Sur mobile, on simplifie un peu */
@media (max-width: 600px) {
    .hotel-card::before {
        display: none;
    }

    .hotel-card {
        padding-inline: 1.4rem;
    }
}

/* ============================
   BADGE "HÉBERGEMENT OFFERT"
   ============================ */

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(0, 0, 0, 0.55);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 1.2rem;
    opacity: .95;


    position: relative;
    z-index: 5;
    animation: hotelGlow 2.4s ease-in-out infinite;
}

/* Animation subtile */
@keyframes hotelGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.0),
            0 0 0 rgba(101, 211, 205, 0.0);
    }

    50% {
        box-shadow: 0 0 22px rgba(255, 255, 255, 0.45),
            0 0 14px rgba(101, 211, 205, 0.5);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.0),
            0 0 0 rgba(101, 211, 205, 0.0);
    }
}

.hotel-badge i {
    font-size: .9rem;
}

.hotel-badge span {
    white-space: nowrap;
}

/* ============================
   TEXTES
   ============================ */

.hotel-kicker {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 700;
    font-size: .85rem;
    opacity: .85;
    margin-bottom: .6rem;
}

.hotel-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    /* 
            background: linear-gradient(90deg, var(--brand), var(--brand-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
}

.hotel-text {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    opacity: .95;
    line-height: 1.55;
    max-width: 75%;
    margin: 0 auto;
}

/* ============================
   WAVES POUR SECTION HOTEL (TOP + BOTTOM)
   ============================ */

.hotel-hero.section-shape {
    position: relative;
    overflow: hidden;
}

/* WAVE TOP */
.hotel-hero.section-shape::before {
    content: "";
    position: absolute;
    top: -2px;
    /* bordure invisible */
    left: 0;
    width: 100%;
    height: 12vw;
    /* hauteur suffisante pour le responsive */
    max-height: 160px;
    background: var(--bg-top);
    /* couleur de transition venant du dessus */
    z-index: 3;

    -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 52.16%, 2% 47.08%, 4% 41.49%, 6% 35.85%, 8% 30.62%, 10% 26.24%,
            12% 23.07%, 14% 21.37%, 16% 21.29%, 18% 22.84%, 20% 25.87%, 22% 30.15%, 24% 35.32%,
            26% 40.94%, 28% 46.56%, 30% 51.70%, 32% 55.94%, 34% 58.93%, 36% 60.42%, 38% 60.28%,
            40% 58.54%, 42% 55.32%, 44% 50.91%, 46% 45.66%, 48% 40.01%, 50% 34.43%, 52% 29.38%,
            54% 25.28%, 56% 22.48%, 58% 21.19%, 60% 21.54%, 62% 23.49%, 64% 26.88%, 66% 31.43%,
            68% 36.76%, 70% 42.43%, 72% 47.96%, 74% 52.91%, 76% 56.85%, 78% 59.47%, 80% 60.54%,
            82% 59.98%, 84% 57.83%, 86% 54.27%, 88% 49.60%, 90% 44.20%, 92% 38.52%, 94% 33.04%,
            96% 28.20%, 98% 24.41%, 100% 21.99%);
    clip-path: polygon(100% 0%, 0% 0%, 0% 52.16%, 2% 47.08%, 4% 41.49%, 6% 35.85%, 8% 30.62%, 10% 26.24%,
            12% 23.07%, 14% 21.37%, 16% 21.29%, 18% 22.84%, 20% 25.87%, 22% 30.15%, 24% 35.32%,
            26% 40.94%, 28% 46.56%, 30% 51.70%, 32% 55.94%, 34% 58.93%, 36% 60.42%, 38% 60.28%,
            40% 58.54%, 42% 55.32%, 44% 50.91%, 46% 45.66%, 48% 40.01%, 50% 34.43%, 52% 29.38%,
            54% 25.28%, 56% 22.48%, 58% 21.19%, 60% 21.54%, 62% 23.49%, 64% 26.88%, 66% 31.43%,
            68% 36.76%, 70% 42.43%, 72% 47.96%, 74% 52.91%, 76% 56.85%, 78% 59.47%, 80% 60.54%,
            82% 59.98%, 84% 57.83%, 86% 54.27%, 88% 49.60%, 90% 44.20%, 92% 38.52%, 94% 33.04%,
            96% 28.20%, 98% 24.41%, 100% 21.99%);
}

/* WAVE BOTTOM (inversée proprement) */
.hotel-hero.section-shape::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 12vw;
    max-height: 160px;
    background: var(--bg-bot);
    /* couleur de la section suivante */
    z-index: 3;

    transform: scaleY(-1);
    /* astuce : on retourne la forme */
    transform-origin: center;

    -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 52.16%, 2% 47.08%, 4% 41.49%, 6% 35.85%, 8% 30.62%, 10% 26.24%,
            12% 23.07%, 14% 21.37%, 16% 21.29%, 18% 22.84%, 20% 25.87%, 22% 30.15%, 24% 35.32%,
            26% 40.94%, 28% 46.56%, 30% 51.70%, 32% 55.94%, 34% 58.93%, 36% 60.42%, 38% 60.28%,
            40% 58.54%, 42% 55.32%, 44% 50.91%, 46% 45.66%, 48% 40.01%, 50% 34.43%, 52% 29.38%,
            54% 25.28%, 56% 22.48%, 58% 21.19%, 60% 21.54%, 62% 23.49%, 64% 26.88%, 66% 31.43%,
            68% 36.76%, 70% 42.43%, 72% 47.96%, 74% 52.91%, 76% 56.85%, 78% 59.47%, 80% 60.54%,
            82% 59.98%, 84% 57.83%, 86% 54.27%, 88% 49.60%, 90% 44.20%, 92% 38.52%, 94% 33.04%,
            96% 28.20%, 98% 24.41%, 100% 21.99%);
    clip-path: polygon(100% 0%, 0% 0%, 0% 52.16%, 2% 47.08%, 4% 41.49%, 6% 35.85%, 8% 30.62%, 10% 26.24%,
            12% 23.07%, 14% 21.37%, 16% 21.29%, 18% 22.84%, 20% 25.87%, 22% 30.15%, 24% 35.32%,
            26% 40.94%, 28% 46.56%, 30% 51.70%, 32% 55.94%, 34% 58.93%, 36% 60.42%, 38% 60.28%,
            40% 58.54%, 42% 55.32%, 44% 50.91%, 46% 45.66%, 48% 40.01%, 50% 34.43%, 52% 29.38%,
            54% 25.28%, 56% 22.48%, 58% 21.19%, 60% 21.54%, 62% 23.49%, 64% 26.88%, 66% 31.43%,
            68% 36.76%, 70% 42.43%, 72% 47.96%, 74% 52.91%, 76% 56.85%, 78% 59.47%, 80% 60.54%,
            82% 59.98%, 84% 57.83%, 86% 54.27%, 88% 49.60%, 90% 44.20%, 92% 38.52%, 94% 33.04%,
            96% 28.20%, 98% 24.41%, 100% 21.99%);
}

.transition-line {
    text-align: center;
    margin: 3rem 0 2.5rem;
    opacity: 0;
    animation: transitionPop .7s cubic-bezier(.19, 1, .22, 1) .1s forwards;
}

.transition-line p {
    font-size: clamp(2rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: .03em;
    margin: 0;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Petite animation d’apparition fun */
@keyframes transitionPop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.96);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hotel-badge .hotel-icon {
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

/* ============================
   SECTION LIEU – SPLIT
   ============================ */

.venue-split {
    position: relative;
    padding: clamp(3rem, 5vw, 5rem) 0;
    /* background: linear-gradient(180deg, var(--bg-top), var(--bg-bot)); */
    color: var(--text-light);
    overflow: hidden;
    /* pour contenir la wave du bas */
}

.venue-split .container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* Texte */

.venue-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 2rem;
}

.venue-text {
    opacity: .92;
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.venue-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .4rem;
}

.venue-list li {
    position: relative;
    padding-left: 1.4rem;
    opacity: .92;
}

.venue-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

/* Colonne visuelle */

.venue-stack {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.venue-block {
    background: rgba(3, 7, 15, 0.75);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .5);
}

.venue-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.venue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .4s ease, filter .3s ease;
}

.venue-block:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.venue-caption {
    padding: 1rem 1.2rem 1.3rem;
    background: #141C2B;
}

.venue-tag {
    display: inline-block;
    padding: .2rem .75rem;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    margin-bottom: .4rem;
}

.venue-tag--evening {
    border-color: var(--brand);
}

.venue-caption p {
    margin: 0;
    opacity: .92;
    font-size: .95rem;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .venue-caption {
        text-align: left;
    }
}

/* ============================
   INFO COMPLÉMENTAIRES — LIEU
   ============================ */

.venue-extra {
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.venue-extra .container {
    width: min(1000px, 92%);
    margin-inline: auto;
}

/* GRID PRINCIPALE */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.4rem, 2vw, 2rem);
}

/* CARDS */
.vcard {
    background: #141C2B;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.6rem 1.8rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/* HEADER DES CARDS */
.vhead {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
}

.vhead h3 {
    margin: 0;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    background: linear-gradient(90deg, #fff 20%, var(--brand) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-family: MontserratBold, sans-serif;
}

.vicon {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* ITEMS ADRESSE */
.vitem {
    margin-bottom: .9rem;
}

.vtext {
    margin: 0 0 .3rem;
    font-size: .95rem;
    opacity: .9;
}

/* Liens Google Maps */
.vlink {
    font-size: .9rem;
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    transition: opacity .25s ease;
}

.vlink:hover {
    opacity: .7;
}

/* LISTE HORAIRES */
.vlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vlist li {
    font-size: .95rem;
    opacity: .9;
}

.vlist strong {
    color: #fff;
    font-weight: 700;
}

/* svg localisation */

/* Fond global de la section lieu */
.venue-split {
    position: relative;
    padding: clamp(3rem, 5vw, 5rem) 0;
    /* background: linear-gradient(180deg, var(--bg-top), var(--bg-bot)); */
    color: var(--text-light);
    overflow: hidden;
}

/* Le contenu doit passer au-dessus du watermark */
.venue-split .container {
    position: relative;
    width: min(1200px, 92%);
    margin-inline: auto;
    z-index: 1;
}

/* Watermark localisation derrière le texte */
.venue-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-start;
    pointer-events: none;
    z-index: 0;
    align-content: flex-start;
    align-items: flex-start;
    margin-top: 9rem;
}

/* On règle la taille / position / transparence du pin */
.venue-watermark-svg {
    width: min(420px, 60vw);
    height: auto;
    opacity: 0.03;
    color: var(--brand);
    transform: translate(-8%, -5%);
}

/* =========================
   PROGRAMME
   ========================= */
#programme.programme {
    position: relative;
    padding: clamp(2.6rem, 4vw, 4rem) 0;
    background:
        radial-gradient(80% 50% at 50% 0%, color-mix(in oklab, var(--brand) 24%, transparent) 0%, transparent 70%),
        radial-gradient(40% 20% at 50% 0%, color-mix(in oklab, var(--brand-2) 16%, transparent) 0%, transparent 100%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 100%);
    isolation: isolate;
    overflow: hidden;
}

#programme .prog-container {
    width: min(1100px, 92%);
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.prog-tabs {
    display: flex;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.prog-tabs .tab {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    padding: .6rem 1rem;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.prog-tabs .tab .tab-sub {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #c7d3e3;
    opacity: .9;
}

.prog-tabs .tab:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .14);
}

.prog-tabs .tab.is-active {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #06251b;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .32);
}

.prog-tabs .tab.is-active .tab-sub {
    color: #083028;
}

.prog-panels .panel {
    display: block;
}

.prog-panels .panel[hidden] {
    display: none;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .25), rgba(255, 255, 255, .06));
}

@media (max-width:720px) {
    .timeline::before {
        left: 24px;
    }
}

.slot {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: start;
}

.slot+.slot {
    margin-top: 1rem;
}

@media (max-width:720px) {
    .slot {
        grid-template-columns: 64px 1fr;
    }
}

.slot .time {
    color: #dfe8f4;
    font-weight: 800;
    letter-spacing: .02em;
    text-align: right;
    padding-top: .5rem;
}

@media (max-width:720px) {
    .slot .time {
        text-align: left;
    }
}

.slot .time::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-left: .75rem;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    box-shadow: 0 0 0 4px rgba(67, 181, 139, .18);
    transform: translateY(1px);
}

@media (max-width:720px) {
    .slot .time::after {
        margin-left: .5rem;
    }
}

.slot .card {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: clamp(1rem, 2vw, 1.25rem);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .3);
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.slot .card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}

.slot .card.party {
    border-color: transparent;
    background: linear-gradient(180deg, rgba(67, 181, 139, .16), rgba(23, 179, 161, .12));
}

.slot .card .title {
    margin: 0 0 .35rem 0;
    font-weight: 900;
    font-size: clamp(1.1rem, 2.1vw, 1.35rem);
    background: linear-gradient(90deg, #ffffff 40%, var(--brand) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slot .card .desc {
    margin: 0;
    color: #c7d3e3;
}

.slot .card .meta {
    margin-top: .6rem;
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.slot .card .tag {
    font-size: .75rem;
    font-weight: 800;
    color: #06251b;
    padding: .2rem .5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

/* Apparition douce au scroll - progressive enhancement */
#programme .slot {
    opacity: 1;
    transform: none;
}

#programme.js-enhanced .slot {
    opacity: 0;
    transform: translateY(14px);
}

#programme.js-enhanced .slot.in-view {
    opacity: 1;
    transform: none;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .6s cubic-bezier(.22, 1, .36, 1);
}

@media (prefers-reduced-motion:reduce) {

    #programme.js-enhanced .slot,
    #programme.js-enhanced .slot.in-view {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Animation visibilité sur les buttons de prog */
.tab-hint {
    position: relative;
    outline: none;
    /* halo doux qui “respire” tant que non cliqué */
    animation: tabPulse 1.2s ease-out infinite;
}

@keyframes tabPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 211, 205, .55);
        transform: translateY(0);
    }

    60% {
        box-shadow: 0 0 0 .55rem rgba(101, 211, 205, 0);
        transform: translateY(-1px);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(101, 211, 205, 0);
        transform: translateY(0);
    }
}

@keyframes tabGlint {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/****************************************************
 * WRAPPER GLOBAL
 ****************************************************/
.registration-section {
    position: relative;
    padding: clamp(3rem, 4vw, 5rem) 0;
}

/****************************************************
 * CARTE FORMULAIRE
 ****************************************************/
.registration-shell {
    position: relative;
    z-index: 2;
    max-width: 1600px;
}

.registration-layout {
    background: rgba(10, 20, 25, 0.75);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);
}

/****************************************************
 * COLONNE GAUCHE (texte)
 ****************************************************/
.registration-side {
    background: radial-gradient(circle at top left,
            rgba(101, 211, 205, 0.45),
            rgba(42, 61, 69, 0.45),
            transparent 80%);
    padding: 2rem;
    color: #dfe8f4;
}

.registration-side-title {
    font-size: 2.5rem !important;
    font-weight: 800;
    letter-spacing: .08em;
    background: linear-gradient(90deg, var(--brand), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.registration-side-text {
    margin: 1rem 0;
    font-size: .95rem;
    opacity: .9;
}

.registration-side-list {
    padding-left: 1rem;
    list-style: none;
}

.registration-side-list li {
    margin-bottom: .3rem;
    position: relative;
    padding-left: 1.2rem;
}

.registration-side-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand);
    font-size: 1.2rem;
}

/****************************************************
 * COLONNE FORMULAIRE
 ****************************************************/
.registration-main {
    padding: clamp(2rem, 3vw, 3rem);
    color: #e6edf7;
}

.reg-header h1 {
    font-size: 2rem;
}

.form-group .is-invalid {
    border-color: #ff6b81;
    box-shadow:
        0 0 0 1px rgba(255, 107, 129, 0.6),
        0 0 16px rgba(255, 107, 129, 0.45);
}

/****************************************************
 * BLOCS DE SECTIONS
 ****************************************************/
.reg-block {
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.reg-block:first-of-type {
    margin-top: 1rem;
    border-top: none;
}

.reg-block-title {
    font-size: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--brand) !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

/****************************************************
 * GRID 2 COLS
 ****************************************************/
.reg-two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.2rem 1.4rem;
}

/****************************************************
 * CHAMPS DE FORMULAIRE
 ****************************************************/
.registration-main .form-group label {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .3rem;
}

.registration-main .form-control {
    background: rgba(5, 14, 22, 0.85);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #dfe8f4;
    padding: .7rem 1rem;
    font-size: .95rem;
    transition: border .2s ease, box-shadow .2s ease;
}

.registration-main .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(101, 211, 205, .25);
    outline: none;
}

.reg-radio-row {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.reg-radio-pill {
    background: rgba(15, 25, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: .45rem 1.2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
    user-select: none;
}

.reg-radio-pill:hover {
    transform: translateY(-2px);
}

.reg-radio-pill input {
    display: none;
}

/* checked */
.reg-radio-pill input:checked+span,
.reg-radio-pill:has(input:checked) {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #06251b !important;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(101, 211, 205, .4);
}

.reg-radio-pill span {
    color: #dfe8f4;
    font-weight: 600;
}

.reg-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: .4rem;
}

.btnSub {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    padding: .8rem 1rem;
    border-radius: 999px;
    color: #06251b;
    font-weight: 800;
    border: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .4);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btnSub:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .registration-side {
        text-align: center;
    }

    .registration-side-list {
        text-align: left;
        margin: auto;
        width: fit-content;
    }
}

/* ===== bandeau cta + mascotte ===== */
.cta-strip {
    margin-top: 2rem;
    position: relative;
    overflow: visible;
}

.cta-strip-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* ===== ROW : Mascotte + H2 ===== */
.cta-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0 !important;
}

/* Mascotte à gauche */
.about-mascot {
    width: clamp(140px, 22vw, 260px);
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.45));
    transition: transform .25s ease, filter .25s ease;
}

/* Hover */
.cta-strip:hover .about-mascot {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 14px 32px rgba(0, 0, 0, .55));
}

/* Titre à droite */
.cta-kicker {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    text-align: left;
}

/* ===== TEXTE EN DESSOUS, CENTRÉ ===== */
.cta-text {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== CHEVRON parfaitement centré ===== */
.cta-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.cta-scroll .chevron {
    display: block;
    width: 28px;
    height: 28px;
    border-right: 3px solid rgba(255, 255, 255, .85);
    border-bottom: 3px solid rgba(255, 255, 255, .85);
    transform: rotate(45deg);
    opacity: 0.9;
    animation: chevronDown 1.6s infinite ease-in-out;
}

@keyframes chevronDown {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: .4;
    }

    50% {
        transform: translateY(6px) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translateY(0) rotate(45deg);
        opacity: .4;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 650px) {
    .cta-top-row {
        flex-direction: column;
        text-align: center;
    }

    .cta-kicker {
        text-align: center;
    }

    .about-mascot {
        width: 170px;
    }
}

/* décalé + transparent */
.cta-strip.cta-anim-ready .cta-anim-left,
.cta-strip.cta-anim-ready .cta-anim-right {
    opacity: 0;
    transition:
        opacity 0.6s cubic-bezier(.22, 1, .36, 1),
        transform 0.6s cubic-bezier(.22, 1, .36, 1);
    will-change: transform, opacity;
}

/* off-screen*/
.cta-strip.cta-anim-ready:not(.is-in-view) .cta-anim-left {
    transform: translateX(-160px);
}

.cta-strip.cta-anim-ready:not(.is-in-view) .cta-anim-right {
    transform: translateX(160px);
}

/* ENTRÉE SMOOTH */
.cta-strip.cta-anim-ready.is-in-view .cta-anim-left,
.cta-strip.cta-anim-ready.is-in-view .cta-anim-right {
    opacity: 1;
    transform: translateX(0);
}

.cta-strip.cta-anim-ready.is-in-view .cta-text.cta-anim-right {
    transition-delay: 0.08s;
}


/* ===== Section thx ===== */
.thanks-text h2 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 700;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.thanks-text .lead {
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--brand, #65d3cd);
}

.thanks-text p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.55;
    max-width: 700px;
    margin-inline: auto;
    opacity: 0.97;
    animation: textFade 0.8s ease-out 0.15s both;
    margin-bottom: 8rem;
}

.thanks-centered {
    text-align: center;
}

/* WRAPPER PHOTO CENTRÉ */
.thanks-photo {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto 2.5rem;
    z-index: 0;
}

.thanks-photo::after {
    content: "";
    position: absolute;
    top: 100%;
    /* un peu sous le centre de la photo */
    left: 50%;
    width: 100%;
    /* presque la largeur de la photo */
    height: 75%;
    /* halo concentré sous la zone principale */
    transform: translate(-50%, -50%);
    border-radius: 999px;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle,
            rgba(101, 211, 205, 0.30) 0%,
            /* coeur lumineux */
            rgba(101, 211, 205, 0.14) 45%,
            /* halo */
            transparent 80%
            /* fondu propre */
        );

    filter: blur(45px);
    /* douceur sans bord net */
    opacity: 0.55;
    /* visible mais pas fluo */

    animation: glowPulseSoft 4s ease-in-out infinite;
}

/* IMAGE CENTRÉE */
.thanks-photo img {
    width: clamp(340px, 60vw, 820px);
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1;
    margin: 0 auto;

    animation: photoPop 0.9s ease-out both;
}

/* ==== ANIMATIONS ==== */
@keyframes photoPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes textFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Halo qui respire doucement (mais visible) */
@keyframes glowPulseSoft {

    0%,
    100% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* ---------- FOOTER GLOBAL ---------- */

.footer-section {
    position: relative;
    color: var(--text-light);
    isolation: isolate;
}

/* ---------- WRAPPER + IMAGE PARALLAX ---------- */

#imgFooter {
    position: relative;
    overflow: hidden;
    padding-top: 7rem;
}

.imgFooter-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

/* Image de fond en <img> (parallax possible) */
.footer-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* tout en dessous */
    pointer-events: none;
    transform: translateY(0);
}

/* Overlays DA (plus légers) */
#imgFooter::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #00050cff;
    mix-blend-mode: screen;
    opacity: 0.65;
    /* AVANT c’était quasi 0.8 + voile noir : on allège */
    pointer-events: none;
}

#imgFooter::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.28);
    /* AVANT: 0.55 => beaucoup plus clair */
    pointer-events: none;
}

/* Contenu au-dessus de tout ça */
.footer-inner {
    position: relative;
    z-index: 2;
}

/* Un petit padding-top global pour que la wave ne “coupe” pas le form */
.footer-section .footer-inner {
    padding-top: 3.5rem;
    /* tu peux ajuster à 3rem / 4rem selon ton shape */
}



/* ---------- COLONNE GAUCHE ---------- */
.footer-extra-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    position: relative;
    z-index: 1;
}

/* Vidéo responsive propre */
.footer-extra-img video {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    pointer-events: none;

    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Halo */
.footer-extra-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(circle,
            rgba(239, 240, 240, 0.6) 0%,
            rgba(239, 240, 240, 0.0) 55%);
    filter: blur(18px);
    z-index: -9999;
}

/* Responsive video */
@media (max-width: 575.98px) {
    .footer-extra-img video {
        max-width: 200px;
        border-radius: 8px;
    }

    .footer-extra-img::before {
        background: none;
        filter: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .footer-extra-img video {
        max-width: 240px;
    }

    .footer-extra-img::before {
        background: none;
        filter: none;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .footer-extra-img video {
        max-width: 280px;
    }

    .footer-extra-img::before {
        background: none;
        filter: none;
    }
}

@media (min-width: 1200px) {
    .footer-extra-img video {
        max-width: 300px;
    }

    .footer-extra-img::before {
        width: 160%;
        height: 160%;
        filter: blur(40px);
    }
}

.footer-left {
    min-height: 100%;
}

.footer-brand .footer-logo {
    max-width: 350px;
    height: auto;
}

.footer-copy p {
    max-width: 32rem;
}

.footer-bottom {
    margin-top: auto;
    position: relative;
    z-index: 9999;
}

.footer-social i {
    font-size: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #06251b;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease, box-shadow .25s ease;

    position: relative;
    z-index: 9999;
}

.footer-social i:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 0 12px rgba(67, 181, 139, .45);
}

/* ---------- FORMULAIRE FOOTER : skin type registration ---------- */
.footer-form {
    background: color-mix(in oklab, #00091400 45%, #0000003b 55%);
    /* AVANT : 65% => on éclaircit un peu la carte aussi */
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    color: var(--text-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-form {
    padding-top: 0;
}

/* Inputs / textarea style pill comme le registration */
.footer-form .form-control {
    background: radial-gradient(circle at top left,
            color-mix(in oklab, var(--brand) 12%, #00000045 88%),
            color-mix(in oklab, var(--bg-bot) 85%, #00000000 15%));
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding-inline: 1.1rem;
    padding-block: 0.6rem;
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.25s ease,
        transform 0.15s ease;
}

.footer-form textarea.form-control {
    border-radius: 1rem;
    min-height: 120px;
    resize: vertical;
}

.footer-form label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: color-mix(in oklab, var(--text-light) 80%, #a4b2c6 20%);
    margin-bottom: 0.25rem;
}

.footer-form .form-control::placeholder {
    color: rgba(223, 232, 244, 0.55);
}

.footer-form small.text-danger {
    font-size: 0.75rem;
}

/* Focus */
.footer-form .form-control:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow:
        0 0 0 1px color-mix(in oklab, var(--brand) 70%, transparent),
        0 0 18px color-mix(in oklab, var(--brand) 45%, transparent);
    background:
        radial-gradient(circle at top left,
            color-mix(in oklab, var(--brand) 24%, #000 76%),
            color-mix(in oklab, var(--bg-bot) 75%, #000 25%));
    transform: translateY(-1px);
}

/* Invalid */
.footer-form .form-control.is-invalid {
    border-color: #ff6b81;
    box-shadow:
        0 0 0 1px rgba(255, 107, 129, 0.6),
        0 0 16px rgba(255, 107, 129, 0.45);
}

/* Bouton submit raccord */
.footer-form .btnSub {
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    color: #050a10;
    font-weight: 600;
    letter-spacing: 0.11em;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        filter 0.15s ease;
}

.footer-form .btnSub:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.07);
    color: #ffffffff;

}

.footer-form .btnSub:active {
    transform: translateY(0);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991.98px) {
    .footer-inner {
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-form {
        margin-top: 1.5rem;
    }
}





























/* pagination dashboard */
tr[id^="cpdf-edit-"] {
    display: none;
}

.pagination .page-item .btn {
    border-radius: .25rem;
}

/* optionnel */
.pagination .page-item.active .btn,
.pagination .page-item .btn:hover {
    background-color: #2A99B0;
    color: #fff;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #2A99B0;
    border-color: #458996;
}

.page-item a {
    color: #458996;
}

.container1 {
    width: 100%;
    overflow: hidden;
}

.inner-container {
    white-space: nowrap;
    transition: transform 0.5s ease;
}

.image {
    display: inline-block;
    width: 300px;
    height: auto;
    margin-right: 20px;
}

.gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
}

.gallery:hover .gallery__image {
    filter: grayscale(1);
}

.gallery__column {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.gallery__link {
    margin: 2px;
    overflow: hidden;
}

.gallery__link:hover .gallery__image {
    filter: grayscale(0);
}

.gallery__link:hover .gallery__caption {
    opacity: 1;
}

.gallery__thumb {
    position: relative;
}

.gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}

.gallery__image:hover {
    transform: scale(1.1);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
}


/* _____________________________________________________________________ */

.test {
    width: 30rem;
    margin-bottom: 6rem;
}

a {
    color: #355c6d;
}

a:hover {
    color: #355c6d;
    text-decoration: none;
}

.example-header {
    background: #3d4351;
    color: #fff;
    font-weight: 300;
    padding: 3em 1em;
    text-align: center;
}

.example-header h1 {
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.example-header p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.example-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 3em 0;
    border-bottom: 1px solid #e4eaec;
}

.example-title p {
    margin: 0 auto;
    font-size: 16px;
    max-width: 400px;
}

.timeline {
    line-height: 1.4em;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.timeline h1,
.timeline h2,
.timeline h3,
.timeline h4,
.timeline h5,
.timeline h6 {
    line-height: inherit;
}

.timeline-item {
    padding-left: 40px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-info {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 0.5em 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.timeline-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
}

.timeline-marker:before {
    background: #43b58b;
    border: 3px solid transparent;
    border-radius: 100%;
    content: "";
    display: block;
    height: 15px;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.timeline-marker:after {
    content: "";
    width: 3px;
    background: #ccd5db;
    display: block;
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 6px;
}

.timeline-item:last-child .timeline-marker:after {
    content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
    background: transparent;
    border: 3px solid #43b58b;
}

.timeline-content {
    padding-bottom: 40px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
    font-size: medium;
}

.period {
    padding: 0;
}

.period .timeline-info {
    display: none;
}

.period .timeline-marker:before {
    background: transparent;
    content: "";
    width: 15px;
    height: auto;
    border: none;
    border-radius: 0;
    top: 0;
    bottom: 30px;
    position: absolute;
    border-top: 3px solid #ccd5db;
    border-bottom: 3px solid #ccd5db;
}

.period .timeline-marker:after {
    content: "";
    height: 32px;
    top: auto;
}

.period .timeline-content {
    padding: 40px 0 70px;
}

.period .timeline-title {
    margin: 0;
}

.timeline-title {
    margin-bottom: 2rem;
    /* margin-top: 2rem; */
    font-weight: 800;
    color: #355c6d;
}

.marker-outline .timeline-marker:before {
    background: transparent;
    border-color: #355c6d;
}

.marker-outline .timeline-item:hover .timeline-marker:before {
    background: #355c6d;
}


#imgEmail {
    width: 12rem;
}

.rowFooter {
    /* --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0; */
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    /* margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x)); */
    align-content: stretch;
    justify-content: center;
    align-items: flex-end;
}

.row2 {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    /* padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5); */
    margin-top: var(--bs-gutter-y);
}

.bgCarte {
    background-color: #355c6d;
    /* clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 31%);
     padding-top: 6em; */
    /* padding-bottom: 10em; */
}

.fa-bars:before {
    color: #355c6d;
}


#rowWidth {
    max-width: 60rem;
}

#talkBubble {
    font-family: comfortaa, sans-serif;
    position: relative;
    margin: 1em 1em 1em;
    padding: 1em 1em .3em 1em;
    background-color: #cecece;
    color: #fff;
    box-shadow: 5px 4px 10px rgb(0 0 0 / 30%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10em;
    padding: 3em
}

#talkBubble:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 150px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-right: 26px solid #cecece;
    border-bottom: 13px solid transparent
}

.bg-récap {
    background-color: #116879c7;
    border-radius: 1em;
    margin-bottom: 1em;
    margin-top: 1em;
    color: #fafafa;
    padding: 1em
}

.bg-récap2 {
    background-color: rgba(212, 212, 212, .699);
    border-radius: 1em;
    margin-bottom: 1em;
    margin-top: 1em;
    padding: 1em
}

.totalRécap {
    font-size: 2rem;
}

#table {
    padding-left: 5em;
    padding-right: 5em
}

tr {
    cursor: pointer
}

td {
    height: 3.3rem;
    font-weight: 600
}

tr:hover {
    background-color: #172e36c7;
    color: #eee
}

tr:nth-of-type(odd) {
    background: #eee
}

tr {
    background-color: rgba(212, 212, 212, .699)
}

tr:nth-of-type(odd):hover {
    background-color: #172e36c7;
    color: #eee
}

th {
    text-transform: uppercase;
    background-color: #116879c7 !important;
    color: #eee
}

.modal {
    font-weight: 600
}

#imgBottom {
    width: 100%;
}

#fontBottom {
    background-color: #fafafa;
    color: #303030;
    font-weight: 900
}

.cursor>div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    box-sizing: border-box;
    padding: 10px 2px;
    text-align: center
}

.cursor>div:nth-child(odd) {
    background: #eee
}

.cursor>div:hover {
    opacity: .25
}

.png {
    cursor: url("https://img.icons8.com/plasticine/100/000000/google-maps-new.png"), auto
}

.hFooter {
    flex-direction: column;
    height: 100%;
    display: flex;
    justify-content: space-between
}

textarea.form-control {
    min-height: calc(5.5em + .75rem + 2px)
}

::placeholder {
    color: #aaa !important
}

.fontVertical {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-family: MontserratBold, sans-serif;
    font-size: 6em;
    margin-right: 1em;
    /* color: #adadad */
    color: #bbc5cad3;
}

#imgColis {
    width: 16em;
    display: block
}

.h4 {
    line-height: 45px
}

section {
    overflow: hidden
}

a:link {
    text-decoration: none
}

a:hover {
    color: #303030;
    text-decoration: none
}

#fontBottom,
a {
    font-weight: 600;
    color: #303030
}

.dateAnim {
    color: #1c86ba;
    font-weight: 600;
    font-family: comfortaa, sans-serif;
    font-size: 2em;
    letter-spacing: 4px
}

#imgHere {
    width: 100%;
    margin-top: 5em
}

/* 
.cardRounded {
    font-family: Comfortaa, sans-serif;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin: 20px;
    max-width: 240px;
    width: 100%;
    color: #a19f9f;
    font-size: 8px;
    box-shadow: none !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.cardRounded *,
.cardRounded:after,
.cardRounded:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    transition: all .3s linear
}

.cardRounded:after,
.cardRounded:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    border: 2px solid #bbb;
    border-color: transparent #bbb
}

.cardRounded img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
    border-radius: 50%;
    padding: 10px
}

.cardRounded figcaption {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    opacity: 0;
    background-color: #172e36c7;
    border-radius: 50%
}

.cardRounded p {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 4em;
    z-index: 1
}

.cardRounded i {
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 4em;
    z-index: 1
}

.cardRounded a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1
}

.cardRounded.hover figcaption,
.cardRounded:hover figcaption {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.cardRounded.hover:after,
.cardRounded.hover:before,
.cardRounded:hover:after,
.cardRounded:hover:before {
    border-width: 10px
}

.cardRounded.hover:before,
.cardRounded:hover:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.cardRounded.hover:after,
.cardRounded:hover:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

figcaption>i {
    font-size: 5em !important
} */

body,
html {
    scroll-behavior: smooth;
    font-family: Montserrat, sans-serif;
    color: #ffffff;
    background-color: #000914;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/montserrat/Montserrat-ExtraLight.ttf") format("truetype")
}

@font-face {
    font-family: MontserratBold;
    src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype")
}

@font-face {
    font-family: comfortaa;
    src: url("../fonts/comfortaa/Comfortaa-Regular.ttf") format("truetype")
}

@font-face {
    font-family: hammersmith;
    src: url("../fonts/hammersmith/HammersmithOne-Regular.ttf") format("truetype")
}

.flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

/* .hTop {
            position: absolute;
            top: 50%;
            transform: translateY(-50%)
        } */

.row {
    justify-content: center
}

.containerForm {
    /* background: radial-gradient(farthest-side at bottom left, #2f8d7a, #365B6D), radial-gradient(farthest-corner at bottom right, #2f8d7a, #365B6D); */
    color: #fff;
    margin-bottom: 3em;
    /* border-radius: 3em */
    /* clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%, 0 100%, 0 31%); */
    /* padding-top: 4em; */
    /* padding-bottom: 4em; */
}

.containerForm2 {
    /* background: radial-gradient(farthest-side at bottom left, #246756, #365B6D), radial-gradient(farthest-corner at bottom right, #246756, #365B6D); */
    background-color: #415E6A;
    color: #fff
}

h1 {
    font-weight: 600;
    letter-spacing: 7px
}

.h4,
.h5 {
    font-weight: 600
}

#btnUp {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 25px;
    z-index: 9999;
    font-size: 18px;
    border: none;
    outline: 0;
    color: #4899d0;
    padding: 15px;
    border-radius: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer
}

#btnUp:hover {
    color: #3CB49B;
    box-shadow: 0 0 0
}

#imgLogo {
    max-height: 5.1rem;
    margin-bottom: -7px;
    margin-top: -7px
}

li {
    font-weight: 900
}


/* BODY LOGIN */
.brand-login-body#imgHeader {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at 10% 20%, rgba(67, 181, 139, 0.22) 0, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(23, 179, 161, 0.16) 0, transparent 55%),
        linear-gradient(180deg, var(--bg-top), var(--bg-bot));
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper pour centrer la card */
.flex-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* CARD LOGIN – effet glass + halo dans la DA */
#bg-log.login-card {
    position: relative;
    background: rgba(0, 9, 20, 0.94);
    border-radius: var(--radius);
    border: 1px solid rgba(67, 181, 139, 0.5);
    box-shadow:
        var(--shadow),
        0 0 40px rgba(23, 179, 161, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

#bg-log.login-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 20% 0%, rgba(67, 181, 139, 0.18) 0, transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(23, 179, 161, 0.18) 0, transparent 55%);
    opacity: 0.9;
    z-index: -1;
}

/* HEADER DU FORMULAIRE */
.login-header {
    color: var(--ink);
}

.login-logo {
    max-width: 360px;
    height: auto;
}

.login-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232, 238, 246, 0.72);
}

.login-title {
    font-size: 1.5rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* FORMULAIRE */
.login-card form {
    z-index: 1;
}

.login-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(232, 238, 246, 0.9);
}

.login-input.form-control {
    background: rgba(0, 9, 20, 0.9);
    border: 1px solid rgba(179, 192, 209, 0.5);
    color: var(--ink);
    border-radius: 0.9rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
}

.login-input.form-control::placeholder {
    color: var(--muted);
}

.login-input.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 0.12rem rgba(67, 181, 139, 0.55);
    border-color: var(--brand);
}

/* Erreur */
.login-input.form-control.is-invalid {
    border-color: #e55353;
    box-shadow: 0 0 0 0.08rem rgba(229, 83, 83, 0.35);
}

/* Icône toggle password */
.field-icon.toggle-password {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    font-size: 0.95rem;
    color: rgba(232, 238, 246, 0.7);
    cursor: pointer;
}

/* BOUTONS dans la DA */
.btn-brand-primary {
    background: var(--brand);
    border-radius: 999px;
    border: none;
    padding: 0.7rem 1.4rem;
    color: #001016;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 12px 30px rgba(67, 181, 139, 0.45);
}

.btn-brand-primary:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(23, 179, 161, 0.6);
}

.btn-brand-secondary {
    background: transparent;
    border-radius: 999px;
    border: 1px solid rgba(232, 238, 246, 0.6);
    padding: 0.65rem 1.4rem;
    color: rgba(232, 238, 246, 0.9);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 0.4rem;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn-brand-secondary:hover {
    background: rgba(232, 238, 246, 0.08);
    color: #ffffff;
    border-color: rgba(232, 238, 246, 0.9);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 576px) {
    #bg-log.login-card {
        border-radius: 14px;
        padding-inline: 0.2rem;
    }

    .login-title {
        font-size: 1.25rem;
    }

    .login-logo {
        max-width: 260px;
        height: auto;
    }
}

#imgFooter {
    background: url("../img/lhfoot.jpg");
    background-size: cover;
    background-attachment: fixed;
    /* clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 31%); */
    /* padding-top: 4em; */
    /* height: 100vh; */
}

#imgLogoStade {
    max-height: 12.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem
}

/* .headerTitle {
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 50%;
    padding: 30px;
    text-align: center;
    position: absolute;
    left: 35%;
    top: 55%
} */

.colorBlue {
    color: #1c86ba;
    font-weight: 600;
    font-family: comfortaa, sans-serif
}

.letterSpacingTitle {
    letter-spacing: 12px;
    color: #ffffff;
}

.letterSpacingTitleW {
    letter-spacing: 12px;
}

#ImgEvent {
    background: url("../img/stadeEvent-compressed.jpg");
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%); */
    /* clip-path: polygon(0 13%, 22% 19%, 39% 0, 56% 20%, 75% 4%, 81% 24%, 100% 27%, 87% 47%, 100% 63%, 83% 75%, 93% 100%, 64% 88%, 51% 99%, 30% 86%, 0 95%, 14% 70%, 0 57%, 12% 42%); */
    /* clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%, 0 100%, 0 31%); */

}

#ImgEvent2 {
    background: url("../img/pic3.jpg");
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
}

.rgbaBluelight,
.rgbaBluelight:after {
    /* background-color: rgba(13, 46, 56, 0.68); */
    background-color: rgba(8, 31, 39, .68);
    height: 100vh
}

.rgbaBluelight2,
.rgbaBluelight2:after {
    /* background-color: rgba(13, 46, 56, 0.68); */
    background-color: rgba(8, 31, 39, .68);
    height: 100vh
}

.rgbaBluelight3,
.rgbaBluelight3:after {
    background-color: rgba(13, 46, 56, 0.68);
    /* background-color: rgba(5, 30, 61, .68) */
    /* clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 31%); */
    padding-top: 4em;
}

.fontWeightEvent {
    font-size: 1.7rem;
    font-weight: 900;
    color: #3CB49B;
    font-family: comfortaa, sans-serif
}

.fontWeightEventW {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    font-family: comfortaa, sans-serif
}

/* 
.fontHeader1 {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    font-family: MontserratBold, sans-serif;
    text-align: left;
    margin-left: 10%;
} */

/* .fontHeader2 {
    font-size: 6rem;
    font-weight: 900;
    color: #fff; */
/* font-family: hammersmith, sans-serif */
/* text-align: left;
} */

.colorTitleHeader {
    color: #43b58b;
}

.textEvent {
    padding-top: 10em;
    margin-left: auto;
    margin-right: auto
}

.imgStade {
    max-height: 17em;
    display: block;
    margin-bottom: 1.5rem;
    transform: scale(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition: all .1s ease;
    transition: all .3s ease;
    cursor: pointer
}

.imgStade:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#imgLogoHac {
    max-width: 2rem;
    padding-bottom: .4rem
}

.textGradient {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-image: -webkit-linear-gradient(-40deg, #87a7c4, #0ac7e9) !important;
    font-size: 1.7rem;
    font-weight: 900;
    font-family: comfortaa, sans-serif
}

#imgMid {
    /* background: url("../img/banniere2-compressed.png"); */
    background: url("../img/stadeEvent-compressed.jpg");
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.polygonMid {
    clip-path: polygon(50% 51%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    width: 100vw
}

.imgCom {
    transform: scale(1);
    transform: scale(1) rotate(3deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition: all .1s ease;
    transition: all .3s ease;
    cursor: pointer
}

.imgCom:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.imgTeamE {
    width: 100%
}

#imgEntrepot {
    width: 100%;
    margin-top: 2em;
    margin-bottom: 4em
}

.labelW {
    width: 100%;
    font-size: 1em !important;
    margin-bottom: 2em;
    margin-top: 1em;
    /* border: 2px solid #fff; */
}

small {
    font-weight: 900
}

.btn {
    background-color: #2a99b0;
    border-radius: 2em;
    color: #fff;
    font-weight: 900
}

.btn:hover {
    background-color: #43b58b;
    border-radius: 2em;
    color: #fff;
    font-weight: 900
}

.btnSub {
    background-color: #43b58b;
    border-radius: 2em;
    color: #000000;
    font-weight: 900
}

.btnSub:hover {
    background-color: #2a99b0;
    border-radius: 2em;
    color: #fff;
    font-weight: 900
}

body.modal-open {
    cursor: default !important;
}

body.modal-open *:not(button):not(a):not([role="button"]) {
    cursor: default !important;
}

.form-control {
    border-radius: 1.25rem;
    font-weight: 600
}

#search .form-control {
    background-color: #ffffff00;
    color: #fff;
}

.form-row {
    padding-bottom: 2rem
}

.form-group>label,
p {
    font-weight: 900;
    padding-top: 10px;
}

label {
    text-transform: uppercase;
}

/* ─────────────────────────────── */
/*      WRAPPER DU TABLEAU DASHBOARD         */
/* ─────────────────────────────── */
#table {
    padding: 40px 20px;
    animation: fadeIn .4s ease-out;
    border-radius: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────── */
/*      BARRE RECHERCHE + CTA      */
/* ─────────────────────────────── */
#table form input[type="text"] {
    border-radius: 10px;
    border: 1px solid rgba(35, 183, 184, 0.45);
    transition: 0.25s;
}

#table form input[type="text"]:focus {
    border-color: #23b7b8;
    box-shadow: 0 0 8px rgba(35, 183, 184, .45);
}

#table form .btn,
#table a.btn {
    background: linear-gradient(135deg, #23b7b8, #176a7a);
    color: #fff !important;
    border-radius: 10px;
    padding: 8px 14px;
    font-weight: 600;
    transition: .25s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

#table form .btn:hover,
#table a.btn:hover {
    transform: translateY(-2px) scale(1.03);
}

/* ─────────────────────────────── */
/*              TABLE              */
/* ─────────────────────────────── */
#myTable {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    /* léger voile → lisibilité */
}

/* Header */
#myTable thead {
    background: linear-gradient(90deg, #0f2b33, #176a7a);
    color: #fff;
}

#myTable thead th {
    padding: 15px 10px;
    font-size: .9rem;
    white-space: nowrap;
}

/* Lignes */
#myTable tbody tr {
    transition: .25s ease;
}

#myTable tbody tr:hover {
    background: rgba(35, 183, 184, 0.08);
}

/* Cellules */
#myTable td {
    padding: 14px 8px;
    vertical-align: middle;
}

/* ─────────────────────────────── */
/*       BOUTONS ACTIONS           */
/* ─────────────────────────────── */
#myTable .btn {
    background: rgba(255, 255, 255, 0.7);
    color: #0f2b33 !important;
    padding: 6px 10px;
    border-radius: 8px;
    transition: .25s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

#myTable .btn:hover {
    transform: translateY(-2px) scale(1.05);
}

/* icons */
#myTable i {
    font-size: 1rem;
}

/* Delete → rouge soft */
#myTable .btn i.fa-trash-alt {
    color: #d9534f;
}

/* ─────────────────────────────── */
/*       SÉCURITÉ POUR LES MODALS  */
/* ─────────────────────────────── */

.modal {
    z-index: 1055;
}

.modal-backdrop {
    z-index: 1050;
}


/* ───────── BANDES RÉCAP DASHBOARD ───────── */
#recap {
    width: 100%;
    max-width: 1700px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.bg-récap,
.bg-récap2 {
    border-radius: 16px;
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
}

/* Variante de fond*/
.bg-récap {
    background: linear-gradient(120deg, rgba(15, 43, 51, 0.98), rgba(23, 122, 114, 0.9));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.bg-récap2 {
    background: linear-gradient(120deg, rgba(23, 106, 122, 0.95), rgba(15, 43, 51, 0.98));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

/* Colonnes */
.bg-récap .col-md-4,
.bg-récap2 .col-md-4 {
    text-align: center;
    padding: 0.5rem 0.75rem;
}

#admin-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #00050C 0%,
            #07292dc9 25%,
            #0c252b75 50%,
            #0a2a27a1 75%,
            #00050c 100%);
    background-attachment: fixed;
}

@media (min-width: 768px) {

    .bg-récap .col-md-4:not(:last-child),
    .bg-récap2 .col-md-4:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }
}

/* Titres (p.h4) */
.bg-récap p.h4,
.bg-récap2 p.h4 {
    margin-bottom: .25rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: #f5f9fb;
}

/* Valeurs juste en dessous */
.bg-récap p:not(.h4),
.bg-récap2 p:not(.h4) {
    margin: 0;
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff;
}

/* Totaux */
.bg-récap .totalRécap,
.bg-récap2 .totalRécap {
    display: inline-block;
    margin-top: .35rem;
    padding: .25rem .8rem;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);

    font-weight: 800;
    font-size: 1.9rem;
    color: #ffffff;
}

/* Petit hover */
@media (hover: hover) and (pointer: fine) {

    .bg-récap .col-md-4,
    .bg-récap2 .col-md-4 {
        transition: transform .2s ease, opacity .2s ease;
    }

    .bg-récap .col-md-4:hover,
    .bg-récap2 .col-md-4:hover {
        transform: translateY(-3px);
        opacity: 1;
    }
}

/* Mobile  */
@media (max-width: 767.98px) {

    .bg-récap,
    .bg-récap2 {
        padding: 1.2rem .8rem;
    }

    .bg-récap .col-md-4,
    .bg-récap2 .col-md-4 {
        margin-bottom: .8rem;
        border-right: none !important;
    }
}

@media (max-width:657px) {

    #imgLooping,
    #imgLooping2,
    #imgLooping3 {
        max-height: 20rem
    }
}

@media (max-width:500px) {

    #imgLooping,
    #imgLooping2,
    #imgLooping3 {
        max-height: 15rem
    }
}

@media (min-width:1320px) and (min-height:1080px) {
    .textEvent {
        padding-top: 20em
    }
}

@media (min-width:1024px) and (min-height:1080px) {
    .textEvent {
        padding-top: 15em
    }
}

@media (max-width:785px) {
    .textEvent {
        padding-top: 4em
    }
}

@media (max-width:580px) {
    .fontWeightEvent>.h4 {
        font-size: 25px
    }
}

/* @media (max-width:1200px) {
    .fontHeader1 {
        font-size: 5rem
    }
}

@media (max-width:990px) {
    .fontHeader1 {
        font-size: 4rem
    }
}

@media (max-width:770px) {
    .fontHeader1 {
        font-size: 3rem
    }
}

@media (max-width:450px) {
    .fontHeader1 {
        font-size: 2.5rem
    }
} */

@media (max-width:550px) {
    .textEvent>.h4 {
        font-size: 20px
    }
}

@media (max-width:375px) {
    .textEvent>.h4 {
        font-size: 15px
    }
}

@media (max-width:580px) {
    .textEvent span {
        font-size: 20px
    }
}

@media (max-width:480px) {
    #imgLogoStade {
        max-height: 9.5rem
    }
}

@media (max-width:375px) {
    #imgLogoStade {
        max-height: 7.5rem
    }
}

@media (max-width:650px) {
    #imgLooping3 {
        margin-right: 0
    }
}

@media (max-width:450px) {
    #imgLooping {
        margin-left: 0
    }
}

@media (max-width:380px) {

    #imgLooping,
    #imgLooping2,
    #imgLooping3 {
        width: 15em
    }
}

@media (max-width:390px) {
    .h4 {
        font-size: 1em
    }
}

@media (max-width:750px) {

    .fontWeightEvent,
    .fontWeightEventW,
    .textGradient {
        font-size: 1.1em
    }
}

@media (max-width:430px) {
    .dateAnim {
        font-size: 1.4em
    }
}

@media (max-width:780px) {
    .fontVertical {
        margin-right: 0
    }
}

@media (max-width:1220px) {
    .fontVertical {
        font-size: 5em
    }
}

@media (max-width:980px) {
    .fontVertical {
        font-size: 4em;
        margin-top: 1rem;
    }
}

@media (max-width:760px) {
    .fontVertical {
        font-size: 3em;
        margin-top: 1rem;
    }
}

@media (max-width:485px) {
    .fontVertical {
        font-size: 2.5em
    }
}

@media (max-width:425px) {
    .fontVertical {
        font-size: 2.5em;
        margin-right: 2rem;
        line-height: 0px;
        padding-left: 1rem;
    }
}

@media (max-width:380px) {
    .fontVertical {
        font-size: 2.5em;
        margin-right: 3rem;
        line-height: 0px;
        padding-left: 1rem;
    }
}


@media (max-width:390px) {
    .cardRounded {
        max-width: 200px
    }
}

@media (max-width:400px) {
    #imgColis {
        width: 10em
    }
}

@media (max-width:1400px) {
    .h4 {
        line-height: 30px
    }
}

@media (max-width:1000px) {
    .h4 {
        line-height: 25px
    }
}

@media (max-width:800px) {
    .h4 {
        line-height: 23px;
        font-size: 1.2rem;
    }
}

@media (max-width:800px) {
    .fontWeightEvent {
        font-size: 1.2rem;
    }
}

@media (max-width:800px) {
    .fontWeightEventW {
        font-size: 1.2rem;
    }
}

@media (max-width:500px) {
    .h4 {
        line-height: 20px;
        font-size: 1em
    }
}

@media (max-width:1030px) {
    #btnUp {
        bottom: 100px
    }
}

/* @media (max-width:700px) {
    #imgMid {
        background: url("../img/banniere2-compressed.png");
        height: 50vh;
        background-size: cover;
        background-position: center;
        background-attachment: none
    }
} */

/* @media (max-width:700px) {
    #ImgEvent {
        background: url("../img/stadeEvent-compressed.jpg");
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-attachment: none
    }
} */

/* @media (max-width:700px) {
    #imgFooter {
        background: url("../img/lhbn-compressed.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: none
    }
} */

@media (max-width:500px) {
    #talkBubble>h1.letterSpacingTitle {
        font-size: 1.3em;
        letter-spacing: 0
    }
}

/* @media (max-width:770px) {
    .containerForm {
        clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%, 0 100%, 0 31%);
        padding-top: 4em;
        padding-bottom: 10em;
    }
}

@media (max-width:430px) {
    .containerForm {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%, 0 100%, 0 31%);
        padding-top: 2em;
        padding-bottom: 6em;
    }
} */

/* 
@media (max-width:770px) {
    .rgbaBluelight3 {
        clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%);
        padding-top: 4em;
        padding-bottom: 10em;
    }
}

@media (max-width:430px) {
    .rgbaBluelight3 {
        clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%);
        padding-top: 2em;
        padding-bottom: 6em;
    }
} */

@media (max-width:650px) {
    .testbg {
        padding-top: 2em;
    }
}


@media (min-width: 992px) {

    .timeline-centered,
    .timeline-centered .timeline-item,
    .timeline-centered .timeline-info,
    .timeline-centered .timeline-marker,
    .timeline-centered .timeline-content {
        display: block;
        margin: 0;
        padding: 0;
    }

    .timeline-centered .timeline-item {
        padding-bottom: 6rem;
        overflow: hidden;
    }

    .timeline-centered .timeline-marker {
        position: absolute;
        left: 50%;
        margin-left: -7.5px;
    }

    .timeline-centered .timeline-info,
    .timeline-centered .timeline-content {
        width: 50%;
    }

    .timeline-centered>.timeline-item:nth-child(odd) .timeline-info {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered>.timeline-item:nth-child(odd) .timeline-content {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered>.timeline-item:nth-child(even) .timeline-info {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered>.timeline-item:nth-child(even) .timeline-content {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered>.timeline-item.period .timeline-content {
        float: none;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .timeline-centered .timeline-item.period {
        padding: 50px 0 90px;
    }

    .timeline-centered .period .timeline-marker:after {
        height: 30px;
        bottom: 0;
        top: auto;
    }

    .timeline-centered .period .timeline-title {
        left: auto;
    }
}

/* ===========================
   Brands list – Full width marquee (no seam)
   =========================== */

.brandsWall {
  padding: 60px 0 56px;
  background-color: #00091400;
}

.brandsWall__inner {
  width: min(1400px, 92%);
  margin: 0 auto;
}

.brandsWall__header {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

/* Tu as gardé uniquement le H2 */
.brandsWall__title {
  margin: 0;
  padding-top: 1.5rem;
  text-align: center;

  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;

  /* Responsive clean */
  font-size: clamp(1.4rem, 1.1rem + 2vw, 2.2rem);
}

/* ===========================
   Brand list
   =========================== */

.brandsMarquee {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 10px 0 0;
  padding: 10px 0;
  overflow: hidden;
}

/* Fades latéraux */
.brandsMarquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brandsMarquee__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--page-bg, #000914) 15%, transparent);
}

.brandsMarquee__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--page-bg, #000914) 15%, transparent);
}

/* viewport + mask */
.brandsMarquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

/* Track (animation pilotée en px par le JS) */
.brandsMarquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: brands-marquee var(--marquee-duration, 26s) linear infinite;
}

.brandsMarquee:hover .brandsMarquee__track {
  animation-play-state: paused;
}

@keyframes brands-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--marquee-distance, 0px))); }
}

/* Groupe (gap + padding ici, pas sur track) */
.brandsMarquee__group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 40px;
}

/* Items */
.brandsMarquee__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 160px;
  height: 80px;
}

.brandsMarquee__item img {
  height: 70px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.85);
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.brandsMarquee__item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 640px) {
  .brandsWall {
    padding: 16px 0 40px;
  }

  .brandsWall__title {
    padding-top: 1rem;
    font-size: clamp(1.2rem, 1rem + 2.2vw, 1.7rem);
  }

  .brandsMarquee__fade {
    width: 64px;
  }

  .brandsMarquee__group {
    gap: 18px;
    padding: 8px 24px;
  }

  .brandsMarquee__item {
    min-width: 120px;
    height: 64px;
  }

  .brandsMarquee__item img {
    height: 52px;
    max-width: 110px;
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .brandsMarquee__track {
    animation: none !important;
  }
}




