/* ============================================================
   TEMPLE DES PYTHONS DU BÉNIN — FEUILLE DE STYLE PRINCIPALE
   ============================================================ */


/* ---------- Variables & Reset ---------- */

:root {
    /* ── Couleur accent (remplace l'or) ──
       Changer les 4 variables ci-dessous pour changer l'accent global */
    --accent: #C9522A;
    /* Terracotta vif */
    --accent-dark: #A03D1C;
    --accent-light: #E07050;
    --accent-rgb: 201, 82, 42;
    /* pour rgba() */
    /* Alias anciens (conservés pour compatibilité) */
    --or: var(--accent);
    --or-dark: var(--accent-dark);
    --or-light: var(--accent-light);
    /* Primaire : #080a09 (quasi-noir, légèrement teinté vert) */
    --vert: #080a09;
    /* couleur primaire principale */
    --vert-dark: #020303;
    /* variante très sombre */
    --vert-light: #1c2420;
    /* variante légèrement plus claire pour hover */
    /* Terracotta (accents chauds) */
    --terre: #A0522D;
    --terre-dark: #7B3E21;
    /* Neutres */
    --blanc: #F5F5DC;
    --noir: #080a09;
    --blanc-pur: #ffffff;
    --gris: #6C757D;
    --gris-clair: #F8F6F2;
    --rouge: #8B0000;
    /* Typo */
    --font-titre: 'Cormorant Garamond', 'Georgia', serif;
    --font-corps: 'Montserrat', 'Helvetica Neue', sans-serif;
    /* UI */
    --transition: 0.3s ease;
    --radius: 12px;
    --ombre: 0 4px 24px rgba(0, 0, 0, 0.10);
    --ombre-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* empêche le scroll horizontal sur iOS Safari */
}

body {
    font-family: var(--font-corps);
    color: var(--noir);
    background-color: #fff;
    line-height: 1.75;
    overflow-x: hidden;
    font-size: 0.95rem;
    -webkit-font-smoothing: antialiased;
    max-width: 100vw; /* filet de sécurité contre les débordements */
}

/* Toutes les images restent dans leur conteneur */
img {
    max-width: 100%;
    height: auto;
}


/* ---------- Typographie ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-titre);
    font-weight: 700;
    line-height: 1.25;
    color: var(--noir);
}

h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

a {
    color: var(--or-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--or);
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.bg-creme {
    background-color: var(--blanc) !important;
}

.bg-sombre {
    background-color: var(--vert-dark) !important;
}


/* ---------- Boutons ---------- */

.btn-or {
    background: linear-gradient(135deg, var(--or), var(--or-dark));
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-corps);
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-or:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
    background: linear-gradient(135deg, var(--or-light), var(--or));
}

.btn-vert {
    background: linear-gradient(135deg, var(--vert), var(--vert-dark));
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(8, 10, 9, 0.35);
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-vert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 10, 9, 0.55);
    color: #fff;
    background: linear-gradient(135deg, var(--vert-light), var(--vert));
}

.btn-outline-or {
    background: transparent;
    color: var(--or);
    border: 2px solid var(--or);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-outline-or:hover {
    background: var(--or);
    color: var(--noir);
    transform: translateY(-2px);
}

.btn-outline-blanc {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--transition);
    display: inline-block;
}

.btn-outline-blanc:hover {
    background: #fff;
    color: var(--noir);
}


/* ---------- Site Header (wrapper fixe = topbar + navbar) ---------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: 0;          /* zéro espace entre topbar et navbar */
    padding: 0;
    margin: 0;
    line-height: 0;  /* supprime tout espace texte résiduel entre enfants */
}

/* Chaque enfant direct reprend un line-height normal */
.site-header > * {
    line-height: normal;
}

/* ---------- Top Bar / Bannière d'annonces ---------- */

.topbar {
    position: relative;
    height: 50px;
    flex-shrink: 0;             /* ne se compresse pas dans le flex parent */
    overflow: hidden;
    background: linear-gradient(90deg,
        #0c0604 0%,
        #221009 35%,
        #3b1a0c 50%,
        #221009 65%,
        #0c0604 100%);
    /* Pas de border-bottom : pas d'espace visuel avec la navbar */
    transition: height 0.38s ease;
}

/* Halo lumineux centré */
.topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 180% at 50% 50%,
        rgba(var(--accent-rgb), 0.28) 0%,
        transparent 70%);
    pointer-events: none;
}

/* Ligne fine de lumière en haut */
.topbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--accent-rgb), 0.55) 30%,
        rgba(var(--accent-rgb), 0.55) 70%,
        transparent);
    pointer-events: none;
}

html.topbar-closed .topbar {
    height: 0;
}

/* ── Ligne intérieure ── */
.topbar-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 1.5rem;
    gap: 0.85rem;
}

/* Badge étiquette */
.topbar-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-corps);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1;
    box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.55);
}

/* Zone des slides */
.topbar-slides {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 50px;
    overflow: hidden;
}

/* Chaque slide : centré, transitions d'entrée/sortie */
.topbar-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-corps);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

/* Entrée : visible et en place */
.topbar-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Sortie : monte et disparaît */
.topbar-slide.is-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.38s ease, transform 0.38s ease;
}

.topbar-slide-icon {
    color: var(--accent-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Points de navigation */
.topbar-dots {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-dot {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s ease, background 0.3s ease;
}

.topbar-dot.active {
    width: 28px;
    background: var(--accent);
    box-shadow: 0 0 6px rgba(var(--accent-rgb), 0.6);
}

/* Bouton fermer */
.topbar-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.58rem;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
    line-height: 1;
}

.topbar-close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .topbar-badge { display: none; }
}

@media (max-width: 480px) {
    .topbar-dots { display: none; }
    .topbar-slide { font-size: 0.8rem; }
}


/* ---------- Navbar ---------- */


/* ===== NAVBAR — fond blanc, texte noir ===== */


/* Barre principale */

.navbar-temple {
    background: #ffffff;
    border-bottom: 1px solid rgba(8, 10, 9, 0.07);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 0.4rem 0;
    margin: 0 !important;
    margin-top: 0 !important;   /* Bootstrap peut injecter margin-top via --bs-navbar vars */
    flex-shrink: 0;
    width: 100%;
    --bs-navbar-padding-y: 0;   /* neutralise le padding Bootstrap via sa propre variable */
    transition: padding 0.35s ease, box-shadow 0.35s ease;
    z-index: 1000;
}

.navbar-temple.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.10);
}


