﻿/* ============================================================
   1. VARIABLES GLOBALES
   ============================================================ */
:root {
    --primary: #790078;
    --primary-hover: #f1c40f;
    --primary-light: rgba(121, 0, 120, 0.10);

    --white: #ffffff;
    --white-hover: #c0c0c0;

    --dark: #0a0f2b;
    --bg: #ffffff;
    --soft: #f6f7fb;
    --soft-2: #f8f9fc;

    --text: #0a0f2b;
    --muted: #666;
    --link: #790078;

    --radius: 18px;
    --radius-sm: 12px;
    --radius-pill: 999px;

    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.08);

    --max-width: 1280px;
    --drawer-w: min(88vw, 420px);

    --header-height: 90px;
    --header-height-scrolled: 70px;

    --section-space: 72px;
    --section-space-tablet: 56px;
    --section-space-mobile: 44px;
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-top: var(--header-height);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 20px;
}

/* ============================================================
   3. HEADER (topbar + navbar)
   ============================================================ */
header {
    position: fixed;
    inset: 0 0 auto 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: transform .3s ease-in-out, box-shadow .35s ease;
}

header.hidden {
    transform: translateY(-100%);
}

/* TOPBAR */
.topbar {
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* NAVBAR */
.navbar {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

/* ============================================================
   4. LOGO
   ============================================================ */
.logo img {
    width: 160px;
    height: auto;
    transition: .3s ease;
}

@media (min-width: 769px) {
    .logo img {
        width: 190px;
    }
}

@media (min-width: 1281px) {
    .logo img {
        width: 240px;
    }
}

/* ============================================================
   5. BURGER MENU
   ============================================================ */
#burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2001;
    transition: opacity .25s ease;
}

#burger-menu:focus-visible {
    outline: 3px solid var(--primary);
    border-radius: 6px;
}

#burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: transform .35s ease, opacity .25s ease, background .25s ease;
}

#burger-menu:hover span {
    background: var(--primary-hover);
}

body[data-menu-open="true"] #burger-menu span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body[data-menu-open="true"] #burger-menu span:nth-child(2) {
    opacity: 0;
}

body[data-menu-open="true"] #burger-menu span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1280px) {
    #burger-menu {
        display: flex;
    }
}

/* ============================================================
   6. LANGUES
   ============================================================ */
.lang-switcher {
    display: flex;
    gap: 12px;
}

.lang {
    padding: 8px 12px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: .3s ease;
}

.lang.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.lang:hover {
    background: var(--soft);
}

/* Mobile */
.lang-mobile {
    display: none;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1500;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: .25s ease;
}

.lang-btn:hover {
    border-color: var(--primary);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 6px 0;
    list-style: none;
    width: 140px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: .2s ease;
}

.lang-menu li:hover {
    background: var(--soft);
}

@media (min-width: 1281px) {
    .lang-switcher {
        display: flex !important;
    }
    .lang-mobile {
        display: none !important;
    }
}

@media (max-width: 1280px) {
    .lang-switcher {
        display: none !important;
    }
    .lang-mobile {
        display: block !important;
    }
}

/* ============================================================
   7. MENU PRINCIPAL / DROPDOWN / MEGA MENU
   ============================================================ */
.menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin-left: 10px;
}

.menu-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    transition: .2s ease;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s ease;
}

.menu-link:hover {
    color: var(--primary-hover);
}

.menu-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.mega,
.mega-1 {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(15px);
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.04);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 2000;
}

.mega {
    width: 870px;
}

.mega-1 {
    width: 580px;
}

