/* ============================================================
   AQUALONDE — Navigation Mega Menu
   Layout : LOGO (gauche) | MENU (centré) | ACTIONS (droite)
   ============================================================ */

:root {
    /* ── Palette Aqualonde — Méditerranée & Soleil ── */

    /* Bleus */
    --abyss: #0B1F2E;
    /* Fond sombre, texte sur clair */
    --deep: #0E3D52;
    /* Sections sombres, nav */
    --ocean: #0F6E8E;
    /* Couleur primaire principale */
    --lagoon: #1FA8C9;
    /* Interactif, liens, hover */
    --foam: #6EDAF0;
    /* Accents lumineux sur sombre */

    /* Accents chauds */
    --sun: #F5A623;
    /* CTA principal — bouton réserver */
    --coral: #E8604C;
    /* Badge, alerte, mise en avant */

    /* Fonds clairs */
    --sand: #F2EBD9;
    /* Texte clair, fond chaud */
    --mist: #EAF6FA;
    /* Fond de page, sections neutres */
    --white: #FFFFFF;

    /* Aliases utilitaires */
    --teal: #1FA8C9;
    --teal-dk: #0F6E8E;
    --teal-lt: #EAF6FA;
    --teal-deep: #0E3D52;
    --teal-vivid: #1FA8C9;
    --teal-light: #6EDAF0;
    --teal-pale: #EAF6FA;

    --amber: #F5A623;
    --amber-lt: #FEF7E6;

    --ink: #0B1F2E;
    --mid: #4A7A8A;
    --subtle: #7AAAB8;
    --line: #D4EDF5;
    --off: #EAF6FA;
    --text-white: #fff;

    /* Divers */

    --fs08: .8em;

    --color-encre: #0B1F2E;
    --font-script: 'Mr Dafoe', cursive;
}

.cBlue1{color:var(--teal)}

body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Josefin Sans", sans-serif;
}

.fontScript {
    font-family: 'Mr Dafoe', cursive;
}

.fs25 {
    font-size: 2.5rem;
}

/* Reset global des liens */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    text-decoration: none;
    /* opacity: 0.8; */
}

a:visited {
    color: inherit;
}

a:focus {
    outline: none;
}


/* ══════════════════════════════════════════════════════════════
   BOUTONS — Palette Aqualonde (Bootstrap 5 override)
   ══════════════════════════════════════════════════════════════ */

/* ── Primaire : Lagoon #1FA8C9 ── */
.btn-primary {
    --bs-btn-bg: #1FA8C9;
    --bs-btn-border-color: #1FA8C9;
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: #0F6E8E;
    --bs-btn-hover-border-color: #0F6E8E;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: #0E3D52;
    --bs-btn-active-border-color: #0E3D52;
    --bs-btn-disabled-bg: #1FA8C9;
    --bs-btn-disabled-border-color: #1FA8C9;
}

.btn-outline-primary {
    --bs-btn-color: #1FA8C9;
    --bs-btn-border-color: #1FA8C9;
    --bs-btn-hover-bg: #1FA8C9;
    --bs-btn-hover-border-color: #1FA8C9;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: #0F6E8E;
    --bs-btn-active-border-color: #0F6E8E;
    --bs-btn-active-color: #fff;
}

.btn-outline-primary:hover{
    color: #fff !important;;
}

/* ── CTA chaud : Soleil #F5A623 ── */
.btn-warning {
    --bs-btn-bg: #F5A623;
    --bs-btn-border-color: #F5A623;
    --bs-btn-color: #0B1F2E;
    --bs-btn-hover-bg: #d98f1a;
    --bs-btn-hover-border-color: #d98f1a;
    --bs-btn-hover-color: #0B1F2E;
    --bs-btn-active-bg: #bc7b14;
    --bs-btn-active-border-color: #bc7b14;
    --bs-btn-disabled-bg: #F5A623;
    --bs-btn-disabled-border-color: #F5A623;
}

.btn-outline-warning {
    --bs-btn-color: #F5A623;
    --bs-btn-border-color: #F5A623;
    --bs-btn-hover-bg: #F5A623;
    --bs-btn-hover-border-color: #F5A623;
    --bs-btn-hover-color: #0B1F2E;
    --bs-btn-active-bg: #d98f1a;
    --bs-btn-active-color: #0B1F2E;
}

/* ── Sombre : Abysse #0B1F2E ── */
.btn-dark {
    --bs-btn-bg: #0B1F2E;
    --bs-btn-border-color: #0B1F2E;
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: #0E3D52;
    --bs-btn-hover-border-color: #0E3D52;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: #0F6E8E;
}

.btn-outline-dark {
    --bs-btn-color: #0B1F2E;
    --bs-btn-border-color: #0B1F2E;
    --bs-btn-hover-bg: #0B1F2E;
    --bs-btn-hover-border-color: #0B1F2E;
    --bs-btn-hover-color: #fff;
}

/* ── Secondaire : Mid #4A7A8A ── */
.btn-secondary {
    --bs-btn-bg: #4A7A8A;
    --bs-btn-border-color: #4A7A8A;
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: #3a6272;
    --bs-btn-hover-border-color: #3a6272;
    --bs-btn-hover-color: #fff;
}

.btn-outline-secondary {
    --bs-btn-color: #4A7A8A;
    --bs-btn-border-color: #4A7A8A;
    --bs-btn-hover-bg: #4A7A8A;
    --bs-btn-hover-border-color: #4A7A8A;
    --bs-btn-hover-color: #fff;
}



/* Empêche les boutons <a> de changer après visite sans casser le hover */
a.btn:visited{
    color: var(--bs-btn-color);
}