/* Logo image */

.navbar-logo {
    height: 62px;
    width: 62px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
    border: 2.5px solid rgba(var(--accent-rgb), 0.35);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition), box-shadow var(--transition);
}

.navbar-temple.scrolled .navbar-logo {
    height: 46px;
    width: 46px;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.28);
}


/* Texte brand */

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand-text small {
    font-family: var(--font-corps);
    font-weight: 500;
    font-size: 0.62rem;
    color: rgba(8, 10, 9, 0.42);
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* Brand */

.navbar-temple .navbar-brand {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--noir) !important;
    display: flex;
    align-items: center;
}


/* Liens nav */

.navbar-temple .nav-link {
    color: #000 !important;
    font-weight: 600;
    font-size: 0.97rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all var(--transition);
    letter-spacing: 0.1px;
}

.navbar-temple .nav-link:hover,
.navbar-temple .nav-link.active {
    color: var(--accent) !important;
    background: rgba(var(--accent-rgb), 0.08);
}


/* Dropdown menu standard */

.navbar-temple .dropdown-menu {
    background: var(--noir);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    margin-top: 0.4rem;
    min-width: 215px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    padding: 0.4rem 0;
}

.navbar-temple .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 0.3rem 0;
}

.navbar-temple .dropdown-item {
    color: rgba(255, 255, 255, 0.80);
    padding: 0.55rem 1.1rem;
    font-size: 0.855rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
}

.navbar-temple .dropdown-item:hover,
.navbar-temple .dropdown-item:focus {
    background: rgba(var(--accent-rgb), 0.14);
    color: var(--accent-light);
}


/* Toggle mobile */

.navbar-toggler {
    border: 1.5px solid rgba(8, 10, 9, 0.18);
    padding: 0.3rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%288%2C10%2C9%2C0.72%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ── Bouton Réserver ── */

.btn-reserver {
    background: var(--accent);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    border: none;
    white-space: nowrap;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-reserver:hover {
    background: var(--accent-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.38);
}


/* ── Sélecteur de langue avec drapeaux ── */

.lang-switcher {
    position: relative;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    background: transparent;
    border: 1.5px solid rgba(8, 10, 9, 0.16);
    border-radius: 50px;
    padding: 0.3rem 0.65rem;
    cursor: pointer;
    transition: all var(--transition);
    color: rgba(8, 10, 9, 0.72);
    font-size: 0;
    /* cache le texte par défaut */
}

.lang-trigger:hover,
.lang-trigger:focus,
.lang-trigger.show {
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.06);
    outline: none;
    box-shadow: none;
}


/* Drapeau courant (plus grand) */

.flag-current {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-code {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(8, 10, 9, 0.72);
    text-transform: uppercase;
}

.lang-chevron {
    font-size: 0.6rem;
    color: rgba(8, 10, 9, 0.45);
    transition: transform var(--transition);
}

.lang-trigger.show .lang-chevron {
    transform: rotate(180deg);
}


/* Dropdown langue */

.lang-dropdown {
    min-width: 165px;
    background: #ffffff;
    border: 1px solid rgba(8, 10, 9, 0.10);
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    padding: 0.35rem 0;
    margin-top: 0.4rem !important;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.9rem;
    color: rgba(8, 10, 9, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
}

.lang-option:hover {
    background: rgba(var(--accent-rgb), 0.07);
    color: var(--noir);
}

.lang-option.active {
    background: rgba(var(--accent-rgb), 0.10);
    color: var(--accent-dark);
    font-weight: 700;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.check-lang {
    color: var(--accent);
    font-size: 0.75rem;
}


/* Actions côté droit */

.navbar-actions {
    gap: 0.6rem;
}


/* Responsive */

@media (max-width: 991.98px) {
    .lang-dropdown {
        min-width: 100%;
    }
    .btn-reserver {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
    }
}


/* ============================================================
   HERO SLIDER — DESIGN PREMIUM
   ============================================================ */


/* ── Conteneur ── */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}


/* ── Chaque slide ── */

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: all;
}


/* ── Fond (Ken Burns) ── */

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}


/* ── Overlay principal ── */

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* ── Vignette (profondeur) ── */

.slide-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at 60% 50%, transparent 20%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}


/* ── Numéro fantôme décoratif ── */

.slide-ghost-num {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-family: var(--font-titre);
    font-size: clamp(10rem, 22vw, 22rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.04em;
    transition: opacity 0.8s ease;
}

.hero-slide:not(.active) .slide-ghost-num {
    opacity: 0;
}

.hero-slide.active .slide-ghost-num {
    opacity: 1;
}


/* ── Ligne verticale accent (gauche) ── */

.slide-deco-line {
    position: absolute;
    left: 2.2rem;
    top: 22%;
    bottom: 28%;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--accent) 40%, var(--accent) 60%, transparent 100%);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.6s ease 0.1s;
}

.hero-slide.active .slide-deco-line {
    opacity: 1;
}


/* ── Zone de contenu ── */

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
}


/* ── Eyebrow (ligne + texte) ── */

.slide-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}

.hero-slide.active .slide-eyebrow {
    opacity: 1;
    transform: translateX(0);
}

.eyebrow-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.eyebrow-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}


/* ── Titre H1 ── */