.dropdown:hover .mega,
.dropdown:hover .mega-1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.submenu-group h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.submenu-inner {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.submenu-inner li {
    margin-bottom: 6px;
}

.submenu-inner li a {
    display: block;
    padding: 6px 0;
    color: var(--dark);
    font-size: .95rem;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.submenu-inner li a:hover {
    color: var(--primary-hover);
    padding-left: 4px;
}

.destinations-mega-inner {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
}

.destinations-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.destinations-list a {
    text-decoration: none;
    color: var(--dark);
    font-size: .95rem;
    transition: color .2s ease;
}

.destinations-list a:hover {
    color: var(--primary-hover);
}

.destination-preview img {
    width: 260px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.submenu-toggle {
    width: 100%;
    padding: 12px 0;
    font-size: 1.3rem;
    font-weight: 600;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-toggle::after {
    content: "▼";
    font-size: .8rem;
    transition: transform .3s ease;
    opacity: .7;
}

.submenu-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.submenu-inner[aria-expanded="false"] {
    display: none;
}

.submenu-inner[aria-expanded="true"] {
    display: block;
}

@media (min-width: 1281px) {
    .mega {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .mega-1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 1280px) {
    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-left: 0;
    }

    .menu-link {
        font-size: 1.55rem;
    }

    .submenu-toggle {
        font-size: 1.95rem;
    }

    .submenu-inner li a,
    .destinations-list a {
        font-size: 1.2rem;
        padding: 8px 0;
    }

    #main-menu {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(380px, 90vw);
        background: #fff;
        transform: translateX(100%);
        transition: .3s ease;
        padding: 90px 24px 40px;
        overflow-y: auto;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    body[data-menu-open="true"] #main-menu {
        transform: translateX(0);
    }

    .mega,
    .mega-1 {
        position: static;
        padding: 0;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        display: none;
    }

    .dropdown.open > .mega,
    .dropdown.open > .mega-1 {
        display: block;
    }

    .dropdown > a {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown > a::after {
        content: "▾";
        font-size: .9rem;
        opacity: .6;
        transition: transform .3s ease;
    }

    .dropdown.open > a::after {
        transform: rotate(180deg);
    }

    .destinations-mega-inner {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   8. BOUTONS GLOBAUX
   ============================================================ */
.btn{display:inline-block;padding:12px 22px;border-radius:10px;font-weight:600;transition:.25s ease;text-decoration:none;cursor:pointer}
.btn-primary{background:var(--primary);color:#fff;font-size:1rem}
.btn-primary:hover{background:var(--primary-hover);box-shadow:var(--shadow-soft)}
.btn-white{background:var(--white);color:#790078;border:2px solid #790078}
.btn-white:hover{background:var(--white-hover);box-shadow:var(--shadow-soft)}

/* ============================================================
   9. BREADCRUMB
   ============================================================ */
.breadcrumb-container{max-width:var(--max-width);margin:30px auto 10px;padding:10px 20px}
.breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:6px;list-style:none;font-size:1rem;color:var(--muted)}
.breadcrumb li:not(:last-child)::after{content:"›";margin:0 6px;color:var(--muted);font-weight:300}
.breadcrumb a{color:var(--dark);opacity:.85;transition:.2s ease}
.breadcrumb a:hover{opacity:1;color:var(--primary)}
.breadcrumb li:last-child{font-weight:600;color:var(--primary)}
.breadcrumb a:focus-visible{outline:2px solid var(--primary);outline-offset:2px;border-radius:4px}
@media(max-width:768px){.breadcrumb{font-size:.85rem}}
@media(max-width:480px){.breadcrumb{font-size:.8rem;gap:4px}}

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: clamp(580px, 74vh, 900px); /* ⭐ Hauteur réduite */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%; /* OK, car la hauteur est maintenant raisonnable */
    object-fit: cover;
    z-index: -4;
    transform: scale(1.08) translateY(0);
    transition: transform 12s ease, filter 1.4s ease;
    filter: brightness(.78) contrast(1.12) saturate(1.05);
    will-change: transform, filter;
}

.hero:hover img {
    transform: scale(1.12) translateY(-6px);
    filter: brightness(.92) contrast(1.15) saturate(1.1);
}

/* Dégradé supérieur + lumière directionnelle */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.22), rgba(0,0,0,.65)),
        linear-gradient(120deg, rgba(255,255,255,.06) 0%, rgba(0,0,0,0) 40%);
    z-index: -3;
}

/* Vignettage radial plus profond */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.28) 45%,
        rgba(0,0,0,.58) 100%
    );
    z-index: -2;
}

/* Contenu avec légère entrée verticale + présence plus forte */
.hero-content {
    max-width: 1300px;
    padding: clamp(24px, 4vw, 48px);
    position: relative;
    z-index: 1;
    transform: translateY(-12px);
    animation: heroFadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(-12px); }
}

/* TITRE — plus sculpté, plus premium */
.hero h1 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: clamp(22px, 2.4vw, 36px);
    letter-spacing: -0.6px;
    white-space: nowrap;
    text-shadow:
        0 2px 4px rgba(0,0,0,.35),
        0 4px 12px rgba(0,0,0,.28),
        0 0 22px rgba(0,0,0,.35);
}