a.btn-outline-primary:visited{
    color: var(--bs-btn-color);
}

a.btn-outline-warning:visited{
    color: var(--bs-btn-color);
}

a.btn-outline-dark:visited{
    color: var(--bs-btn-color);
}

a.btn-outline-secondary:visited{
    color: var(--bs-btn-color);
}

.btn:focus,
.btn:focus-visible{
    text-decoration:none;
}

/* ── Arrondi & transition globale ── */
.btn {
    border-radius: 6px;
    font-weight: 600;
    transition: all .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.text-primary {
    color: var(--teal) !important;
}

.bg-primary {background-color: var(--teal)!important;}

/* ===========================================
   HERO VIDÉO FULLSCREEN
   =========================================== */

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video__media {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-video__media iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.78vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-video__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.hero-video__content img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.hero-video__content h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-video__content .lead {
    font-size: clamp(1rem, 2vw, 1.4rem);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-video__content img {
        max-width: 200px;
    }
}





/* ══════════════════════════════════════════════════════════════
   1. NAVBAR BASE
   ══════════════════════════════════════════════════════════════ */

.aqualonde-nav.navbar {
    /* PAS de background ici — géré par les états scroll ci-dessous */
    padding: 0;
    min-height: 72px;
    z-index: 1050;
    /* IMPORTANT : ne pas surcharger position — Bootstrap fixed-top gère ça */
    transition:
        background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-bottom-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════════════════════
   NAV — ÉTAT TRANSPARENT (has-hero + avant scroll)
   CSS pur : zéro dépendance JS au chargement → pas de flash
   ══════════════════════════════════════════════════════════════ */
body.has-hero .aqualonde-nav:not(.nav--filled) {
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
}

/* Liens et icônes en blanc sur fond transparent */
body.has-hero .aqualonde-nav:not(.nav--filled) .aqualonde-menu>.menu-item>a {
    color: #fff!important;
}

body.has-hero .aqualonde-nav:not(.nav--filled) .aqualonde-menu>.menu-item>a:hover,
body.has-hero .aqualonde-nav:not(.nav--filled) .aqualonde-menu>.current-menu-item>a,
body.has-hero .aqualonde-nav:not(.nav--filled) .aqualonde-menu>.current-menu-ancestor>a {
    color: #fff!important;
}

body.has-hero .aqualonde-nav:not(.nav--filled) .logo-text {
    color: #fff!important;
    /* Conserver le gradient ou passer en blanc pur : */
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

body.has-hero .aqualonde-nav:not(.nav--filled) .action-icon,
body.has-hero .aqualonde-nav:not(.nav--filled) .lang-switcher__btn {
    color: #fff!important;
}

body.has-hero .aqualonde-nav:not(.nav--filled) .action-icon:hover,
body.has-hero .aqualonde-nav:not(.nav--filled) .lang-switcher__btn:hover {
    color: #fff!important;
}

body.has-hero .aqualonde-nav:not(.nav--filled) .toggler-bar {
    background-color: #fff!important;
}

/* ══════════════════════════════════════════════════════════════
   NAV — ÉTAT COLORISÉ (marine #0C3B52)
   body.no-hero → colorisé immédiatement au rendu (sans JS)
   body.has-hero + .nav--filled → colorisé par JS après scroll
   ══════════════════════════════════════════════════════════════ */
body.no-hero .aqualonde-nav,
body.has-hero .aqualonde-nav.nav--filled {
    background-color: var(--teal-deep) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.22) !important;
    border-bottom: 1px solid rgba(44, 181, 160, 0.10) !important;
}

body.no-hero .aqualonde-nav .aqualonde-menu>.menu-item>a,
body.has-hero .aqualonde-nav.nav--filled .aqualonde-menu>.menu-item>a {
    color: #fff!important;
}

body.no-hero .aqualonde-nav .aqualonde-menu>.menu-item>a:hover,
body.no-hero .aqualonde-nav .aqualonde-menu>.current-menu-item>a,
body.no-hero .aqualonde-nav .aqualonde-menu>.current-menu-ancestor>a,
body.has-hero .aqualonde-nav.nav--filled .aqualonde-menu>.menu-item>a:hover,
body.has-hero .aqualonde-nav.nav--filled .aqualonde-menu>.current-menu-item>a,
body.has-hero .aqualonde-nav.nav--filled .aqualonde-menu>.current-menu-ancestor>a {
    color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════════
   NAV — ANIMATION D'ENTRÉE (.nav--animating)
   Balayage vertical qui "verse" le fond depuis le haut
   ══════════════════════════════════════════════════════════════ */
.aqualonde-nav.nav--animating::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 59, 82, 0.5) 0%, transparent 100%);
    animation: nav-fill-sweep 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
    z-index: -1;
}

@keyframes nav-fill-sweep {
    from {
        opacity: 1;
        transform: scaleY(0);
        transform-origin: top center;
    }

    to {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: top center;
    }
}

.aqualonde-nav .container {
    display: flex;
    align-items: center;
    height: 72px;
    position: relative;
}


/* ══════════════════════════════════════════════════════════════
   2. LOGO (gauche)
   ══════════════════════════════════════════════════════════════ */

.aqualonde-logo.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-right: auto;
    text-decoration: none;
    flex-shrink: 0;
}

.aqualonde-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    /* background: linear-gradient(135deg, var(--aq-lagoon), var(--aq-foam)); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
    color:#fff;
}


/* ══════════════════════════════════════════════════════════════
   3. ACTIONS (droite)
   ══════════════════════════════════════════════════════════════ */

.aqualonde-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none !important;
    font-size: 18px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.action-icon:hover {
    color:#fff;
    background: rgba(255, 255, 255, 0.06);
}