.slide-title {
    font-family: var(--font-titre);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.4rem;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.hero-slide.active .slide-title {
    clip-path: inset(0 0 0% 0);
}


/* Mot accentué dans le titre */

.slide-title span {
    color: var(--accent-light);
    position: relative;
    font-style: italic;
}

.slide-title span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.1s;
}

.hero-slide.active .slide-title span::after {
    width: 100%;
}


/* ── Description ── */

.slide-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 2.4rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.hero-slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}


/* ── Boutons CTA ── */

.slide-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease 0.9s, transform 0.55s ease 0.9s;
}

.hero-slide.active .slide-btns {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn-primary,
.slide-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.slide-btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.slide-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.4);
}

.slide-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
}

.slide-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}


/* ── Flèches navigation ── */

.slider-arrow {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.arrow-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.slider-arrow:hover .arrow-inner {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.06);
}


/* ── Compteur slides ── */

.slider-counter {
    position: absolute;
    bottom: 2.2rem;
    left: 2.2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.sc-current {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    min-width: 2ch;
}

.sc-track {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.sc-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 6.5s linear;
}

.sc-total {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}


/* ── Barre de progression (haut de l'écran) ── */

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 20;
    width: 0%;
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.6);
}


/* ── Bouton pause/play ── */

.slider-play-pause {
    position: absolute;
    bottom: 2.1rem;
    right: 2rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.slider-play-pause:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


/* ── Scroll down CTA ── */

.hero-scroll-cta {
    position: absolute;
    bottom: 8.5rem;
    right: 2.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.hero-scroll-cta:hover {
    color: var(--accent-light);
}

.scroll-arrow {
    writing-mode: horizontal-tb;
    animation: scrollBounce 1.6s ease-in-out infinite;
    font-size: 0.85rem;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}


/* ── Responsive ── */

@media (max-width: 767.98px) {
    .hero-slider {
        min-height: 100svh;
    }
    .slide-title {
        font-size: 1.85rem;
    }
    .slide-desc {
        font-size: 0.92rem;
        max-width: 100%;
    }
    .slide-ghost-num {
        display: none;
    }
    .slide-deco-line {
        display: none;
    }
    .slider-arrow .arrow-inner {
        width: 40px;
        height: 40px;
    }
    .slider-prev {
        left: 0.75rem;
    }
    .slider-next {
        right: 0.75rem;
    }
    .slider-counter {
        left: 1rem;
    }
    .hero-scroll-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-btns {
        flex-direction: column;
    }
    .slide-btn-primary,
    .slide-btn-secondary {
        justify-content: center;
    }
}


/* Ancienne classe hero (compat) */

.hero,
.hero-bg-img,
.hero-overlay,
.hero-content {
    display: none;
}


/* ---------- Chiffres Clés ---------- */

.stats-band {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(var(--accent-rgb), 0.25);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.25);
    /* Image de fond */
    background-image: url('../images/bzna.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Overlay sombre + teinte pour lisibilité du contenu */
.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(8, 10, 9, 0.82) 0%,
            rgba(30, 12, 5, 0.78) 40%,
            rgba(8, 10, 9, 0.85) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Halos de fond */
.stats-bg-glow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.22;
    z-index: 0;
}
.stats-bg-glow--left  { left: -100px; background: var(--accent); }
.stats-bg-glow--right { right: -100px; background: var(--accent-dark); }

/* Grille 4 colonnes */
.stats-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Carte stat */
.stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

/* Séparateur vertical */
.stat-sep {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(var(--accent-rgb), 0.35) 30%,
        rgba(var(--accent-rgb), 0.35) 70%,
        transparent 100%);
    flex-shrink: 0;
}

/* Icône */
.stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover .stat-icon-wrap {
    transform: scale(1.1);
    background: rgba(var(--accent-rgb), 0.22);
}

/* Chiffre — Cinzel pour le caractère sacré & majestueux */
.stat-number {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
    text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.35);
}

/* Label — Cinzel Decorative, petites capitales ornées */
.stat-label {
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.88);
    display: block;
    line-height: 1.5;
}

/* Étoiles (stat note) */
.stat-stars {
    margin-top: 0.6rem;
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 2px;
}


/* ---------- Section Titre ---------- */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--or-dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--or), var(--terre));
    margin: 1rem auto;
    border-radius: 3px;
}

.section-header p {
    color: var(--gris);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}


/* ---------- Section À propos ---------- */

.about-section {
    padding: 6rem 0;
    background: var(--blanc);
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--ombre-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* ── Feature items hover ── */

/* Légère surbrillance icône au hover */
.feature-item:hover .feature-icon {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(8, 10, 9, 0.92);
    color: var(--or);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 4px solid var(--or);
}

.about-img-badge span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-corps);
    font-weight: 400;
}

.about-content {
    padding: 1rem 0 1rem 1.5rem;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--vert-dark);
    font-weight: 500;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--or), var(--or-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vert-dark);
    font-size: 1.1rem;
}

.feature-text h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--vert-dark);
}

.feature-text p {
    margin: 0;
    color: var(--gris);
    font-size: 0.9rem;
}


/* ---------- Galerie Accueil ---------- */

.gallery-section {
    padding: 6rem 0;
    background: var(--gris-clair);
}

/* Conteneur élargi pour la galerie */
.gallery-section > .container {
    max-width: 1440px;
}

/* ── Mosaïque 3 colonnes ──
   Colonne 1 : 1 grande photo (2 lignes)
   Colonnes 2 & 3 : 2 petites photos chacune       */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: repeat(2, 310px);
    gap: 0.6rem;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
}

/* Placement explicite de chaque item dans la grille */
.gallery-mosaic .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery-mosaic .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-mosaic .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.gallery-mosaic .gallery-item:nth-child(4) { grid-column: 3; grid-row: 1; }
.gallery-mosaic .gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }

/* Tous les items */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--noir);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s ease;
    filter: brightness(0.92);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.75);
}