/* TEXTE — plus lisible, plus doux */
.hero p {
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
    line-height: 1.75;
    opacity: .94;
    margin-bottom: clamp(36px, 3.4vw, 52px);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        0 1px 2px rgba(0,0,0,.25),
        0 2px 6px rgba(0,0,0,.2);
}

/* BOUTONS — plus premium, plus dynamiques */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 16px 32px;
    font-size: 1.08rem;
    border-radius: 16px;
    text-align: center;
    transition: .35s ease;
    backdrop-filter: blur(4px);
}

/* Outline premium */
.hero-buttons .btn-outline {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.hero-buttons .btn-outline:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        white-space: normal;
    }
}


/* ============================================================
   11. REASSURANCE
   ============================================================ */
.reassurance{background:var(--soft);padding:90px 20px}
.reassurance-grid{display:grid;gap:40px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));text-align:center}
.reassurance-grid div{background:#fff;padding:32px 24px;border-radius:var(--radius);box-shadow:var(--shadow-soft);transition:.3s ease;font-size:.95rem;color:#555}
.reassurance-grid div:hover{transform:translateY(-6px);box-shadow:var(--shadow-medium)}
.reassurance-grid strong{display:block;font-size:1.4rem;margin-bottom:10px;color:var(--primary)}

/* ============================================================
   12. SITEMAP
   ============================================================ */
.sitemap{max-width:1280px;margin:0 auto 60px;padding:40px 20px 0}
.sitemap h2{font-size:clamp(1.4rem,2.5vw,1.9rem);font-weight:700;color:var(--primary);margin-bottom:20px}
.sitemap p{font-size:1rem;line-height:1.7;color:var(--text);margin-bottom:30px}
.sitemap ul{list-style:none;padding-left:0;margin:0}
.sitemap-level-1>li{margin-bottom:28px}
.sitemap strong{display:block;font-size:1.05rem;font-weight:700;color:var(--primary);margin-bottom:10px}
.sitemap li ul{margin-left:18px;margin-top:8px}
.sitemap a{display:inline-block;font-size:.95rem;line-height:1.6;color:var(--link);text-decoration:none;margin:4px 0;transition:color .2s ease}
.sitemap a:hover{color:var(--primary-hover);text-decoration:underline}
.sitemap li li{margin-bottom:4px}
.sitemap li li ul{margin-left:16px}
@media(max-width:768px){
  .sitemap{padding:30px 18px 0}
  .sitemap a{font-size:.95rem}
}

/* ============================================================
   13. SECTIONS EDITORIALES COMMUNES
   ============================================================ */
.seo,
.why,
.practical,
.highlights,
.section.container {
    max-width: 1280px;
    margin: 0 auto var(--section-space);
    padding: 56px 24px 0;
}

.seo h2,
.why h2,
.practical h2,
.highlights h2,
.section.container h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -.02em;
    text-align: left;
}

.seo p,
.why p,
.practical p,
.highlights p,
.section.container .lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 22px;
    max-width: 900px;
    text-align: left;
}

.seo ul,
.why ul,
.practical ul,
.highlights ul {
    padding-left: 22px;
    margin: 0 0 32px;
    max-width: 900px;
}

.seo li,
.why li,
.practical li,
.highlights li {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 12px;
}

.seo strong,
.why strong,
.practical strong,
.highlights strong {
    color: var(--primary);
}

.seo a,
.why a,
.practical a,
.highlights a {
    color: var(--link);
    text-decoration: none;
    transition: color .2s ease, text-decoration .2s ease;
}

.seo a:hover,
.why a:hover,
.practical a:hover,
.highlights a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.seo {
    position: relative;
}

.seo + .seo,
.seo + .why,
.seo + .practical,
.seo + .highlights {
    padding-top: 8px;
}
.why{background:rgba(0,0,0,.015);border-radius:18px;padding:40px 24px}
.why ul li::marker{color:var(--primary)}
.practical{background:linear-gradient(to bottom,rgba(0,0,0,.02),rgba(0,0,0,0));border-radius:18px;padding:40px 24px}
.practical ul{list-style:none;padding-left:0}
.practical li{padding:14px 16px;margin-bottom:12px;background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:12px;box-shadow:0 2px 10px rgba(0,0,0,.03)}
.practical li:last-child{margin-bottom:0}
.highlights{background:rgba(0,0,0,.012);border-radius:18px;padding:40px 24px}
.highlights ul{list-style:none;padding-left:0}
.highlights li{position:relative;padding-left:24px;margin-bottom:16px}
.highlights li::before{content:"";position:absolute;left:0;top:.72em;width:10px;height:10px;border-radius:50%;background:var(--primary);transform:translateY(-50%)}
.hero+.seo,.hero+.section,.hero+.highlights,.hero+.why,.hero+.practical,.section+.seo,.section+.why,.section+.practical,.section+.highlights,.seo+.section,.why+.section,.practical+.section,.highlights+.section{margin-top:8px}