.action-icon:visited{
    color:#fff;
}

.action-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: var(--aq-lagoon);
    color: var(--aq-white);
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

/* Sélecteur de langue */
.lang-switcher {
    position: relative;
    margin-right: 4px;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.lang-switcher__btn:hover {
    color:#fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.lang-switcher__btn .bi-globe2 {
    font-size: 14px;
}

.lang-switcher__chevron {
    font-size: 10px !important;
    transition: transform 0.25s ease;
}

.lang-switcher__btn.open .lang-switcher__chevron {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    padding: 8px 4px;
    background: var(--teal-deep);


    border: 1px solid rgba(44, 181, 160, 0.1);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1080;
}

.lang-switcher__dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color:#fff;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none !important;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.lang-switcher__option:hover {
    color:#fff;
    background: rgba(44, 181, 160, 0.1);
}

.lang-switcher__option.active {
    color:#fff;
    font-weight: 600;
}


/* ══════════════════════════════════════════════════════════════
   4. RESET GLOBAL
   ══════════════════════════════════════════════════════════════ */

.aqualonde-menu.navbar-nav,
.aqualonde-menu.navbar-nav ul,
.aqualonde-menu .sub-menu,
.aqualonde-menu .sub-menu .sub-menu {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
}

.aqualonde-menu.navbar-nav li,
.aqualonde-menu .sub-menu li,
.aqualonde-menu .sub-menu .sub-menu li {
    list-style: none !important;
    list-style-type: none !important;
}


/* ══════════════════════════════════════════════════════════════
   5. NIVEAU 1 — Menu centré
   ══════════════════════════════════════════════════════════════ */

.aqualonde-nav .navbar-collapse {
    flex-grow: 0;
}