/* Gradient permanent en bas pour lisibilité du titre */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 6, 5, 0.82)  0%,
        rgba(5, 6, 5, 0.30)  38%,
        transparent           62%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.1rem 1.3rem;
    transition: background 0.5s ease;
}

.gallery-item:hover .gallery-item-overlay {
    background: linear-gradient(
        to top,
        rgba(5, 6, 5, 0.92)   0%,
        rgba(5, 6, 5, 0.50)   45%,
        rgba(var(--accent-rgb), 0.12) 100%
    );
}

.gallery-overlay-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

/* Titre toujours visible */
.gallery-item-title {
    font-family: var(--font-titre);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    transform: translateY(3px);
    transition: transform 0.4s ease, color 0.3s ease;
    flex: 1;
}

/* Ligne terracotta sous le titre, s'étend au survol */
.gallery-item-title::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--accent);
    margin-top: 5px;
    border-radius: 2px;
    transition: width 0.45s ease;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
    color: #fff;
}

.gallery-item:hover .gallery-item-title::after {
    width: 40px;
}

.gallery-item--large .gallery-item-title {
    font-size: 1.1rem;
}

.gallery-item--large:hover .gallery-item-title::after {
    width: 56px;
}

/* Bouton zoom — petit et discret par défaut, s'illumine au survol */
.gallery-item-zoom {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    transform: scale(0.85) translateY(4px);
    opacity: 0.6;
    transition: transform 0.4s ease, opacity 0.4s ease,
                background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.gallery-item:hover .gallery-item-zoom {
    transform: scale(1) translateY(0);
    opacity: 1;
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ── Grille galerie.php (ancienne, conservée) ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-grid .gallery-item {
    border-radius: var(--radius);
    min-height: 220px;
}

.gallery-grid .gallery-item img {
    min-height: 220px;
}

.gallery-item-overlay .caption {
    color: #fff;
    font-size: 0.85rem;
}

.gallery-item-overlay .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
}


/* ---------- Événements ---------- */

.events-section {
    padding: 6rem 0;
    background: var(--gris-clair);
}

.event-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--ombre);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ombre-lg);
}

.event-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--or);
    color: var(--vert-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

.event-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--vert);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.event-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.event-card-body .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gris);
    font-size: 0.85rem;
}

.event-card-body .event-meta i {
    color: var(--or);
    margin-right: 0.3rem;
}

.event-prix {
    font-weight: 700;
    color: var(--vert-dark);
    font-size: 1rem;
}


/* ---------- Python Royal ---------- */

.python-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background-image: url('../uploads/gallery/Python_royal.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}


/* Overlay sombre opaque — laisse juste deviner l'image derrière */
.python-section-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(4, 8, 3, 0.91) 0%,
            rgba(10, 18, 6, 0.86) 50%,
            rgba(4, 8, 3, 0.92) 100%);
    pointer-events: none;
}

/* ── Image ── */
.python-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 5 / 4;
}

.python-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 8s ease;
}

.python-img-wrap:hover img {
    transform: scale(1.04);
}

/* Badge "Animal Sacré" en haut à gauche */
.python-img-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(var(--accent-rgb), 0.92);
    color: #fff;
    font-family: var(--font-titre);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Tag nom scientifique en bas à droite */
.python-img-tag {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-style: normal;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.python-img-tag em {
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.04em;
}

/* ── Header centré ── */
.python-header {
    margin-bottom: 3rem;
}

.python-badge {
    color: var(--accent);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.python-header h2 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0.75rem 0 0;
}

.python-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 3px;
    margin: 1.2rem auto 0;
}

/* ── Contenu texte ── */
.python-content {
    padding-left: 1.5rem;
}

.python-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.python-content p strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* ── Faits clés ── */
.python-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    margin: 1.8rem 0 2rem;
}