/* ============================================================
   14. SOMMAIRE D’ANCRAGE
   ============================================================ */
.main nav[aria-label="Sommaire de la page"]{max-width:1280px;margin:0 auto 24px;padding:0 24px}
.main nav[aria-label="Sommaire de la page"] ul{display:flex;flex-wrap:wrap;gap:12px;list-style:none;margin:0;padding:0}
.main nav[aria-label="Sommaire de la page"] li{margin:0}
.main nav[aria-label="Sommaire de la page"] a{display:inline-flex;align-items:center;min-height:42px;padding:10px 16px;border-radius:var(--radius-pill);background:#fff;border:1px solid rgba(0,0,0,.08);color:var(--primary);font-weight:600;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;box-shadow:0 2px 8px rgba(0,0,0,.03)}
.main nav[aria-label="Sommaire de la page"] a:hover{transform:translateY(-1px);border-color:rgba(0,0,0,.16);box-shadow:0 6px 18px rgba(0,0,0,.06);text-decoration:none}

/* ============================================================
   15. CTA / BLOC ACTION
   ============================================================ */
.section.container .hero-buttons{display:flex;flex-wrap:wrap;gap:14px;margin-top:24px}

/* ============================================================
   16. GRID / CARDS / TILES
   ============================================================ */
/* ============================================================
   SECTION POPULAR CITIES
   ============================================================ */
section.popular-cities {
    padding: 60px 0;
    background: var(--bg-light);
}

section.popular-cities h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
}

section.popular-cities h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ============================================================
   GRILLE DES CARTES
   ============================================================ */
.cards-travel {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
}

/* ============================================================
   CARTE
   ============================================================ */
.cards-travel .card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.cards-travel .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* ============================================================
   LIEN GLOBAL
   ============================================================ */
.cards-travel a {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: inherit;
    text-decoration: none;
}

/* Hover intelligent : seul le bouton change */
.cards-travel a:hover .btn {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   IMAGES — Format carré 1:1 (optimisé responsive)
   ============================================================ */
.cards-travel picture,
.cards-travel img {
    width: 100%;
    display: block;
}

.cards-travel img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    /* Suppression des limites fixes */
    max-width: none;
    max-height: none;
    margin: 0;
}

/* ============================================================
   TITRE
   ============================================================ */
.cards-travel h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* ============================================================
   TEXTE
   ============================================================ */
.cards-travel p {
    color: var(--muted);
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Désactivation du clamp */
.card p.no-clamp {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}

/* ============================================================
   BOUTON
   ============================================================ */
.cards-travel .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    border-radius: 30px;
    font-weight: 600;
    transition: background .25s ease, color .25s ease;
    margin-top: auto;
}

.cards-travel .btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   RESPONSIVE FINESSE
   ============================================================ */
@media (max-width: 480px) {
    section.popular-cities h2 {
        font-size: 1.7rem;
    }

    .cards-travel {
        gap: 28px;
    }

    .cards-travel .card {
        padding: 18px;
    }
}


/* ============================================================
   17. REVIEWS
   ============================================================ */

/* SECTION PRINCIPALE */
.reviews {
    max-width: 980px;
    margin: var(--section-space) auto;
    padding: 0 20px;
}

/* TITRE */
.reviews h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary);
    letter-spacing: -.02em;
}

/* GRILLE */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* CARTE AVIS */
.review {
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--soft);
    transition: transform .22s ease, box-shadow .22s ease;
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* TEXTE AVIS */
.review-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review.open .review-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* BOUTON LIRE PLUS */
.review-more {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
    padding: 0;
}

/* NOTE */
.review-rating {
    color: #f39c12;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* DATE */
.review-date {
    display: block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,.06);
    color: var(--muted);
    font-size: .9rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}






/* ============================================================
   18. FORMULAIRE AVIS
   ============================================================ */