.aqualonde-menu.navbar-nav {
    display: flex !important;
    align-items: center;
    height: 72px;
    gap: 0;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.aqualonde-menu>.menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* FIX HOVER : le <li> survolé passe au-dessus des voisins */
.aqualonde-menu>.menu-item:hover {
    z-index: 100;
}

.aqualonde-menu>.menu-item>a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.aqualonde-menu>.menu-item>a:hover,
.aqualonde-menu>.menu-item>a:focus {
    color:#fff;
}

.aqualonde-menu>.current-menu-item>a,
.aqualonde-menu>.current-menu-ancestor>a {
    color: var(--aq-white);
}

/* Barre active */
.aqualonde-menu>.menu-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.aqualonde-menu>.menu-item:hover>a::after,
.aqualonde-menu>.current-menu-item>a::after,
.aqualonde-menu>.current-menu-ancestor>a::after {
    transform: scaleX(1);
}

/* Chevron ▾ */
.aqualonde-menu>.menu-item-has-children>a {
    padding-right: 30px;
}

.aqualonde-menu>.menu-item-has-children>a::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.aqualonde-menu>.menu-item-has-children:hover>a::before {
    transform: translateY(-35%) rotate(225deg);
    opacity: 0.85;
}


/* ══════════════════════════════════════════════════════════════
   6. DROPDOWN SIMPLE (pas de niveau 3)
   ══════════════════════════════════════════════════════════════ */

.aqualonde-menu>.menu-item>.sub-menu:not(:has(> .menu-item-has-children)):not(:has(> .mega-col-extra)) {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    padding: 16px 8px;
    background: var(--teal-deep);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(44, 181, 160, 0.1);
    border-top: none;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1060;
}

.aqualonde-menu>.menu-item-has-children:hover>.sub-menu:not(:has(> .menu-item-has-children)):not(:has(> .mega-col-extra)) {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.aqualonde-menu>.menu-item>.sub-menu:not(:has(> .menu-item-has-children)):not(:has(> .mega-col-extra))>.menu-item {
    display: block;
    height: auto;
}

.aqualonde-menu>.menu-item>.sub-menu:not(:has(> .menu-item-has-children)):not(:has(> .mega-col-extra))>.menu-item>a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    margin: 1px 0;
    color:#fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none !important;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.aqualonde-menu>.menu-item>.sub-menu:not(:has(> .menu-item-has-children)):not(:has(> .mega-col-extra))>.menu-item>a:hover {
    color:#fff;
    background: rgba(44, 181, 160, 0.1);
}


/* ══════════════════════════════════════════════════════════════
   7. MEGA MENU (contient des colonnes ou un .mega-col-extra)
   ══════════════════════════════════════════════════════════════ */

.aqualonde-menu>.menu-item>.sub-menu:has(> .menu-item-has-children),
.aqualonde-menu>.menu-item>.sub-menu:has(> .mega-col-extra) {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 85vw;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    padding: 36px 48px 32px;
    background: var(--teal-deep);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(44, 181, 160, 0.1);
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1060;
}

.aqualonde-menu>.menu-item-has-children:hover>.sub-menu:has(> .menu-item-has-children),
.aqualonde-menu>.menu-item-has-children:hover>.sub-menu:has(> .mega-col-extra) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ── Colonnes (items avec enfants) ── */
.aqualonde-menu>.menu-item>.sub-menu:has(> .menu-item-has-children)>.menu-item-has-children {
    display: block;
    height: auto;
    flex: 0 0 auto;
    min-width: 170px;
    padding: 0 36px 0 0;
}

/* Séparateur vertical entre colonnes */
.aqualonde-menu>.menu-item>.sub-menu:has(> .menu-item-has-children)>.menu-item-has-children+.menu-item-has-children {
    border-left: 1px solid rgba(44, 181, 160, 0.08);
    padding-left: 36px;
}

/* En-têtes de colonne */
.aqualonde-menu>.menu-item>.sub-menu:has(> .menu-item-has-children)>.menu-item-has-children>a {
    display: block;
    padding: 0 0 10px 0;
    margin-bottom: 8px;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(44, 181, 160, 0.2);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.aqualonde-menu>.menu-item>.sub-menu:has(> .menu-item-has-children)>.menu-item-has-children>a:hover {
    color:#fff;
}


/* ══════════════════════════════════════════════════════════════
   8. COLONNE EXTRA (.mega-col-extra)
   
   Créée par JS : regroupe les items orphelins (sans enfants)
   dans un <div> qui forme une vraie colonne dans le flex.
   ══════════════════════════════════════════════════════════════ */

.mega-col-extra {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 160px;
    padding-left: 36px;
    border-left: 1px solid rgba(44, 181, 160, 0.08);
}

/* Titre de la colonne */
.mega-col-extra__title {
    display: block;
    padding: 0 0 10px 0;
    margin-bottom: 8px;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid rgba(44, 181, 160, 0.2);
    white-space: nowrap;
}

/* Liens dans la colonne extra */
.mega-col-extra>.menu-item {
    display: block;
    height: auto;
    list-style: none !important;
}

.mega-col-extra>.menu-item>a {
    display: block;
    padding: 6px 0;
    color:#fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mega-col-extra>.menu-item>a:hover {
    color:#fff;
}

.mega-col-extra>.menu-item>a::before,
.mega-col-extra>.menu-item>a::after {
    display: none !important;
}


/* ══════════════════════════════════════════════════════════════
   9. NIVEAU 3 — Contenu des colonnes
   ══════════════════════════════════════════════════════════════ */

.aqualonde-menu .sub-menu .sub-menu {
    position: static !important;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: unset;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.aqualonde-menu .sub-menu .sub-menu>.menu-item {
    display: block;
    height: auto;
}

.aqualonde-menu .sub-menu .sub-menu>.menu-item>a {
    display: block;
    padding: 6px 0;
    color:#fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.aqualonde-menu .sub-menu .sub-menu>.menu-item>a:hover {
    color:#fff;
}

.aqualonde-menu .sub-menu .sub-menu>.current-menu-item>a {
    color: #fff;
}

/* Aucun chevron/barre dans les sous-menus */
.aqualonde-menu .sub-menu .menu-item>a::before,
.aqualonde-menu .sub-menu .menu-item>a::after {
    display: none !important;
}


/* ══════════════════════════════════════════════════════════════
   10. TOGGLER MOBILE
   ══════════════════════════════════════════════════════════════ */

.aqualonde-toggler.navbar-toggler {
    display: none !important;
    border: none;
    padding: 8px;
    box-shadow: none !important;
    background: transparent !important;
    flex-direction: column;
    gap: 5px;
}

.aqualonde-toggler .toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--aq-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.aqualonde-toggler:focus {
    box-shadow: none !important;
    outline: none;
}

.aqualonde-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.aqualonde-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.aqualonde-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ══════════════════════════════════════════════════════════════
   11. RESPONSIVE / MOBILE (< 992px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 991.98px) {

    .aqualonde-toggler.navbar-toggler {
        display: flex !important;
    }

    .aqualonde-nav.navbar {
        height: auto;
        min-height: 64px;
        padding: 12px 0;
    }

    .aqualonde-nav .container {
        height: auto;
        min-height: 40px;
        flex-wrap: wrap;
    }

    .aqualonde-actions {
        order: 2;
        margin-left: auto;
        margin-right: 8px;
    }

    .aqualonde-toggler {
        order: 3;
    }

    .aqualonde-nav .navbar-collapse {
        order: 4;
        width: 100%;
    }

    .aqualonde-menu.navbar-nav {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 0;
        gap: 2px;
        width: 100%;
    }

    .aqualonde-menu>.menu-item {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        z-index: auto;
    }

    .aqualonde-menu>.menu-item:hover {
        z-index: auto;
    }

    .aqualonde-menu>.menu-item>a {
        height: auto;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 15px;
    }

    .aqualonde-menu>.menu-item>a::after {
        display: none;
    }

    .aqualonde-menu>.menu-item:hover>a,
    .aqualonde-menu>.menu-item>a:focus {
        background: rgba(44, 181, 160, 0.08);
    }

    .aqualonde-menu>.menu-item-has-children>a::before {
        right: 16px;
    }

    /* Tous les sous-menus en inline vertical */
    .aqualonde-menu>.menu-item>.sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        display: block !important;
        flex-wrap: nowrap !important;
        width: auto !important;
        max-width: none !important;
        left: auto !important;
        right: auto !important;
        min-width: unset;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 2px 0 6px 0;
        margin: 0;
        border-left: 2px solid rgba(44, 181, 160, 0.2);
        margin-left: 16px;
    }

    .aqualonde-menu>.menu-item>.sub-menu>.menu-item,
    .aqualonde-menu>.menu-item>.sub-menu>.menu-item-has-children {
        min-width: unset !important;
        padding: 0 !important;
        flex: unset !important;
        border-left: none !important;
    }

    /* Liens niveau 2 — style uniforme mobile */
    .aqualonde-menu>.menu-item>.sub-menu>.menu-item>a,
    .aqualonde-menu>.menu-item>.sub-menu>.menu-item-has-children>a {
        display: block !important;
        padding: 9px 14px !important;
        margin: 0 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        border-bottom: none !important;
        border-radius: 6px !important;
        border: none !important;
        color: rgba(255, 255, 255, 0.7) !important;
        background: transparent !important;
    }

    .aqualonde-menu>.menu-item>.sub-menu>.menu-item>a:hover,
    .aqualonde-menu>.menu-item>.sub-menu>.menu-item-has-children>a:hover {
        color: #fff !important;
        /* background: rgba(44, 181, 160, 0.06) !important; */
    }

    /* Niveau 3 mobile */
    .aqualonde-menu .sub-menu .sub-menu {
        margin-left: 12px;
        padding: 2px 0 4px 0;
        border-left: 2px solid rgba(44, 181, 160, 0.12);
    }

    .aqualonde-menu .sub-menu .sub-menu>.menu-item>a {
        padding: 7px 12px;
        font-size: 13px;
        color:#fff;
    }

    .aqualonde-menu .sub-menu .sub-menu>.menu-item>a:hover {
        color: #fff;
    }

    /* Colonne extra en mobile : inline comme le reste */
    .mega-col-extra {
        padding-left: 0;
        border-left: none;
        min-width: unset;
    }

    .mega-col-extra__title {
        padding: 9px 14px 4px;
        margin-bottom: 0;
        font-size: 11px;
        color: var(--aq-muted);
        border-bottom: none;
        opacity: 0.7;
    }

    .mega-col-extra>.menu-item>a {
        display: block !important;
        padding: 9px 14px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-radius: 6px !important;
    }

    .mega-col-extra>.menu-item>a:hover {
        color: var(--aq-white) !important;
        background: rgba(44, 181, 160, 0.06) !important;
    }

    /* Lang compact */
    .lang-switcher__current {
        display: none;
    }

    .lang-switcher__chevron {
        display: none !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   12. ESPACE SOUS LE HEADER FIXE
   - no-hero  : contenu décalé de la hauteur de la nav
   - has-hero : padding-top 0 — le hero PASSE sous la nav transparente,
                le hero lui-même ajoute son propre padding interne
   ══════════════════════════════════════════════════════════════ */

body {
    padding-top: 72px;
}

/* défaut = no-hero */
body.has-hero {
    padding-top: 0 !important;
}

/* hero flotte sous la nav */

@media (max-width: 991.98px) {
    body {
        padding-top: 64px;
    }

    body.has-hero {
        padding-top: 0 !important;
    }
}

/* Le hero absorbe l'espace de la nav (72px) pour que le texte
   ne soit pas masqué derrière la barre transparente */
body.has-hero .hero {
    padding-top: 72px;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    body.has-hero .hero {
        padding-top: 64px;
    }
}


/* ══════════════════════════════════════════════════════════════
   13. OVERRIDES — Underscores
   ══════════════════════════════════════════════════════════════ */

.aqualonde-menu ul {
    box-shadow: none;
    float: none;
}

.aqualonde-menu li {
    position: relative;
}

.aqualonde-menu a {
    width: auto;
}

#mainNav .menu-item {
    list-style: none;
}










/*PAGES CUSTOM*/

.hero {
    position: relative;
    height: 40vh;
    min-height: 320px;
    max-height: 520px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    /* léger effet premium */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.55));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-family: var(--font-script)
}




.hero-desc {
    max-width: 600px;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero {
        height: 30vh;
        min-height: 260px;
    }
}

.breadcrumb-bg {
    background-color: var(--bgGrey1);
}

.breadcrumb {
    font-size: var(--fs08);
}





.image-stack {
    position: relative;
}

.image-stack .img-main {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

/* Wrapper qui gère le cadre blanc + arrondi */
.image-stack .img-secondary-wrapper {
    position: absolute;
    bottom: -40px;
    right: 0;
    /* plus de -40px */
    width: 55%;
    z-index: 2;
    border: 9px solid #fff;
    border-radius: 12px;
    overflow: hidden;
    transform: translateX(40px);
    /* effet débord, mais maîtrisé */
}

/* reverse */
.image-stack--reverse .img-secondary-wrapper {
    right: auto;
    left: 0;
    transform: translateX(-40px);
}

.image-stack .img-secondary {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {

    .image-stack .img-secondary-wrapper {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: 20px;
    }

}













.spaces-mosaic {
    background-color: var(--bgGrey1);
}

.mosaic-tile {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.mosaic-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .45s ease;
}

.mosaic-tile__overlay {
    position: absolute;
    inset: 0;
    transition: opacity .25s ease;
}

.mosaic-tile__content {
    position: absolute;
    left: 56px;
    right: 56px;
    bottom: 56px;
    z-index: 2;
    max-width: 520px;
}

.mosaic-tile__title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.mosaic-tile__text {
    margin: 0;
    /* opacity: .92; */
    line-height: 1.5;
    max-width: 48ch;
}

/* Variantes de teintes (tu ajusteras aux couleurs Aqualonde) */
.mosaic-tile--dark .mosaic-tile__overlay {
    background: rgba(14, 22, 28, .48);
    border: 3px solid #fff;
}

/* .mosaic-tile--aqua .mosaic-tile__overlay{ background: rgba(0, 194, 214, .78); }
.mosaic-tile--sand .mosaic-tile__overlay{ background: rgba(246, 184, 70, .82); } */

/* Hover */
.mosaic-tile:hover img {
    transform: scale(1.07);
}

/* .mosaic-tile:hover .mosaic-tile__overlay{ opacity: .92; } */

/* Responsive */
@media (max-width: 992px) {
    .mosaic-tile {
        height: 340px;
    }

    .mosaic-tile__content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }
}

@media (max-width: 576px) {
    .mosaic-tile {
        height: 300px;
    }
}















.experience-visual {
    position: relative;
    /* background: #f5f7f8;  */
}

.experience-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Images flottantes */
.experience-floating {
    position: absolute;
    width: 22%;
    min-width: 220px;
    border: 9px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 30px 60px rgba(0,0,0,0.18); */
    z-index: 3;
}

.experience-floating img {
    width: 100%;
    display: block;
}

/* Positionnement */
.experience-floating--left {
    top: -60px;
    left: 6%;
}

.experience-floating--right {
    bottom: -60px;
    right: 6%;
}

/* Responsive */
@media (max-width: 992px) {
    .experience-floating {
        position: relative;
        width: 70%;
        margin: 30px auto 0;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .experience-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}





.experience-card{
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.04);
    overflow: hidden;

}

/* Header */

.experience-header h2{
font-weight:600;
}

/* Icône titre */

.experience-card-icon{
width:40px;
height:40px;
border-radius:50%;
background:linear-gradient(135deg,#e8f1ff,#f3f8ff);
color:var(--teal);
display:flex;
align-items:center;
justify-content:center;
font-size:1.1rem;
}

/* Ligne infos */

.experience-item{
display:flex;
align-items:center;
gap:.75rem;
padding:.7rem 0;
border-bottom:1px solid rgba(0,0,0,.06);
font-size:.95rem;
}

/* dernière ligne */

.experience-item-last{
border-bottom:none;
}

/* icônes */

.experience-icon{
width:34px;
height:34px;
min-width:34px;
border-radius:50%;
background:#eef5ff;
color:var(--teal);
display:flex;
align-items:center;
justify-content:center;
font-size:1rem;
}












.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

@media (max-width:768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-title {
    font-weight: 600;
    margin-bottom: .2rem;
}

.info-text {
    color: #555;
    font-size: .95rem;
}









.section-discovery {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.discovery-kicker {
    display: inline-block;
    margin-bottom: .75rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal);
}

.discovery-text p {
    color: #2f2f2f;
    font-size: 1.05rem;
    line-height: 1.7;
}

.stat-card {
    background: #fff;
    border: 1px solid rgba(13, 110, 253, 0.10);
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .08);
}

.stat-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto .9rem;
    border-radius: 50%;
    background: rgba(13, 110, 253, .10);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--teal);
    margin-bottom: .35rem;
}

.stat-label {
    color: #2f2f2f;
    line-height: 1.4;
}




















.step-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2em;
    font-family: var(--font-script);
}