.python-fact {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.python-fact:hover {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.python-fact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.python-fact div:last-child {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.python-fact strong {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.python-fact span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

/* Bouton outline adapté au fond sombre */
.btn-outline-python {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.btn-outline-python:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .python-img-wrap {
        max-width: 340px;
        margin-bottom: 2.5rem;
    }
    .python-content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .python-section { padding: 4rem 0; }
    .python-facts   { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .python-content h2 { font-size: 1.5rem; }
}


/* ---------- Témoignages Carrousel ---------- */

.testimonials-section {
    padding: 6rem 0 5rem;
    background: var(--noir);
}

.testimonials-section .section-header h2 { color: #fff; }

/* ── Carousel wrapper — pleine largeur ── */
.testi-carousel {
    position: relative;
    width: 100%;
    padding: 0 3.5rem;
}

.testi-track-wrap {
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Slide ── */
.testi-slide {
    flex: 0 0 25%;
    padding: 0.6rem;
    box-sizing: border-box;
}

/* ── Card ── */
.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-5px);
}

/* Guillemet */
.testi-quote-icon {
    font-size: 1.8rem;
    color: var(--or);
    opacity: 0.45;
    margin-bottom: 0.9rem;
    line-height: 1;
}

/* Étoiles */
.testi-stars {
    margin-bottom: 1rem;
}

.testi-stars .fa-star {
    color: var(--or);
    font-size: 0.8rem;
    margin-right: 1px;
}

/* Message */
.testi-msg {
    color: rgba(255, 255, 255, 0.80);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.75;
    flex: 1;
    margin: 0 0 1.25rem;
}

/* Séparateur */
.testi-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    margin-bottom: 1.25rem;
}

/* Auteur */
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #5a6068;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.testi-avatar i {
    font-size: 1.45rem;
    color: #d0d3d6;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-author-info strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.testi-author-info span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.testi-author-info span i {
    color: var(--or);
    margin-right: 3px;
}

/* ── Flèches ── */
.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.testi-nav:hover {
    background: var(--or);
    border-color: var(--or);
    color: var(--noir);
}

.testi-prev { left: 0; }
.testi-next { right: 0; }

.testi-nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ── Dots ── */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.testi-dot.active {
    background: var(--or);
    width: 24px;
    border-radius: 4px;
}


/* ---------- Section Réservation Accueil ---------- */

.reservation-banner {
    background: linear-gradient(135deg, var(--terre) 0%, var(--terre-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.reservation-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.05;
}

.reservation-banner h2 {
    color: #fff;
}

.reservation-banner p {
    color: rgba(255, 255, 255, 0.85);
}


/* ---------- Newsletter ---------- */

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #060f04 0%, #122a08 45%, #080f05 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(197,158,55,0.13) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.nl-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.newsletter-title {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.nl-divider {
    width: 56px;
    height: 3px;
    background: var(--or);
    border-radius: 2px;
    margin-bottom: 1.3rem;
}

.newsletter-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.newsletter-form {
    max-width: 580px;
    margin: 0 auto;
}

.nl-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(197,158,55,0.3);
    border-radius: 60px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.nl-input-wrap:focus-within {
    border-color: rgba(197,158,55,0.75);
    box-shadow: 0 0 0 4px rgba(197,158,55,0.1);
}

.nl-input-icon {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.nl-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    outline: none;
    padding: 0.55rem 0;
    min-width: 0;
}

.nl-input-wrap input::placeholder {
    color: rgba(255,255,255,0.38);
}

.nl-input-wrap button {
    background: var(--or);
    color: #fff;
    border: none;
    padding: 0.75rem 1.7rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    flex-shrink: 0;
}

.nl-input-wrap button:hover {
    background: #fff;
    color: #1a3a0d;
    transform: scale(1.04);
}

.nl-privacy {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    margin-bottom: 0;
    margin-top: 1.2rem;
}


/* ---------- Footer ---------- */

.footer {
    background: var(--noir);
    color: #fff;
    padding: 4rem 0 0;
    border-top: 3px solid var(--or);
}

.footer-logo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    margin-bottom: 1.4rem;
    gap: 0.6rem;
}

.footer-logo {
    width: 90px;
    height: auto;
    filter: invert(1);
}

.footer-brand-name {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.25;
    text-align: left;
}

.footer-brand {
    font-family: var(--font-titre);
    font-size: 1.6rem;
    color: var(--or);
    margin-bottom: 1rem;
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: var(--or);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #fff;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--or);
    margin-top: 3px;
    min-width: 16px;
}

/* Footer galerie miniatures */

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 0.85rem;
}

.footer-thumb {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
}

.footer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.82;
}

.footer-thumb:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.footer-gallery-link {
    font-size: 0.82rem;
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color var(--transition);
}

.footer-gallery-link:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--or);
    color: var(--vert-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #fff;
    margin-top: 3rem;
}

.footer-bottom a {
    color: #fff;
}

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


/* ---------- Page Headers ---------- */

.page-header {
    background-color: var(--noir);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 11rem 0 5rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,10,3,0.96) 0%, rgba(4,10,3,0.96) 100%);
}

.page-header h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 1;
    background: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item a {
    color: var(--or);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}


/* ---------- Timeline ---------- */

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.4rem;
    align-items: flex-start;
}

.timeline-year {
    min-width: 100px;
    text-align: right;
    font-family: var(--font-titre);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--or);
    padding-top: 0.15rem;
    flex-shrink: 0;
}

.timeline-body {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(212,175,55,0.35);
    flex: 1;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--or);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 6px;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}

.timeline-title {
    color: var(--vert-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.timeline-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.timeline-item:last-child .timeline-body {
    border-left-color: transparent;
}

@media (max-width: 575.98px) {
    .timeline-item {
        flex-direction: column;
        gap: 0.4rem;
    }
    .timeline-year {
        min-width: unset;
        text-align: left;
        font-size: 0.95rem;
    }
    .timeline-body {
        padding-left: 1.25rem;
    }
}

/* ---------- Ogoun ---------- */

.ogoun-attrs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ogoun-attr-item {
    background: #fff;
    border: 1px solid rgba(212,175,55,0.25);
    border-left: 3px solid var(--or);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ogoun-attr-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 600;
}

.ogoun-attr-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vert-dark);
}

.ogoun-img-wrap {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--ombre-lg);
}

.ogoun-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .ogoun-img-wrap img {
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .ogoun-img-wrap img {
        height: 240px;
    }
}

.ogoun-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(4,10,3,0.82));
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-style: italic;
    padding: 2rem 1.2rem 1rem;
    text-align: center;
}

/* ---------- Cards génériques ---------- */

.card-temple {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    border: none;
}

.card-temple:hover {
    transform: translateY(-6px);
    box-shadow: var(--ombre-lg);
}

.card-temple .card-img-top {
    height: 220px;
    object-fit: cover;
}

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

.card-temple .card-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--or-dark);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.card-temple .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.card-temple .card-text {
    color: var(--gris);
    font-size: 0.9rem;
}

.card-temple .card-footer-meta {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gris);
}


/* ---------- Formulaires ---------- */

.form-control,
.form-select {
    border: 2px solid #e8e3d9;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fdfcf9;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--or);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: #fff;
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--vert-dark);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.form-group {
    margin-bottom: 1.25rem;
}


/* ---------- Tickets Tarifs ---------- */

.ticket-card {
    border-radius: var(--radius);
    border: 2px solid transparent;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    background: #fff;
    box-shadow: var(--ombre);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ticket-card:hover,
.ticket-card.selected {
    border-color: var(--or);
    transform: translateY(-6px);
    box-shadow: var(--ombre-lg);
}

.ticket-card .ticket-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.ticket-card .ticket-price {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-titre);
    color: var(--vert-dark);
}

.ticket-card .ticket-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gris);
}

.ticket-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1rem 0;
}

.ticket-card ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--gris);
}

.ticket-card ul li::before {
    content: '✓';
    color: var(--vert);
    font-weight: 700;
    margin-right: 0.5rem;
}