.hp-field{position:absolute;left:-9999px;visibility:hidden}
.testimonial-form{background:#fff;padding:40px;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,.08);max-width:900px;margin:50px auto}
.testimonial-form h2{font-size:clamp(1.2rem,2.1vw,1.6rem);font-weight:700;margin-bottom:18px;color:var(--dark);text-align:center}
.testimonial-form .form-group{margin-bottom:18px}
.testimonial-form label,.testimonial-form legend{font-weight:600;margin-bottom:6px;display:block;color:var(--dark)}
.testimonial-form input,.testimonial-form textarea{width:100%;padding:12px;border:1px solid #ddd;border-radius:8px;font-size:1rem;font:inherit}
.testimonial-form textarea{min-height:120px;resize:vertical}
.testimonial-form input:focus,.testimonial-form textarea:focus{outline:2px solid #f39c12;outline-offset:2px;border-color:#f39c12}
.rating-fieldset{border:0;padding:0;margin:0 0 18px;min-width:0}
.stars{display:flex;gap:8px;justify-content:center;flex-wrap:wrap}
.stars input{position:absolute;opacity:0;pointer-events:none}
.stars label{font-size:1.8rem;line-height:1;color:#ccc;cursor:pointer;transition:color .2s ease;margin:0}
.stars input:checked~label{color:#f39c12}
.stars label:hover,.stars label:hover~label{color:#f1c40f}
.stars input:focus+label{outline:2px solid #f39c12;outline-offset:3px;border-radius:4px}
@media(max-width:768px){
  .stars{gap:4px;justify-content:space-evenly}
  .stars label{font-size:1.5rem}
}
@media(max-width:480px){
  .stars{gap:2px}
  .stars label{font-size:1.2rem}
}


/* ============================================================
   19. FAQ
   ============================================================ */

.faq-section{max-width:900px;margin:0 auto var(--section-space);padding:56px 24px 0}
.faq-section h2{font-size:clamp(1.5rem,2.6vw,2rem);font-weight:700;line-height:1.25;color:var(--primary);margin-bottom:32px;text-align:center;letter-spacing:-.02em}
.faq-list{display:flex;flex-direction:column;gap:14px}
.faq-item{border-radius:12px;background:#fff;box-shadow:var(--shadow-soft);overflow:hidden;transition:box-shadow .25s ease}
.faq-item:hover{box-shadow:var(--shadow-medium)}
.faq-question{width:100%;background:none;border:none;padding:18px 20px;font-size:1.1rem;font-weight:600;color:var(--dark);text-align:left;display:flex;justify-content:space-between;align-items:center;cursor:pointer}
.faq-question .faq-icon{transition:transform .3s ease}
.faq-question[aria-expanded=true] .faq-icon{transform:rotate(180deg)}
.faq-answer{padding:0 20px 18px;font-size:1rem;color:var(--text);line-height:1.7;animation:faq-open .3s ease}
@keyframes faq-open{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}

/* ================================
   FOLLOW SECTION (isolé)
   ================================ */

/* FOLLOW */
.follow-section{padding:3rem 0;text-align:center}
.follow-section h2{font-size:2rem;margin-bottom:2rem}
.follow-buttons{display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap}
.btn-follow{width:80px;height:80px;border-radius:50%;background:#f5f5f5;color:#333;transition:.2s ease;line-height:0;font-size:0;text-decoration:none;display:flex;justify-content:center;align-items:center}
.btn-follow svg{width:32px;height:32px;display:block;pointer-events:none}
.btn-follow:hover{transform:scale(1.08);background:#eaeaea}
.btn-follow.facebook{background:#1877f2;color:#fff}
.btn-follow.facebook:hover{background:#0f5bd8}
.btn-follow.instagram{background:radial-gradient(circle at 30% 30%,#fdf497,#fd5949,#d6249f,#285AEB);color:#fff}
.btn-follow.x{background:#000;color:#fff}
.btn-follow.x:hover{background:#222}
@media(max-width:480px){
    .btn-follow{width:65px;height:65px}
    .btn-follow svg{width:26px;height:26px}
}

/* ================================
   SHARE SECTION (isolé)
   ================================ */

.share-section{padding:3rem 0;text-align:center}
.share-section h2{font-size:2rem;margin-bottom:2rem}
.share-buttons{display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap}
.btn-share{width:80px;height:80px;border-radius:50%;background:#f5f5f5;color:#333;transition:.2s ease;line-height:0;font-size:0;text-decoration:none;display:flex;justify-content:center;align-items:center}
.btn-share svg{width:32px;height:32px;display:block;pointer-events:none}
.btn-share:hover{transform:scale(1.08);background:#eaeaea}
.btn-share.facebook{background:#1877f2;color:#fff}
.btn-share.facebook:hover{background:#0f5bd8}
.btn-share.whatsapp{background:#25D366;color:#fff}
.btn-share.whatsapp:hover{background:#1ebe5d}
.btn-share.twitter{background:#000;color:#fff}
.btn-share.twitter:hover{background:#222}
.btn-share.gmail{background:#EA4335;color:#fff}
.btn-share.gmail:hover{background:#c63a2d}
@media(max-width:480px){
    .btn-share{width:65px;height:65px}
    .btn-share svg{width:26px;height:26px}
}

/* ============================================================
   21. RECHERCHE
   ============================================================ */
.srch{background:var(--soft-2);padding:60px 0}
.srch-container{max-width:900px;margin:auto;padding:0 20px;text-align:center}
.srch-title{margin-bottom:14px;font-size:clamp(1.2rem,2.1vw,1.6rem);font-weight:700;color:var(--dark)}
.srch-intro{max-width:900px;margin:0 auto 48px;color:var(--muted);line-height:1.75;font-size:1.05rem}
.srch-form{display:flex;flex-direction:column;gap:18px;max-width:860px;margin:0 auto;text-align:left}
.srch-label{font-size:1rem;font-weight:600;color:var(--dark)}
.srch-field{position:relative}
.srch-icon{position:absolute;left:16px;top:50%;width:18px;height:18px;transform:translateY(-50%);background:url("data:image/svg+xml,%3Csvg fill='none' stroke='%23999' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.65' y1='16.65' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center;pointer-events:none}
.srch-input{width:100%;padding:18px 20px 18px 48px;border:1px solid #dcdcdc;border-radius:var(--radius);font-size:1.05rem;background:#fff;transition:.2s ease}
.srch-input:focus{border-color:var(--primary);outline:none;box-shadow:0 0 0 3px rgba(121,0,120,.18)}
.srch-btn{width:100%;padding:18px 28px;border-radius:var(--radius);border:none;background:var(--primary);color:#fff;font-weight:600;cursor:pointer;transition:.25s ease;box-shadow:var(--shadow-soft);font-size:1.05rem}
.srch-btn:hover{background:var(--primary-hover);transform:translateY(-2px);box-shadow:var(--shadow-medium)}
#srch-results{max-width:900px;margin:40px auto 0;display:flex;flex-direction:column;gap:22px}
.srch-result{display:block;padding:22px 26px;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-soft);text-decoration:none;color:var(--dark);transition:transform .25s ease,box-shadow .25s ease;opacity:0;animation:fadeSlideUp .5s ease forwards}
.srch-result:hover{transform:translateY(-3px);box-shadow:var(--shadow-medium)}
.srch-crumb{font-size:.85rem;color:var(--muted);margin-bottom:6px}
.srch-result h3{font-size:1.15rem;font-weight:700;margin:0 0 8px;color:var(--dark)}
.srch-desc{font-size:.95rem;line-height:1.55;color:var(--muted);margin:0}
mark{background:var(--primary-light);color:var(--primary);padding:0 2px;border-radius:3px}
@keyframes fadeSlideUp{0%{opacity:0;transform:translateY(12px)}100%{opacity:1;transform:translateY(0)}}

/* ============================================================
   22. FOOTER
   ============================================================ */
.site-footer{background:var(--dark);color:#fff;padding:60px 0 40px;font-size:1rem;line-height:1.6}
.footer-container{max-width:var(--max-width);margin:0 auto;padding:0 20px;display:grid;gap:40px;grid-template-columns:repeat(4,1fr)}
.footer-title{font-size:1.15rem;font-weight:700;margin-bottom:16px;display:flex;align-items:center;gap:10px}
.footer-title .bar{width:6px;height:20px;background:var(--primary);border-radius:4px;box-shadow:0 0 10px rgba(121,0,120,.6)}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin:8px 0}
.footer-links a{color:#fff;opacity:.85;transition:.25s ease}
.footer-links a:hover{opacity:1;color:var(--primary-hover)}
.brand-intro{opacity:.9;margin-bottom:16px}
.footer-ratings{background:rgba(255,255,255,.05);padding:16px;border-radius:12px;backdrop-filter:blur(6px)}
.rating-block{margin-bottom:12px}
.footer-stars{color:#ffd700;font-size:1.1rem}
.rating-btn{display:block;width:100%;text-align:center;margin-top:10px;padding:10px 14px;background:var(--primary);border-radius:8px;color:#fff;font-weight:600;transition:.25s ease}
.rating-btn:hover{background:var(--primary-hover)}
.footer-bottom{text-align:center;margin-top:50px;opacity:.8;font-size:.9rem}
.legal-links a{color:#fff;margin:0 6px;transition:.25s ease}
.legal-links a:hover{color:var(--primary-hover)}
.stars{font-size:1.5rem;color:#f39c12}

/* ============================================================
   23. DRAPEAUX
   ============================================================ */
.flag{display:inline-block;width:20px;height:14px;background-size:cover}
.flag-fr{background-image:url('/assets/flags/fr.svg')}
.flag-nl{background-image:url('/assets/flags/nl.svg')}
.flag-en{background-image:url('/assets/flags/en.svg')}

/* ============================================================
   24. RESPONSIVE GLOBAL
   ============================================================ */
@media(max-width:1279px){
  .footer-container{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:1024px){
  .seo,.why,.practical,.highlights,.section.container{margin-bottom:64px;padding:48px 22px 0}
  .why,.practical,.highlights{padding:34px 22px}
  .seo h2,.why h2,.practical h2,.highlights h2,.section.container h2{margin-bottom:20px}
}
@media(max-width:1023px){
  .footer-container{grid-template-columns:1fr}
}
@media(max-width:768px){
  .seo,.why,.practical,.highlights,.section.container{margin-bottom:52px;padding:40px 18px 0}
  .why,.practical,.highlights{padding:28px 18px;border-radius:14px}
  .seo h2,.why h2,.practical h2,.highlights h2,.section.container h2{font-size:clamp(1.35rem,5vw,1.7rem);margin-bottom:18px}
  .seo p,.why p,.practical p,.highlights p,.seo li,.why li,.practical li,.highlights li,.section.container .lead{font-size:1rem;line-height:1.72}
  .main nav[aria-label="Sommaire de la page"]{padding:0 18px;margin-bottom:18px}
  .main nav[aria-label="Sommaire de la page"] ul{gap:10px}
  .main nav[aria-label="Sommaire de la page"] a{width:100%;justify-content:center;border-radius:12px}
  .main nav[aria-label="Sommaire de la page"] li{width:100%}
  .practical li{padding:13px 14px}
  .testimonial-form{padding:24px;margin:30px 16px}
  .stars label{font-size:1.6rem}
  .reassurance{padding:70px 20px}
  .footer-title{font-size:clamp(1.6rem,6vw,2.1rem)}
  .footer-links a,.footer-links li,.footer-ratings p{font-size:clamp(1.2rem,4vw,1.6rem)}
  .footer-stars{font-size:clamp(1.4rem,4vw,1.8rem)}
}
@media(max-width:480px){
  .seo,.why,.practical,.highlights,.section.container{margin-bottom:44px;padding:34px 16px 0}
  .why,.practical,.highlights{padding:24px 16px}
  .seo p,.why p,.practical p,.highlights p{margin-bottom:18px}
  .seo ul,.why ul,.practical ul,.highlights ul{margin-bottom:24px}
  .highlights li{padding-left:20px}
  .highlights li::before{width:8px;height:8px}
  .breadcrumb{font-size:.8rem;gap:4px}
}
@media(min-width:1025px){
  .footer-title{font-size:clamp(.95rem,1.4vw,1.15rem)}
  .footer-links a,.footer-links li,.footer-ratings p{font-size:clamp(.9rem,1.2vw,1rem)}
  .footer-stars{font-size:clamp(1rem,1.2vw,1.2rem)}
}















/* WRAPPER */
.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 6px 14px;
    max-width: 320px;
    width: 100%;
    transition: all 0.25s ease;
}

/* INPUT */
.search-form input[type="text"] {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    padding: 6px 8px;
    background: transparent;
}

/* BUTTON */
.search-form button {
    border: none;
    background: #ff5a5f;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.25s ease;
}

.search-form button:hover {
    background: #e14c50;
}

/* HOVER SUR LE FORMULAIRE */
.search-form:hover {
    border-color: #bbb;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .search-form {
        max-width: 100%;
    }
}