.step-number-light {
    background: #fff;
    color: #0d6efd;
}


.step-immersion {
    position: relative;
    background-image: url("/wp-content/themes/aqualonde/assets/img/pages/bapteme-classique/bapteme-immersion.webp");
    background-size: cover;
    background-position: right center;
    overflow: hidden;
    /* IMPORTANT */
    min-height: 300px;
}

.step-immersion::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(13, 110, 253, 0.90) 0%,
            rgba(13, 110, 253, 0.75) 35%,
            rgba(13, 110, 253, 0.45) 65%,
            rgba(13, 110, 253, 0.15) 100%);
}

.step-immersion>div {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.cta-reservation {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* PARALLAX */
    overflow: hidden;
}

.cta-reservation::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.15));
}

.cta-reservation .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .cta-reservation {
        background-attachment: scroll;
    }
}







.experience-more-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.experience-more-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .10);
}

.experience-more-card .card-img-top {
    height: 350px;
    object-fit: cover;
}

.experience-more-card .card-title {
    margin-bottom: 1rem;
}

.experience-more-card .btn {
    border-radius: 999px;
    padding: .7rem 1.2rem;
}









.swiper-gallery,
.swiper-wrecks {
    position: relative;
    padding-bottom: 3rem;
}

/* Égalisation des hauteurs de cards dans le swiper */
.swiper-wrecks.swiper {
    align-items: stretch;
}