.ticket-popular {
    position: absolute;
    top: 12px;
    right: -20px;
    background: var(--or);
    color: var(--vert-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 2rem;
    transform: rotate(30deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Tarif cards réservation (National / International) --- */

.tarif-card {
    background: #fff;
    border-radius: var(--radius);
    border: 3px solid transparent;
    box-shadow: var(--ombre);
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tarif-card:hover {
    border-color: var(--or);
    transform: translateY(-8px);
    box-shadow: var(--ombre-lg);
}

.tarif-card.selected {
    border-color: var(--vert);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(46,93,52,0.2);
}

.tarif-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--vert);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 32px;
}

.tarif-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: #fff;
}

.tarif-nom {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 0.5rem;
}

.tarif-desc {
    font-size: 0.9rem;
    color: var(--gris);
    margin-bottom: 1.25rem;
}

.tarif-prix {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tarif-montant {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-titre);
    color: var(--vert-dark);
    line-height: 1;
}

.tarif-devise {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gris);
    text-align: left;
    line-height: 1.4;
}

.tarif-enfant {
    font-size: 0.82rem;
    color: var(--gris);
    background: var(--gris-clair);
    border-radius: 30px;
    padding: 0.3rem 1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.tarif-btn {
    background: var(--vert-dark);
    color: #fff;
    border-radius: 50px;
    padding: 0.7rem 1.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.25s;
}

.tarif-card:hover .tarif-btn,
.tarif-card.selected .tarif-btn {
    background: var(--or);
    color: var(--vert-dark);
}


/* ---------- Page Galerie ---------- */

.gallery-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 2px solid #ddd;
    background: transparent;
    color: var(--gris);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--vert);
    color: #fff;
    border-color: var(--vert);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: var(--ombre);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.masonry-item:hover img {
    transform: scale(1.06);
}

.masonry-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.1rem;
}

.masonry-item:hover .gallery-overlay {
    opacity: 1;
}

.masonry-item .gallery-overlay span {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}


/* ---------- Blog ---------- */

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--ombre);
    background: #fff;
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-lg);
}

.blog-card .blog-img {
    height: 230px;
    overflow: hidden;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

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

.blog-card .blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--gris);
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}

.blog-card .blog-meta i {
    color: var(--or);
}

.blog-card h3 {
    font-size: 1.1rem;
}

.blog-title-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.blog-title-link:hover {
    color: var(--vert);
}

.blog-card .blog-img a {
    display: block;
    height: 100%;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ---------- Mentions légales ---------- */

.mentions-intro {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--gris-clair);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
    color: var(--gris);
    font-size: 0.95rem;
    line-height: 1.7;
}

.mentions-icon {
    font-size: 1.8rem;
    color: var(--or);
    flex-shrink: 0;
    margin-top: 2px;
}

.mentions-intro p {
    margin: 0;
}

.mentions-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.mentions-block:last-of-type {
    border-bottom: none;
}

.mentions-block h2 {
    font-family: var(--font-titre);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--vert-dark);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.4rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--or);
}

.mentions-article {
    font-family: var(--font-corps);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--or);
}

.mentions-content {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
}

.mentions-content p {
    margin-bottom: 0.85rem;
}

.mentions-content p:last-child {
    margin-bottom: 0;
}

.mentions-content a {
    color: var(--vert);
    text-decoration: none;
    font-weight: 500;
}

.mentions-content a:hover {
    color: var(--or);
    text-decoration: underline;
}

.mentions-label {
    font-weight: 700;
    color: var(--noir);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 3px;
}

.mentions-date {
    background: var(--gris-clair);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
    color: var(--gris);
    margin-top: 3rem;
}

.mentions-date i {
    color: var(--or);
}

/* Politique de confidentialité — tableau et liste */
.confid-table {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.confid-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.9rem;
}

.confid-row:last-child {
    border-bottom: none;
}

.confid-row > div {
    padding: 0.7rem 1rem;
    color: #444;
    line-height: 1.5;
}

.confid-row > div:first-child {
    background: #f8f8f6;
    font-weight: 600;
    color: var(--vert-dark);
    border-right: 1px solid #e8e8e8;
}

.confid-head > div {
    background: var(--vert-dark) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right-color: rgba(255,255,255,.2) !important;
}

.confid-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.confid-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
}

.confid-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--or);
}

.article-content h2,
h3 {
    color: var(--vert-dark);
    margin: 2rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--or);
    padding: 1rem 1.5rem;
    background: var(--blanc);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--vert-dark);
    margin: 1.5rem 0;
}


/* ---------- Overlay envoi formulaire ---------- */

#sendOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 28, 10, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#sendOverlay.visible {
    opacity: 1;
    pointer-events: all;
}

.send-overlay-box {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    min-width: 260px;
}

.send-spinner {
    width: 52px;
    height: 52px;
    border: 4px solid #e8e8e8;
    border-top-color: var(--or);
    border-radius: 50%;
    animation: spinRing 0.85s linear infinite;
    margin: 0 auto 1.25rem;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

.send-overlay-label {
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vert-dark);
    letter-spacing: 0.5px;
}

/* ---------- Boutique ---------- */

.product-card {
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    background: #fff;
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-lg);
}

.product-card .product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--or);
    color: var(--vert-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-card .product-body {
    padding: 1.25rem;
}

.product-card .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vert-dark);
    font-family: var(--font-titre);
}

.product-card .product-category {
    color: var(--or-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}


/* ---------- Partenaires ---------- */

.partners-section {
    padding: 5rem 0;
    background: #f5f7f5;
}

/* Grille desktop */
.partners-carousel-wrap {
    position: relative;
}

.partners-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.partners-item {
    min-width: 0;
}

.partner-card {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: calc(var(--radius) + 2px);
    padding: 2rem 1.4rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--or);
    transform: translateY(-5px);
}