.swiper-wrecks .swiper-wrapper {
    align-items: stretch;
}

.swiper-wrecks .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.swiper-wrecks .swiper-slide > article,
.swiper-wrecks .swiper-slide > div {
    flex: 1;
}

.swiper-gallery .swiper-slide {
    overflow: hidden;
    border-radius: 1rem;
}

.swiper-gallery .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.swiper-gallery .swiper-pagination,
.swiper-wrecks .swiper-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    text-align: center;
}

.swiper-gallery .swiper-pagination-bullet,
.swiper-wrecks .swiper-pagination-bullet {
    background: var(--teal);
    opacity: .25;
    transition: all .25s ease;
}

.swiper-gallery .swiper-pagination-bullet-active,
.swiper-wrecks .swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-gallery a {
    cursor: zoom-in;
}

.swiper-gallery img {
    transition: transform .4s ease;
}

.swiper-gallery a:hover img {
    transform: scale(1.05);
}




.section-title{
    position: relative;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.section-title::after{
    content:"";
    display:block;
    width:56px;
    height:4px;
    margin-top:12px;
    border-radius:4px;
    background:var(--teal);
}








.sortie-image-card {
    background: #fff;
    border: 1px solid #dce7ed;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15,39,64,0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.sortie-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15,39,64,0.1);
}

/* IMAGE */

.sortie-image-card-media {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.sortie-image-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.sortie-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.15) 100%
    );
}

/* NUMERO */

.step-number-2 {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--teal);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-script);
}

/* ICONE */

.step-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.75rem;

}

/* BODY */

.sortie-image-card-body {
    padding: 1.5rem;
}

.sortie-image-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: .75rem;
}

.sortie-image-card-body p {
    margin: 0;
    line-height: 1.7;
    color: #4c6476;
}
.sortie-image-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.sortie-image-card:hover .sortie-image-card-media img {
    transform: scale(1.05);
}







.exploration-card {
    background: #fff;
    border: 1px solid #dce7ed;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15,39,64,0.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* .exploration-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15,39,64,0.10);
    border-color: rgba(37,168,200,0.35);
} */

.exploration-card-media {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.exploration-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.exploration-card:hover .exploration-card-media img {
    transform: scale(1.05);
}

.exploration-card-body {
    padding: 1.5rem;
}

.exploration-card-body h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: .85rem;
    color: #10253d;
}

.exploration-card-body p {
    margin-bottom: 1.25rem;
    color: #4c6476;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .exploration-card-media {
        height: 210px;
    }

    .exploration-card-body {
        padding: 1.35rem;
    }

    .exploration-card-body h3 {
        font-size: 1.25rem;
    }
}









/*Google Map*/
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}


/*FOOTER*/

.site-footer {
    background-color: var(--abyss);
    color: rgba(255, 255, 255, 0.75);
    font-size: .9rem;
}

/* ── Zone principale ── */
.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Logo ── */
.footer-logo img {
    max-height: 56px;
    width: auto;
}

.footer-logo{
    font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--aq-lagoon), var(--aq-foam));
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  color: #fff;
}

/* ── Texte de présentation ── */
.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: .875rem;
}

/* ── Coordonnées ── */
.footer-contact li {
    color: rgba(255, 255, 255, 0.65);
    font-size: .875rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--lagoon);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    transition: color .2s ease;
}

.footer-contact a:hover {
    color: var(--lagoon);
}

/* ── Logos certifications ── */
.footer-certs img {
    height: 48px;
    width: auto;
    opacity: .75;
    filter: brightness(0) invert(1);
    transition: opacity .2s ease;
}

.footer-certs img:hover {
    opacity: 1;
}

/* ── Titres colonnes ── */
.footer-heading {
    font-family: "Josefin Sans", sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

/* ── Liens ── */
.footer-links li {
    margin-bottom: .55rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: .875rem;
    transition: color .2s ease, padding-left .2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--lagoon);
    padding-left: 4px;
}

/* ── Réseaux sociaux ── */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social:hover {
    background: var(--lagoon);
    color: #fff !important;
    transform: translateY(-3px);
}

/* ── Barre du bas ── */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: var(--lagoon);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .footer-main .col-lg-4 {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-certs {
        justify-content: center !important;
    }

    .footer-bottom .col-md-6:last-child {
        text-align: center !important;
        margin-top: .5rem;
    }

    .footer-bottom .list-inline-item {
        margin-left: .75rem !important;
    }
}


.cta-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 999px;
    background: #00c2d6;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .22);
}

.cta-floating:hover {
    opacity: .92;
}

/* ===================== ENCART CARRIÈRE MONITEUR ===================== */
 
.adn-hero {
    min-height: 420px;
}
 
.adn-hero__overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(110deg, var(--teal-dk) 35%, rgba(0, 0, 0, 0.6) 48%, rgba(255, 255, 255, 0) 62%);
    opacity: .9;
}



/* ══════════════════════════════════════════════════════════════
   BLOG — Cards articles
   ══════════════════════════════════════════════════════════════ */
 
.blog-card {
    background: #fff;
    border: 1px solid #dce7ed;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 39, 64, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
 
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 39, 64, 0.11);
    border-color: rgba(31, 168, 201, 0.3);
}
 
/* Image */
.blog-card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
}
 
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
 
.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}
 
/* Méta */
.blog-card-meta {
    font-size: .8rem;
    color: #7AAAB8;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .15rem;
}
 
.blog-card-date {
    color: #7AAAB8;
}
 
.blog-card-cat {
    color: var(--teal) !important;
    font-weight: 600;
    transition: color .2s ease;
}
 
.blog-card-cat:hover {
    color: var(--teal-dk) !important;
}
 
/* Titre */
.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: .75rem;
    font-family: "Josefin Sans", sans-serif;
}
 
.blog-card-title a {
    color: #10253d;
    transition: color .2s ease;
}
 
.blog-card-title a:hover {
    color: var(--teal);
}
 
/* Extrait */
.blog-card-excerpt {
    font-size: .875rem;
    color: #4c6476;
    line-height: 1.7;
    margin-bottom: 0;
}
 
/* Pagination blog */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
 
.page-numbers li {
    list-style: none;
}
 
.page-numbers li a,
.page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--teal);
    border: 1px solid #dce7ed;
    margin: 0 3px;
    transition: all .2s ease;
}
 
.page-numbers li a:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
 
.page-numbers li .current {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
 
.page-numbers li .dots {
    border: none;
    color: #7AAAB8;
}
 
@media (max-width: 767px) {
    .blog-card-media {
        height: 200px;
    }
}
 
 
/* ══════════════════════════════════════════════════════════════
   SINGLE ARTICLE
   ══════════════════════════════════════════════════════════════ */
 
/* ── Header ── */
.article-thumbnail {
    aspect-ratio: 4/3;
    background: #e5eff4;
}
 
.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
.article-cat-link {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal);
    margin-right: .5rem;
}
 
.article-cat-link:hover {
    color: var(--teal-dk);
}
 
.article-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #0f1e2d;
}
 
.article-meta {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
 
.article-meta li {
    font-size: .875rem;
    color: #5a7589;
    display: flex;
    align-items: center;
}
 
.article-meta i {
    color: var(--teal);
    width: 18px;
}
 
/* ── Contenu rédactionnel ── */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1e2f3c;
}
 
.article-content h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0f1e2d;
    padding-bottom: .5rem;
    border-bottom: 2px solid #e5eff4;
}
 
.article-content h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: #0f1e2d;
}
 
.article-content p {
    margin-bottom: 1.25rem;
}
 

 
.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
 