.partner-img-wrap {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.partner-img-wrap img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-img-wrap img {
    transform: scale(1.06);
}

.partner-placeholder-icon {
    font-size: 2.8rem;
    color: #ccc;
}

.partner-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vert-dark);
    line-height: 1.35;
    margin-bottom: 0;
}

/* Contrôles carrousel (mobiles uniquement) */
.partners-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.partners-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--vert-dark);
    background: transparent;
    color: var(--vert-dark);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.partners-btn:hover {
    background: var(--vert-dark);
    color: #fff;
}

.partners-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.partners-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.partners-dot.active {
    background: var(--or);
    transform: scale(1.3);
}

/* Carrousel mobile */
@media (max-width: 767px) {
    .partners-track {
        display: flex;
        overflow: hidden;
    }
    .partners-item {
        flex: 0 0 calc(50% - 0.5rem);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

@media (max-width: 480px) {
    .partners-item {
        flex: 0 0 80%;
    }
}


/* ---------- Section Don ---------- */

.donation-card {
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    background: var(--blanc);
    transition: all var(--transition);
    cursor: pointer;
}

.donation-card:hover,
.donation-card.selected {
    border-color: var(--or);
    background: #fff;
    box-shadow: var(--ombre-lg);
}

.donation-card .donation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.donation-card h4 {
    color: var(--vert-dark);
    margin-bottom: 0.5rem;
}


/* ---------- Contact ---------- */

.contact-info-box {
    background: var(--noir);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    height: 100%;
}

.contact-info-box h3 {
    color: var(--or);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item .info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    font-size: 1rem;
}

.contact-info-item .info-text h6 {
    color: var(--or);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item .info-text p {
    margin: 0;
    font-size: 0.9rem;
}


/* ---------- Carte Interactive ---------- */

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--ombre-lg);
    height: 400px;
}

.map-wrap.map-wrap-lg {
    height: 100%;
    min-height: 420px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info-panel {
    background: var(--vert-dark);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255,255,255,0.88);
}

.map-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    font-size: 1rem;
}

.map-info-item h6 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--or);
    margin: 0 0 0.2rem;
}

.map-info-item p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.85);
}

.map-info-item a {
    color: inherit;
    text-decoration: none;
}

.map-info-item a:hover {
    color: #fff;
}


/* ---------- Lightbox Modal ---------- */

.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: var(--or);
    color: var(--vert-dark);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: all var(--transition);
}

.lightbox-nav:hover {
    background: var(--or);
    color: var(--vert-dark);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}


/* ---------- Vidéo Modal ---------- */

.video-overlay {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
}

.video-overlay img {
    width: 100%;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vert-dark);
    font-size: 1.5rem;
    transition: all var(--transition);
}

.video-overlay:hover .video-play-btn {
    background: var(--or);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--ombre);
    background: #000;
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.video-card .ratio video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-body {
    padding: 1rem 1.1rem;
    background: #fff;
}

.video-card-body h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--noir);
}

.video-card-body p {
    font-size: 0.82rem;
    color: var(--gris);
    margin: 0;
    line-height: 1.5;
}


/* ---------- Animations ---------- */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}


/* ---------- Back to Top ---------- */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--or);
    color: var(--vert-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--ombre);
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--vert-dark);
    transition: background var(--transition), color var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--vert);
    transform: translateY(-3px);
}

.back-to-top:hover i {
    background: #fff;
    color: var(--vert);
}


/* ---------- WhatsApp Float ---------- */

.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    left: 2rem;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}


/* ---------- Alertes personnalisées ---------- */

.alert-temple {
    border: none;
    border-radius: var(--radius);
    border-left: 5px solid;
    padding: 1rem 1.5rem;
}

.alert-temple.alert-success {
    border-left-color: var(--vert);
    background: rgba(8, 10, 9, 0.06);
    color: var(--vert-dark);
}

.alert-temple.alert-danger {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.08);
    color: #721c24;
}


/* ---------- Responsive ---------- */


/* ============================================================
   RESPONSIVE GLOBAL — HOMEPAGE
   ============================================================ */


/* ── Tablette (≤ 991px) ── */

@media (max-width: 991.98px) {
    /* Sections */
    .about-section,
    .gallery-section,
    .events-section,
    .testimonials-section {
        padding: 4rem 0;
    }
    /* Carrousel témoignages tablette : 2 slides */
    .testi-slide { flex: 0 0 50%; }
    .testi-carousel { padding: 0 2.5rem; }
    .reservation-banner {
        padding: 3.5rem 0;
    }
    .newsletter-section {
        padding: 4rem 0;
    }
    .newsletter-title { font-size: 1.75rem; }
    /* À propos */
    .about-content {
        padding: 2rem 0 0;
    }
    .about-img-wrap img {
        height: 360px;
    }
    /* Galerie mosaïque — tablette : 2 colonnes */
    .gallery-mosaic {
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: repeat(2, 240px);
    }
    .gallery-mosaic .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
    .gallery-mosaic .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .gallery-mosaic .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-mosaic .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; height: 200px; }
    .gallery-mosaic .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; height: 200px; }
    /* Galerie grid (galerie.php) */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid .gallery-item:first-child {
        grid-column: span 2;
    }
    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 10px !important;
    }
    /* Navbar mobile */
    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0;
        gap: 0.5rem;
    }
    .btn-reserver {
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }
    .lang-dropdown {
        min-width: 100%;
    }
    /* Stats band */
    .stats-band { padding: 3.5rem 0; }
    .stat-card   { padding: 1.5rem 1rem; }
    /* Page headers intérieures */
    .page-header {
        padding: 9rem 0 4rem;
    }
}


/* ── Mobile large (≤ 767px) ── */