.article-content li {
    margin-bottom: .4rem;
}
 
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: .75rem;
    margin: 1.5rem 0;
}
 
.article-content blockquote {
    border-left: 4px solid var(--teal);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f0f8fb;
    border-radius: 0 .75rem .75rem 0;
    font-style: italic;
    color: #3a5a6e;
}
 
.article-content strong {
    color: #0f1e2d;
    font-weight: 700;
}
 
.article-content code {
    background: #e8f4f8;
    padding: .15em .4em;
    border-radius: .3em;
    font-size: .9em;
    color: #1a5f7a;
}
 
/* ── Tags ── */
.article-tag {
    font-size: .8rem;
    padding: .3rem .75rem;
    border-radius: 2rem !important;
    transition: background .2s ease, color .2s ease;
}
 
.article-tag:hover {
    background: var(--teal) !important;
    color: #fff !important;
    border-color: var(--teal) !important;
}
 
/* ── Auteur ── */
.article-author img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}
 
/* ── Navigation précédent/suivant ── */
.article-nav-link {
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    color: inherit !important;
}
 
.article-nav-link:hover {
    border-color: var(--teal) !important;
    box-shadow: 0 4px 16px rgba(31, 168, 201, .12);
    transform: translateY(-2px);
}
 
.article-nav-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal);
    font-weight: 600;
}
 
.article-nav-title {
    font-size: .9rem;
    font-weight: 600;
    color: #0f1e2d;
    line-height: 1.4;
}
 
/* ── Sommaire ── */
.article-toc {
    background: #fff;
    border: 1px solid #dce7ed;
    border-radius: 1rem;
    padding: 1.5rem;
    font-size: .875rem;
}
 
.article-toc > .d-flex {
    border-bottom: 1px solid #e5eff4;
    padding-bottom: .75rem;
    margin-bottom: .75rem !important;
}
 
.article-toc-toggle {
    color: #7aaab8 !important;
    text-decoration: none !important;
}
 
.toc-item {
    margin-bottom: .35rem;
    line-height: 1.4;
}
 
.toc-level-3 {
    padding-left: 1rem;
}
 
.toc-link {
    color: #4c6476;
    transition: color .2s ease;
    display: block;
}
 
.toc-link:hover,
.toc-link.active {
    color: var(--teal);
    font-weight: 600;
}
 
.toc-link.active {
    position: relative;
    padding-left: .75rem;
}
 
.toc-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1em;
    background: var(--teal);
    border-radius: 2px;
}
 
@media (max-width: 1199px) {
    .article-toc {
        position: static !important;
        margin-bottom: 2rem;
    }
}



.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--text-white);
  background-color: var(--teal);}

.nav-link {color: var(--teal);}


/* ══════════════════════════════════════════════════════════════
   BOUTON RÉSERVATION FIXE
   ══════════════════════════════════════════════════════════════ */
 
.btn-resa-fixed {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--teal);
    color: #fff !important;
    border-radius: 50px;
    padding: .75rem 1.25rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .04em;
    box-shadow: 0 6px 24px rgba(31, 168, 201, .45);
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease, padding .2s ease;
    white-space: nowrap;
}
 
.btn-resa-fixed i {
    font-size: 1.1rem;
    flex-shrink: 0;
}
 
.btn-resa-fixed:hover {
    background: var(--teal-dk);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(31, 168, 201, .55);
    color: #fff !important;
}
 
.btn-resa-fixed:active {
    transform: translateY(0);
}
 
/* Sur mobile : icône seule, label masqué */
@media (max-width: 575px) {
    .btn-resa-fixed {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
        justify-content: center;
        box-shadow: 0 4px 18px rgba(31, 168, 201, .5);
    }
 
    .btn-resa-fixed__label {
        display: none;
    }
 
    .btn-resa-fixed i {
        font-size: 1.25rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   FRONT PAGE
   ══════════════════════════════════════════════════════════════ */
 
/* ── Scroll indicator hero ── */
.hero-video__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
 
.hero-video__scroll span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 12px;
    position: relative;
}
 
.hero-video__scroll span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.8);
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
 
@keyframes scrollBounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50%       { opacity: .3; transform: translateX(-50%) translateY(10px); }
}
 
/* ── Chiffres clés ── */
.home-stat {
    padding: 1.5rem 1rem;
}
 
.home-stat__number {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: .5rem;
}
 
.home-stat__label {
    font-size: .875rem;
    color: #7aaab8;
    font-weight: 500;
}
 
/* ── Visuel intro & formations ── */
.home-intro-media img,
.home-formations-visual img {
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
 
/* ── Padding section ── */
.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}
 
@media (max-width: 991px) {
    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}


/* ── Pages légales ── */

.page {margin:0;}

.page-legal .legal-content {
    font-size: .975rem;
    line-height: 1.8;
    color: #2c3e50;
}
 
.page-legal .legal-content h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: .75rem;
    color: #0f1e2d;
    padding-bottom: .4rem;
    border-bottom: 2px solid #e5eff4;
}
 
.page-legal .legal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color: #0f1e2d;
}
 
.page-legal .legal-content p,
.page-legal .legal-content li {
    color: #4a5568;
}
 
.page-legal .legal-content a {
    color: var(--teal);
    text-underline-offset: 3px;
}
 
.page-legal .legal-content ul,
.page-legal .legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}




/* ── Logos certifications footer ── */
.footer-cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.92); */
    border-radius: 8px;
    padding: 7px 12px;
    transition: background .2s ease, transform .2s ease;
}
 
.footer-cert-badge:hover {
    background: #fff;
    transform: translateY(-2px);
}
 
.footer-cert-badge img {
    height: 55px;
    width: auto;
    display: block;
}