@media (max-width: 767.98px) {
    /* background-attachment:fixed non supporté sur iOS — désactivé sur mobile */
    .stats-band,
    .python-section {
        background-attachment: scroll;
    }
    /* Sections */
    .about-section,
    .gallery-section,
    .events-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    /* Carrousel témoignages mobile : 1 slide */
    .testi-slide { flex: 0 0 100%; }
    .testi-carousel { padding: 0 2rem; }
    .testi-nav { width: 36px; height: 36px; }
    .reservation-banner {
        padding: 2.5rem 0;
    }
    .newsletter-section {
        padding: 3rem 0;
    }
    .nl-input-wrap { flex-wrap: wrap; border-radius: 16px; padding: 0.75rem 1rem; gap: 0.5rem; }
    .nl-input-wrap input { width: 100%; padding: 0.4rem 0; }
    .nl-input-wrap button { width: 100%; justify-content: center; border-radius: 10px; padding: 0.75rem; }
    /* Titres de section */
    .section-header h2 {
        font-size: 1.6rem;
    }
    .section-header p {
        font-size: 0.95rem;
    }
    /* À propos */
    .about-content {
        padding: 1.5rem 0 0;
    }
    .about-img-wrap img {
        height: 260px;
    }
    .about-img-badge {
        padding: 0.75rem 1rem;
        font-size: 1.2rem;
    }
    .feature-item {
        gap: 0.75rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.95rem;
    }
    /* Stats band — 2×2 sur tablette */
    .stats-band  { padding: 3rem 0; }
    .stats-grid  { flex-wrap: wrap; }
    .stat-card   { flex: 0 0 50%; padding: 2rem 1rem; }
    .stat-sep    { display: none; }
    /* Galerie mosaïque — mobile : colonne unique */
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-mosaic .gallery-item:nth-child(1) { grid-column: 1; grid-row: auto; height: 280px; }
    .gallery-mosaic .gallery-item:nth-child(2),
    .gallery-mosaic .gallery-item:nth-child(3),
    .gallery-mosaic .gallery-item:nth-child(4),
    .gallery-mosaic .gallery-item:nth-child(5) { grid-column: 1; grid-row: auto; height: 200px; }
    /* Galerie grid (galerie.php) */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    .gallery-grid .gallery-item:first-child {
        grid-column: span 1;
    }
    .masonry-gallery {
        grid-template-columns: 1fr;
    }
    /* Events */
    .event-card-img {
        height: 180px;
    }
    /* Témoignages */
    .testimonial-card {
        padding: 1.4rem;
    }
    /* Bannière réservation */
    .reservation-banner h2 {
        font-size: 1.5rem;
    }
    .reservation-banner .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
    }
    .reservation-banner .d-flex.gap-3 .btn,
    .reservation-banner .d-flex.gap-3 a {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .reservation-banner .row.mt-4 {
        flex-direction: column;
    }
    .reservation-banner .col-auto {
        width: 100%;
    }
    .reservation-banner .col-auto>div {
        text-align: center;
    }
    /* Blog */
    .blog-card .blog-img {
        height: 190px;
    }
    /* Newsletter */
    .newsletter-title { font-size: 1.4rem; }
    /* Partenaires */
    .partner-img-wrap, .partner-img-wrap img { height: 55px; }
    .partners-section { padding: 3.5rem 0; }
    .partners-track { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    /* Page headers */
    .page-header {
        padding: 7rem 0 3rem;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
}


/* ── Protections globales anti-overflow (toutes tailles mobiles) ── */

@media (max-width: 767.98px) {
    /* Carte Google Maps : hauteur réduite */
    .map-wrap,
    .map-wrap.map-wrap-lg {
        height: 260px;
        min-height: unset;
    }
    /* Tableau confidentialité : colonne unique */
    .confid-row {
        grid-template-columns: 1fr;
    }
    .confid-row > div:first-child {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding-bottom: 0.4rem;
    }
    /* Mentions légales : labels en colonne */
    .mentions-content .row > [class*="col-sm-4"],
    .mentions-content .row > [class*="col-sm-8"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mentions-content .row > [class*="col-sm-4"] {
        padding-bottom: 0.2rem;
    }
    /* Section infos contact sidebar réservation */
    .contact-info-box {
        padding: 1.75rem 1.25rem;
    }
    /* Boutons côte à côte en colonne */
    .btn-or.me-3,
    .btn-vert.me-3 {
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }
}

/* ── Mobile étroit (≤ 480px) ── */

@media (max-width: 480px) {
    /* Slider */
    .slide-title {
        font-size: 1.6rem;
    }
    .slide-desc {
        font-size: 0.88rem;
    }
    .slide-btns {
        flex-direction: column;
        gap: 0.6rem;
    }
    .slide-btn-primary,
    .slide-btn-secondary {
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
    /* About */
    .about-img-wrap img {
        height: 220px;
    }
    /* Galerie grid */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    /* Stats band — 2×2 sur mobile */
    .stats-band  { padding: 2.5rem 0; }
    .stat-card   { flex: 0 0 50%; padding: 1.5rem 0.75rem; }
    .stat-icon-wrap { width: 42px; height: 42px; font-size: 0.95rem; }
    /* Section headers */
    .section-header h2 {
        font-size: 1.4rem;
    }
    /* Cards événements */
    .event-card-img {
        height: 160px;
    }
    /* Reservation banner */
    .reservation-banner .btn-lg {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    /* Partenaires carrousel mobile */
    .partner-card { padding: 1.2rem 0.8rem; }
    .partner-img-wrap, .partner-img-wrap img { height: 48px; }
    .partner-name { font-size: 0.72rem; }
    /* Footer */
    .footer {
        padding: 2.5rem 0 0;
    }
    .footer h5 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    .social-links {
        gap: 0.4rem;
    }
}


/* ---------- Spinner de chargement ---------- */

.page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #060f04 0%, #0e2208 50%, #060f04 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.loader-logo {
    width: 96px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: invert(1);
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(212,175,55,0.15);
    border-top-color: var(--or);
    border-right-color: rgba(212,175,55,0.5);
    animation: spin 1.1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-title {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.loader-sub {
    color: var(--or);
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0;
}