/* ================================================================
   style-v2.css — Let's Go Travel — Refonte 2026
   Remplace : style.css + media.css
   ================================================================ */

/* ── VARIABLES ───────────────────────────────────────────────── */
:root {

  --or: #c4b87a;
  --or-clair: #d4cc8a;
  --blanc: #fafaf7;
  --gris-clair: #f2f2ee;
  --gris-med: #888880;
  --gris-bord: #ddddd8;
  --noir-doux: #1a1f1a;
  --rouge: #c0392b;
  --radius: 12px;
  --radius-big: 20px;
  --radius-sm: 8px;
  --ombre: 0 4px 24px rgba(0, 0, 0, .10);
  --ombre-forte: 0 8px 40px rgba(0, 0, 0, .16);
  --trans: .22s ease;
  --font-titre: 'Newsreader', Georgia, serif;
  --font-corps: 'Reddit Sans', system-ui, sans-serif;
  --max-w: 1440px;
  --max-w-titre: 80%;
  --marge: 30px;
}

.fiche-hero__retour {
  position: absolute;
  text-decoration: none;
  z-index: 2;
  top: 20px;
  left: 24px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 40px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}

@media (max-width: 768px) {
  .fiche-hero__retour {
    padding: 5px 18px;
  }

  .pv-hero__content {
    padding-top: 15px !important;
  }
}

.fiche__retour:hover {
  background: var(--vert-clair);
}

.container_with_retour {
  padding-top: 20px !important;
}


.fiche__retour {

  background: var(--vert);
  color: #fff;
  border-radius: 40px;
  padding: 8px 18px;
  display: inline-block;
  margin-bottom: 20px;
  transition: background .2s;
  text-decoration: none;
}

.fiche-hero__retour:hover {
  background: rgba(255, 255, 255, .30);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-corps);
  font-size: 16px;
  line-height: 1.65;
  color: var(--noir-doux);
  background: var(--blanc);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  transition: color var(--trans);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-corps);
  cursor: pointer;
}

input,
select,
textarea {
  font-family: var(--font-corps);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ── TYPOGRAPHIE GLOBALE ─────────────────────────────────────── */
h1,
h2,
h3,
h4 {

  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(30px, 33px, 36px);
  font-family: var(--font-titre);
  padding-top: 40px;
  padding-bottom: 30px;
}

h2 {
  font-size: clamp(27px, 30px, 33px);
  padding-top: 30px;
  padding-bottom: 20px;
}

h3 {
  font-size: clamp(22px, 24px, 28px);
  padding-top: 17x;
  padding-bottom: 15px;
}

p {
  margin-bottom: .5em;
}

p:last-child {
  margin-bottom: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--gris-bord);
  margin: 32px 0;
}

hr.typic {
  border-color: var(--or);
  width: 48px;
  margin: 16px 0 24px;
}

/* ── LAYOUT HELPERS ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 50px 30px;
  position: relative;
}

.section {
  padding: 80px 40px;
}

.section--compact {
  padding: 56px 40px;
}

/* ── BOUTONS ─────────────────────────────────────────────────── */
.btn-principal {
  display: inline-block;
  background: var(--vert);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 40px;
  border: none;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
}

.btn-principal:hover {
  background: var(--vert-med);
  transform: translateY(-1px);
  color: #fff;
}

.btn-principal:active {
  transform: scale(.98);
}

.btn-lien {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  /* letter-spacing: .1em; */
  text-transform: uppercase;
  background: var(--vert);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(45, 74, 45, .35);
  border-radius: 40px;
  padding: 10px 22px;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}

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

.btn-lien--blanc {
  color: var(--or-clair);
  border-color: rgba(196, 184, 122, .4);
}

.btn-lien--blanc:hover {
  background: var(--or-clair);
  color: var(--vert);
  border-color: var(--or-clair);
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
#site-header {
  position: relative;
}

#main-nav {

  background: var(--vert);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);

  transition: background var(--trans);
}

#main-nav.scrolled {
  background: rgba(18, 32, 18, .94);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  height: 64px;
}

/* Logo */
.nav-logo {
  height: 100%;
}

.nav-logo img {
  height: 100%;
  width: auto;
  min-width: 64px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.nav-logo img.logo_home {
  height: 250%;
  margin-top: -10px;
}

.nav-logo img.logo_home_NT {
  height: 142%;
  margin-top: 0px;
}



@media (max-width: 880px) {
  .nav-logo img.logo_home {
    height: 100%;
    margin-top: inherit;
    padding: 0;
  }

  .nav-logo img.logo_home_NT {
    height: 97%;
    margin-top: 0px;
  }

}




.nav-logo-txt {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  color: #fff;
  white-space: nowrap;
}

/* Liens desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--or-clair);
}


.nav-arrow {
  font-size: 9px;
  margin-left: 3px;
  opacity: .6;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 32, 18, .97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.nav-item.has-sub:hover .nav-dropdown,
.nav-item.has-sub:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}

.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  color: var(--or-clair);
  background: rgba(255, 255, 255, .05);
}

/* CTA nav */
.nav-cta {
  background: rgba(196, 184, 122, .18);
  border: 1px solid rgba(196, 184, 122, .35);
  border-radius: 20px;
  padding: 7px 18px;
}

.nav-cta:hover {
  background: var(--or);
  color: var(--vert) !important;
  border-color: var(--or);
}

.nav-guide {
  background: var(--or);
  color: var(--vert) !important;
  border-color: var(--or);
  border: 1px solid rgba(196, 184, 122, .35);
  border-radius: 20px;
  /* padding: 7px 18px; */
  margin-right: 4px;
}

#mobile-menu .nav-guide {
  margin-bottom: 8px;
  margin-left: -20px;
  padding-left: 20px;
  margin-top: -6px;
  margin-right: -10px;

}

#mobile-menu .nav-guide a {
  padding-top: 7px;
  padding-bottom: 7px;
}


.nav-guide:hover {
  background: rgba(196, 184, 122, .18);
  border: 1px solid rgba(196, 184, 122, .35);
}


#mobile-menu .nav-cta {
  margin-left: -20px;
  padding-left: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-right: -10px;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, .85);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

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

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

/* Menu mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: rgba(18, 32, 18, .98);
  backdrop-filter: blur(16px);
  z-index: 300;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  font-size: 20px;
  transition: color var(--trans);
}

.mobile-menu-close:hover {
  color: #fff;
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu nav a {
  display: block;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: color var(--trans);
}

.mobile-menu nav a:hover {
  color: var(--or-clair);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 290;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}




/* ── HERO (page accueil) ─────────────────────────────────────── */

div.intro_HP {
  color: #fff;
  text-align: center;
}


div.intro_HP h1 {

  font-size: 35px;
  margin-bottom: 0px;
  padding-bottom: 10px;
  padding-top: 0;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .65);
}

div.intro_HP h2:before {
  content: '';
  display: block;
  width: 100px;
  border-top: 1px solid #fff;
  margin: auto;
  margin-bottom: 25px;

}

div.intro_HP h2 {
  padding-top: 10px;
  font-size: 18px;
  width: 800px;
  max-width: 100%;
  margin: auto auto 35px auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 15, 5, .4) 0%, rgba(5, 15, 5, .22) 45%, rgba(5, 15, 5, .72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  /* letter-spacing: .2em; */
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 20px;
  animation: lgFadeUp .8s ease both;
}

.hero-titre {
  font-family: var(--font-titre);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 22px;
  animation: lgFadeUp .9s .15s ease both;
}

.hero-sous-titre {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  animation: lgFadeUp .9s .3s ease both;
}

/* Barre de recherche hero */
.hero-search {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50px;
  padding: 8px 8px 8px 18px;
  animation: lgFadeUp .9s .45s ease both;
}

.hero-search-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .28);
  flex-shrink: 0;
}

.hero-search select {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-corps);
  font-size: 12.5px;
  font-weight: 400;
  padding: 6px 28px 6px 4px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,.55)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.hero-search select option {
  color: var(--noir-doux);
  background: #fff;
}

.hero-search-btn {
  background: var(--or);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans), transform var(--trans);
}

.hero-search-btn:hover {
  background: var(--or-clair);
  transform: scale(1.06);
}

.hero-search-btn svg {
  width: 17px;
  height: 17px;
  stroke: var(--vert);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: lgBounce 2.4s 1.5s ease-in-out infinite;
}

.hero-scroll-arrow svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, .55);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* ── SECTION GÉNÉRIQUE ───────────────────────────────────────── */
.section-titre {
  font-family: var(--font-titre);
  /* font-weight: 300; */
  color: var(--noir-doux);
}

.section-titre span {
  color: var(--vert-med);
}

.section-sous {
  font-size: 14px;
  color: var(--gris-med);
  margin-top: 8px;
  max-width: 500px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* ──ENCART NOUS REJOINDRE  ──────────────────────────────────────── */
.encart_rejoindre {
  background-image: url(../img/nous-rejoindre.jpg);
  background-size: cover;
  background-attachment: fixed;
  /* ← La clé du parallaxe */
  background-position: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 70px 30px;
}

.encart_rejoindre>div {
  width: 900px;
  max-width: 100%;
  margin: auto;
}


/* ── NEWSLETTER HP ──────────────────────────────────────── */
.newsletter_HP {
  background-image: url(../img/hp_newsletter.jpg);
  background-size: cover;
  background-attachment: fixed;
  /* ← La clé du parallaxe */
  background-position: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.newsletter_HP .container {
  z-index: 2;

}

.newsletter_HP input[type=checkbox] {
  background: #fff;
}

.newsletter_HP:before {
  position: absolute;
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.newsletter_HP #_atPopupSU {
  max-width: 600px;
  margin: auto;
  color: #fff;
}

.newsletter_HP input:not[type="checkbox"] {
  border-radius: 40px !important;
  border: none;
  padding: 20px !important;
}

.newsletter_HP #_atPopupSU .bl-template .bl-block-content-item {

  font-family: var(--font-corps) !important;
  color: #fff !important;
  margin-top: 0 !important;
}


.newsletter_HP #_atPopupSU .bl-template {

  font-family: var(--font-corps) !important;
  color: #fff !important;
}

.newsletter_HP #_atPopupSU .btn_abonner {
  border-radius: 40px !important;
  border: none;
  padding: 10px 20px !important;
  background: #fff;
  color: #2d2820;
  font-weight: normal;
  border: 1px solid #fff;
}

.newsletter_HP #_atPopupSU .btn_abonner:hover {
  background: #2d2820;
  color: #fff;
}



/* ── DERNIÈRES PLACES ──────────────────────────────────────── */

.contenu_dernieres_places_HP {
  background: var(--vert);
  color: #fff;
}

.contenu_dernieres_places_HP h2 {
  text-align: center;
  padding-top: 0;
  padding-bottom: 50px;
}

.dp-grid {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}



.contenu_dernieres_places_HP .dp-grid {
  width: 960px;
  margin: 0 auto 2rem;
}

@media (max-width: 660px) {
  .dp-grid {
    width: 500px !important;
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
    margin: auto;

  }
}

.dp-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.dp-card-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1.2;
  z-index: 1;


}

.HP .dp-card-img {
  border: 2px solid #fff;
}


#voyage .dp-card-img {
  border-radius: 18px 18px 0 0;
}

#voyage .dp-badge--theme {
  border-radius: 0 0 18px 18px;
}

.dp-card-img {
  overflow: hidden;
  /* masque la partie de l'image qui dépasse au zoom */
}

.dp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  /* animation fluide */
}

@media (prefers-reduced-motion: reduce) {
  .dp-card-img img {
    transition: none;
  }
}

.dp-card-img:hover img {
  transform: scale(1.1);
  /* zoom de 10% */
}

.dp-card-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.55) 100%); */
}

.dp-card-title {
  position: absolute;
  bottom: 80px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dp-country-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--vert);
  font-family: var(--font-titre);
  transform: translateX(-50%) rotate(-9deg);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 2;
}

#voyage .dp-country-tag {
  background: var(--vert);
  color: #fff;
}

.dp-date-badge {
  position: absolute;
  bottom: 14px;
  left: 0x;


  background: #fafaf7;
  background: rgba(255, 255, 255, .7);
  color: var(--vert);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 0 20px 20px 0;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, .2);
  border-left: 0px;

}

#voyage .dp-date-badge {
  background: #fff;
  color: #1a4a3a;
}

.dp-country-tag {}

.dp-card-info {

  color: #fff;
  font-size: 0.85rem;
  margin-top: 5px;
  padding: 0 4px;
  line-height: 1.7;
}

#voyage .dp-card-info {
  color: var(--vert);
}



.dp-card-info em {
  font-style: italic;
  display: block;
}

.dp-btn-wrap {
  text-align: center;
}

.dp-btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #fff;
  color: var(--vert);
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
}

.dp-btn:hover {
  background: var(--vert);
  color: #fff;

}

/* ── VOYAGES EN VEDETTE ──────────────────────────────────────── */
#section-vedette {
  background: var(--vert);
  color: #fff;
}

#section-vedette .section-titre {
  color: #fff;
}

#section-vedette .section-titre span {
  color: var(--or-clair);
}

#section-vedette .section-sous {
  color: rgba(255, 255, 255, .58);
}

.voyages-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.carte-voyage {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s;
}

.carte-voyage:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-forte);
}

.carte-voyage-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.carte-voyage:hover .carte-voyage-img {
  transform: scale(1.04);
}

.carte-voyage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 5, .88) 0%, rgba(5, 15, 5, .08) 55%, transparent 100%);
}

.carte-voyage-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .92);
  color: var(--vert);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 13px;
}

.carte-voyage-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--or);
  color: var(--vert);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
}

.carte-voyage-complet {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(192, 57, 43, .85);
  color: #fff;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
}

.carte-voyage-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px 20px;
}

.carte-voyage-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .48);
  margin-bottom: 5px;
}

.carte-voyage-titre {
  font-family: var(--font-titre);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.carte-voyage-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 10px;
}

.carte-voyage-meta strong {
  color: #fff;
  font-weight: 500;
}

.carte-voyage-bas {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.carte-voyage-jours {
  font-size: 12px;
  color: rgba(255, 255, 255, .58);
}

.carte-voyage-prix {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  color: var(--or-clair);
}

.carte-voyage-accomp {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
}

/* Pin thème (conservé) */
.pin_theme {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  text-align: right;
  color: rgba(255, 255, 255, .8);
}

/* ── VISION ──────────────────────────────────────────────────── */
#section-vision {
  background: var(--blanc);
}

.vision-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.vision-carte {
  background: var(--gris-clair);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: box-shadow var(--trans), transform var(--trans);
  border: 1px solid transparent;
}

.vision-carte:hover {
  box-shadow: var(--ombre);
  transform: translateY(-3px);
  border-color: var(--gris-bord);
}

.vision-icone {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--vert-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--trans);
}

.vision-carte:hover .vision-icone {
  background: var(--vert);
}

.vision-icone svg {
  width: 24px;
  height: 24px;
  stroke: var(--vert-med);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--trans);
}

.vision-carte:hover .vision-icone svg {
  stroke: #fff;
}

.vision-h {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--noir-doux);
  margin-bottom: 10px;
  line-height: 1.3;
}

.vision-p {
  font-size: 13px;
  line-height: 1.72;
  color: var(--gris-med);
}

.vision-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── NEWSLETTER ──────────────────────────────────────────────── */
#section-newsletter {
  position: relative;
  padding: 80px 40px;
  background: var(--vert) url('') center/cover no-repeat;
}

#section-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 5, .80);
  z-index: 0;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 32px;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  padding: 13px 22px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color var(--trans);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.newsletter-form input:focus {
  border-color: var(--or-clair);
}

.newsletter-form button {
  background: var(--or);
  color: var(--vert);
  border: none;
  border-radius: 40px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--trans);
}

.newsletter-form button:hover {
  background: var(--or-clair);
}

.newsletter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.newsletter-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
}

.newsletter-tag::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, .28);
  flex-shrink: 0;
}

/* ── ACCOMPAGNATEURS ─────────────────────────────────────────── */
#section-accomp {
  background: var(--blanc);
}

.accomp-carrousel-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.accomp-carrousel {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
}

.accomp-carte {
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--trans);
}

.accomp-carte:hover {
  transform: translateY(-4px);
}

.accomp-carte.featured {
  transform: scale(1.1);
}

.accomp-carte.featured:hover {
  transform: scale(1.1) translateY(-4px);
}

.accomp-avatar {
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 14px;
  border: 3px solid transparent;
  transition: border-color var(--trans);
  width: 110px;
  height: 110px;
}

.accomp-carte.featured .accomp-avatar {
  width: 150px;
  height: 150px;
  border-color: var(--or);
}

.accomp-carte:not(.featured):hover .accomp-avatar {
  border-color: var(--vert-pale);
}

.accomp-nom {
  font-family: var(--font-titre);
  font-size: .95rem;
  font-weight: 600;
  color: var(--noir-doux);
}

.accomp-role {
  font-size: 11px;
  color: var(--gris-med);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 3px;
}

/*

.carrousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gris-clair);
  border: 1px solid var(--gris-bord);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans), border-color var(--trans);
}

.carrousel-btn:hover {
  background: var(--vert-pale);
  border-color: var(--vert);
}

.carrousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--vert);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
  */

.accomp-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── ARIANE (breadcrumb) ─────────────────────────────────────── */
#ariane {
  font-size: 12px;
  color: var(--gris-med);
  padding: 12px 0 0;
  letter-spacing: .04em;
}

#ariane a {
  color: var(--gris-med);
  text-decoration: none;
}

#ariane a:hover {
  color: var(--vert-med);
}

#ariane span {
  color: var(--gris-med);
}

/* ── PAGES INTÉRIEURES ───────────────────────────────────────── */
#main {
  /* padding-top: 64px; */
  /* compense nav fixe */
  min-height: 60vh;
}

#main.page_22 article,
#main.page_41 article {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
}

@media (max-width: 768px) {

  #main.page_22 article,
  #main.page_41 article {

    grid-template-columns: 1fr;

  }
}




.content_container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px;
}

/* ── LISTE VOYAGES ───────────────────────────────────────────── */
ul.voyage_box {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ul.voyage_box li.case {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--gris-clair);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

ul.voyage_box li.case:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre);
} */

ul.voyage_box li a {
  text-decoration: none;
  display: block;
  color: inherit;
  text-align: center;
}

ul.voyage_box li span.photo {
  display: block;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 50%;
}

/* Obturateur argentique au hover */
ul.voyage_box li span.photo {
  display: block;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  /* ← important pour le clip */
}

ul.voyage_box li span.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #111;
  clip-path: circle(0% at 50% 50%);
  z-index: 2;
  pointer-events: none;
}

ul.voyage_box li span.photo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  opacity: 0.8;
  z-index: 3;
  pointer-events: none;
}

/* Déclenchement au hover du <li> ou de l'<a> */
ul.voyage_box li:hover span.photo::before {
  animation: obturateur 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

ul.voyage_box li:hover span.photo::after {
  animation: flash-lens 0.4s ease forwards;
}

/* Après l'animation, garder une bordure noire */
ul.voyage_box li:hover span.photo {
  box-shadow: inset 0 0 0 3px #111;
  transition: box-shadow 0.1s ease 0.15s;
  /* délai = fin de l'animation */
}

@keyframes obturateur {
  0% {
    clip-path: circle(0% at 50% 50%);
  }

  45% {
    clip-path: circle(55% at 50% 50%);
  }

  55% {
    clip-path: circle(55% at 50% 50%);
  }

  100% {
    clip-path: circle(0% at 50% 50%);
  }
}

@keyframes flash-lens {

  0%,
  44% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

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

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

/* fin effet obturateur */

ul.voyage_box li .bloc_voyage_titre {
  padding: 16px 16px 12px;
}

ul.voyage_box li span.titre {
  display: block;
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--noir-doux);
  margin-bottom: 4px;
  line-height: 1.2;
}

ul.voyage_box li span.pays_voyage {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vert-clair);
  margin-bottom: 4px;
}

ul.voyage_box li span.date {
  display: block;
  font-size: 12px;
  color: var(--gris-med);
}

ul.voyage_box li span.anime_par {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gris-med);
  padding: 0 16px;
}

ul.voyage_box li span.anime {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--vert);
  padding: 0 16px 14px;
}

ul.voyage_box li img.icon {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 60px;
}

ul.voyage_box li div.reste {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--or);
  color: var(--vert);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  text-align: center;
}

ul.voyage_box h2.divider {
  grid-column: 1 / -1;
  font-family: var(--font-titre);
  font-weight: 300;
  color: var(--gris-med);
  padding: 20px 0 8px;
  border-top: 1px solid var(--gris-bord);
  margin-top: 12px;
}

.prix_voyage_solo {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--vert);
  font-weight: 600;
  padding: 0 16px 14px;
}

.description_destinaton {
  grid-column: 1/-1;
  color: var(--gris-med);
  padding-bottom: 16px;
}


.fiche_pays {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.fiche_pays h1 {
  padding-top: 0;
}

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

.fiche_pays img {
  margin-bottom: 20px;
}

.fiche_pays h2:first-of-type {
  padding-top: 0;
}

.savoir_plus_guide {
  font-weight: bold;
}



/* =============================================
   Formulaire inscription - Let's Go Travel
   Correspond à la maquette Figma
   ============================================= */

/* --- Conteneur global --- */

.section-inscription {
  padding-top: 30px;
  background-image: url(/img/fleur.svg);
  background-size: 400px;
  background-position: top right;
  background-repeat: no-repeat;
}

.page_22 .content_container,
.page_41 .content_container {
  background-image: url(/img/fleur.svg);
  background-size: 400px;
  background-position: top right;
  background-repeat: no-repeat;
}

.btn-appeler {
  background-color: #6B7749;
  padding: 15px;
  color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-titre);
}

.btn-appeler:before {
  content: "";
  background-image: url(../img/telephone-letsgo-travel.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-bottom: -4px;
  margin-right: 2px;
}
}

.btn-appeler span {
  font-weight: 700;
}

.form_adm_contacts {
  max-width: 800px;
  position: relative;
}

form li {
  position: relative;
}

form li:has(input.input_obligatoire)::after,
form li:has(textarea.input_obligatoire)::after {
  /* content: '*';
  display: block;
  color: red;
  margin-left: 4px;
  position: absolute;
  top: 0;
  right: -10px; */
}


.form_adm_contacts fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* --- Reset liste --- */
.form_adm_contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

/* Message en pleine largeur */
.form_adm_contacts ul li:has(textarea),
.form_adm_contacts ul li:has(input[type="checkbox"]) {
  grid-column: 1 / -1;
}

/* --- Labels : masqués visuellement (placeholders utilisés à la place) --- */
.form_adm_contacts label {
  display: none;
}

/* --- Inputs & Select --- */
.form_adm_contacts input.text,
.form_adm_contacts textarea.text {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 20px;
  border: 1.5px solid #a8b8a8;
  border-radius: 50px;
  background: #fff;
  color: #2d4a2d;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form_adm_contacts input.text::placeholder,
.form_adm_contacts textarea.text::placeholder {
  color: #7a9a7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form_adm_contacts input.text:focus,
.form_adm_contacts textarea.text:focus {
  border-color: #2d5c2d;
  box-shadow: 0 0 0 3px rgba(45, 92, 45, 0.1);
}

.adultes_supp,
.enfants_supp {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
}

.adultes_supp>input,
.enfants_supp>input {
  margin-top: 4px;
  padding: 7px 20px !important;
}

/* Number inputs : supprimer les flèches navigateur */
.form_adm_contacts input[type="number"]::-webkit-inner-spin-button,
.form_adm_contacts input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form_adm_contacts input[type="number"] {
  -moz-appearance: textfield;
}

/* --- Textarea --- */
.form_adm_contacts textarea.text {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

/* --- Checkbox CGU --- */
.form_adm_contacts input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #2d5c2d;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

.form_adm_contacts ul li:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

/* --- Mention champs obligatoires --- */
.obligatoire {
  /* text-align: right; */
  color: gray;
  margin-bottom: 6px;
  font-size: .8em;
}

/* --- Bouton submit --- */
.bouton-container {
  text-align: center;
  margin-top: 28px;
}

.form_adm_contacts input[type="submit"].bouton {
  background-color: #1e3d1e;
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.form_adm_contacts input[type="submit"].bouton:hover {
  background-color: #2d5c2d;
  transform: translateY(-1px);
}

.form_adm_contacts input[type="submit"].bouton:active {
  transform: translateY(0);
}

/* --- Honeypot (piège anti-spam) : caché --- */
.form_adm_contacts li.piege {
  display: none !important;
}

/* --- Alerte confirmation --- */
#contact_alerte {
  background: rgba(255, 255, 255, .7);
  border-left: 4px solid #2d5c2d;
  padding: 16px 20px;
  border-radius: 8px;
  color: #1e3d1e;
  margin-bottom: 24px;
}

/* --- Responsive : 1 colonne sur mobile --- */
@media (max-width: 600px) {
  .form_adm_contacts ul {
    grid-template-columns: 1fr;
  }

  .form_adm_contacts ul li:has(textarea),
  .form_adm_contacts ul li:has(input[type="checkbox"]) {
    grid-column: 1;
    display: block;
  }
}



/* ── FORMULAIRE RECHERCHE VOYAGES ────────────────────────────── */
.form_search_interne,
.form_search_HP {}

.form_search_voyage {


  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.form_search_voyage div:nth-child(1) select {
  border-radius: 20px 0 0 20px;
}

@media (max-width: 1090px) {
  .form_search_voyage select {
    border-radius: 20px !important;
    margin: 2px;
  }
}


.form_search_voyage div:nth-child(5) select {
  border-radius: 0 20px 20px 0;
}

.select-css {
  background: #fff;
  border: 1px solid var(--gris-bord);
  text-transform: uppercase;
  padding: 9px 34px 9px 14px;
  font-family: var(--font-corps);
  color: var(--noir-doux);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  min-width: 160px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--trans);
}

.select-css:focus {
  border-color: var(--vert-med);
}

.reinitialiser_voyage {
  text-decoration: none;
}

.reinitialiser_voyage:hover {}


.btn_search_voyage {
  /* bouton rechercher */
}

input[type="checkbox"].avec_complets {
  accent-color: var(--vert);
}

.avec_voyages_complets {}

.avec_voyages_complets label {
  color: var(--noir-doux);
  font-size: 11px;
  font-weight: bold;
  /* display: flex; */
  /* align-items: center; */
  /* gap: 6px; */
  cursor: pointer;
  margin-bottom: 4px;
  position: relative;
}

.avec_voyages_complets input {
  width: 15px;
  height: 15px;
}

/* ── SCROLLBAR ────────────────────────────────────────────── */

/* Boutons scroll haut/bas — positionnés par rapport à .parcours */
.parcours__btn-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: background 0.2s, border-color 0.2s, opacity 0.3s;
  backdrop-filter: blur(4px);
}



.parcours__btn-scroll:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.parcours__btn-scroll.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ← ajuster top/bottom pour sortir du cadre autant que souhaité */
.parcours__btn-scroll--up {
  top: -18px;
}

/* sort de 18px au-dessus de la fenêtre */
.parcours__btn-scroll--down {
  bottom: -18px;
}

/* ── FICHE VOYAGE ────────────────────────────────────────────── */
#voyage_intro_img {
  aspect-ratio: 21/9;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

#voyage_intro_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voyage-fiche-titre {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 8px;
}

.voyage-fiche-resume {
  font-size: 15px;
  color: var(--gris-med);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 720px;
}

/* ── GALERIES / FANCYBOX ─────────────────────────────────────── */
.galerie-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.galerie-grille a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.galerie-grille img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.galerie-grille a:hover img {
  transform: scale(1.06);
}

/* ── FORMULAIRES CONTACT ─────────────────────────────────────── */
.form-contact {
  max-width: 680px;
}

.form-contact label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gris-med);
  margin-bottom: 6px;
  margin-top: 18px;
}

.form-contact input[type="text"],
.form-contact input[type="email"],
.form-contact input[type="tel"],
.form-contact textarea,
.form-contact select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-family: var(--font-corps);
  font-size: 14px;
  color: var(--noir-doux);
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
  appearance: none;
}

.form-contact input:focus,
.form-contact textarea:focus,
.form-contact select:focus {
  border-color: var(--vert-med);
}

.form-contact textarea {
  min-height: 140px;
  resize: vertical;
}

.form-contact input[type="submit"],
.form-contact button[type="submit"] {
  margin-top: 24px;
  /* hérite .btn-principal */
}

#contact_alerte {
  color: var(--rouge);
  font-size: 13px;
  margin-top: 6px;
}

.piege {
  border: 0 none;
  height: 0;
  position: absolute;
  width: 0;
}

/* ── PAGES STATIQUES (CMS) ───────────────────────────────────── */
article.page-content {
  max-width: 800px;
}

article.page-content h2 {
  font-size: 1.8rem;
  margin: 32px 0 12px;
}

article.page-content h3 {
  font-size: 1.3rem;
  margin: 24px 0 10px;
  color: var(--vert-med);
}

article.page-content p {
  color: #444;
}

article.page-content ul {
  list-style: disc;
  padding-left: 24px;
}

article.page-content ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

article.page-content a {
  color: var(--vert-med);
  text-decoration: underline;
  text-underline-offset: 2px;
}

article.page-content img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

article.page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

article.page-content td,
article.page-content th {
  padding: 10px 12px;
  border: 1px solid var(--gris-bord);
}

article.page-content th {
  background: var(--gris-clair);
  font-weight: 500;
}

/* ── ÉQUIPE ──────────────────────────────────────────────────── */

.accomp .equipe_nom {
  font-weight: bold;

}

.accomp .equipe_titre {
  font-size: .9em;
  line-height: 1.1em;

}

.accomp .equipe-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.equipe-carte {
  text-align: center;
}

.equipe-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--vert-pale);
}

.equipe-nom {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  font-weight: 600;
}

.equipe-spec {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--vert-clair);
  margin: 4px 0 10px;
}

.equipe-bio {
  font-size: 13px;
  color: var(--gris-med);
  line-height: 1.7;
}

/* ── PARTENAIRES ──────────────────────────────────────────────── */
.partenaire_liste {
  display: flex;
  flex-direction: column;
}

.partenaire {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 30px 0;
  border-top: 1px solid #000;
  text-decoration: none;
  color: inherit;
}


.partenaire--link {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partenaire--link:hover {
  /* transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

.partenaire--link:hover .partenaire__texte h3 {
  color: var(--vert-med);
  /* adapte à ta charte graphique */
}

.partenaire:last-child {
  border-bottom: 1px solid #000;
}

.partenaire__texte {
  flex: 1;
}

.partenaire__texte h3 {
  font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 0;
}

.partenaire__texte p {
  margin: 0;
  line-height: 1.5;
  color: #333;
}

.partenaire__photo {
  flex: 0 0 160px;
  width: 160px;
  height: 100px;
  /* ajuste selon tes logos */
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive : image en haut, texte en dessous */
@media (max-width: 768px) {
  .partenaire {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .partenaire__photo {
    order: -1;
    width: 140px;
    flex: 0 0 auto;
    align-self: center;
  }
}

/* ── ACTUALITÉS ──────────────────────────────────────────────── */

/* =========================================================
   actualites.css — Page actualités letsgotravel.fr
   Fidèle à la maquette : filtres en bandeau, liste avec
   vignette à gauche, badge catégorie à droite
   ========================================================= */

/* ---- Bandeau filtres ---- */
.filtres-bandeau {}

.fiche_news {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  background-image: url('/img/eye.png');
  background-repeat: no-repeat;
  background-position: 100% 300px;
  background-size: 420px;
  padding-bottom: 60px;
}



.fiche_news>div:first-child,
.fiche_news>div:last-child {
  flex: 0 0 150px;
  /* largeur fixe, ne grandit pas, ne rétrécit pas */
}

.fiche_news>div.resume {
  flex: 1 1 auto;
  /* prend le reste de la place */
  min-width: 0;
  /* évite que le texte fasse déborder le flex item */
}

/* Responsive : empilement */
@media (max-width: 768px) {
  .fiche_news {
    flex-direction: column;
  }

  .fiche_news>div:first-child,
  .fiche_news>div:last-child {
    flex: 1 1 auto;
    /* redevient pleine largeur */
  }
}

.fiche_news ul {
  list-style: inside;
}

.filtres-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #222;
}

.fiche_news img {
  width: 100%;
}


.filtres-icon {
  font-size: 1.1rem;
}

.filtres-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}



/* ---- Boutons catégories ---- */
.btn-categorie {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  color: #fff;
  background: #999;
  /* défaut — toutes catégories */
  line-height: 1.3;
  text-align: center;
}

/* Bouton "Toutes" — gris neutre */
.btn-categorie[data-id="0"] {
  background: #555;
}

/* Catégories colorées via CSS variable injectée inline */
.btn-categorie:not([data-id="0"]) {
  background: var(--cat-color, #333);
}

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

.btn-categorie.active {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* ---- Liste des news ---- */
#news-liste {
  margin-top: 1rem;
}

.ligne-news {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
}


/* Vignette */
.news-vignette {
  flex: 0 0 230px;
  width: 230px;
  height: 170px;
  overflow: hidden;
  border-radius: 3px;
  background: #dde3e8;
}

.news-vignette a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-vignette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-vignette img:hover {
  transform: scale(1.04);
}

.news-vignette--vide {
  background: #dde3e8;
}

/* Contenu central */
.news-contenu {
  flex: 1;
  min-width: 0;
}

.news-contenu h2 {
  margin: 0 0 0.6rem;
  padding-bottom: 0;
  padding-top: 0;
}

.news-contenu h2 a {
  color: #111;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.news-contenu h2 a:hover {
  text-decoration: underline;
}

.news-resume {
  margin: 0 0 0.5rem;
  font-size: 0.93rem;
  color: #444;
}

.news-meta {
  margin: 0;
  font-size: 0.82rem;
  color: #888;
}

/* Colonne thématique (droite) */
.news-thematique {
  flex: 0 0 140px;
  text-align: center;
  padding-top: 0.2rem;
}

.label-thematiques {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.badge-categorie {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  word-break: break-word;
}

/* Séparateur */
hr.separateur {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0;
}

hr.separateur:last-child {
  display: none;
}

/* ---- États spéciaux ---- */
.loading-state,
.aucun-resultat,
.erreur {
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  font-size: 0.95rem;
}

.erreur {
  color: #c0392b;
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 2.5rem 0 1rem;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.8rem;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.page-btn:hover {
  background: #f4f4f4;
  border-color: #bbb;
}

.page-btn.active {
  background: #222;
  color: #fff;
  border-color: #222;
  cursor: default;
}

.page-prev,
.page-next {
  padding: 0 1.1rem;
  font-size: 0.85rem;
}

.page-ellipsis {
  color: #aaa;
  font-size: 1rem;
  line-height: 38px;
  padding: 0 0.2rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .ligne-news {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .news-vignette {
    flex: 0 0 100%;
    width: 100%;
    height: 180px;
  }

  .news-thematique {
    flex: 0 0 100%;
    text-align: left;
  }

  .filtres-categories {
    gap: 0.5rem;
  }

  .btn-categorie {
    font-size: 0.75rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 480px) {


  .pagination {
    gap: 0.25rem;
  }

  .page-btn {
    min-width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* .news-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-carte {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gris-clair);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.news-carte:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombre);
}

.news-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  display: block;
}

.news-body {
  padding: 18px 20px 20px;
}

.news-date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gris-med);
  margin-bottom: 8px;
}

.news-titre {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.25;
}

.news-resume {
  font-size: 13px;
  color: var(--gris-med);
  line-height: 1.65;
} */

/* ── ASIDE ───────────────────────────────────────────────────── */
aside.aside-page,
aside.aside-equipe {
  font-size: 13px;
}

aside .aside-bloc {
  background: var(--gris-clair);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

aside .aside-titre {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--noir-doux);
}

/* ── PLAN DU SITE ────────────────────────────────────────────── */
#plan-du-site ul {
  list-style: disc;
  padding-left: 20px;
}

#plan-du-site li {
  margin-bottom: 6px;
}

#plan-du-site a {
  color: var(--vert-med);
}

/* ── POPUP ───────────────────────────────────────────────────── */
.site-popup {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 500;
  background: var(--blanc);
  border: 1px solid var(--gris-bord);
  border-radius: var(--radius);
  box-shadow: var(--ombre-forte);
  padding: 24px 28px 24px;
  max-width: 340px;
}

.site-popup h2 {
  font-size: 1.2rem;
  margin-bottom: 0px;
  padding: 10px 0;
}

.site-popup p {
  font-size: 13px;
  color: var(--gris-med);
  line-height: 1.65;
}

.site-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--gris-med);
  cursor: pointer;
}

.site-popup-close:hover {
  color: var(--noir-doux);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#site-footer {
  background: var(--noir-doux);
  color: rgba(255, 255, 255, .6);
  /* font-size: 13px; */
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

@media (min-width: 1024px) {
  .footer-col-titre.footer-col-titre-2lines {
    margin-bottom: 0px !important;
    padding-bottom: 12px !important;
  }
}


.footer-col h3.footer-col-titre,
.footer-col-titre {
  font-family: var(--font-corps);
  font-weight: 600;
  /* letter-spacing: .12em; */
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 14px;
  font-size: 1em;
}

.footer-col h3.footer-col-titre,
.footer-col-titre .footer-col ul li {
  margin-bottom: 0px;
}

.footer-col a {
  color: rgba(255, 255, 255, .52);
  text-decoration: none;
  transition: color var(--trans);
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-col--brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-txt {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .9);
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, .42);
  margin-bottom: 12px;
}

.footer-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-nl-form input {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  padding: 9px 14px;
  color: #fff;
  font-size: 12px;
  outline: none;
  transition: border-color var(--trans);
}

.footer-nl-form input::placeholder {
  color: rgba(255, 255, 255, .28);
}

.footer-nl-form input:focus {
  border-color: var(--or);
}

.footer-nl-form button {
  background: var(--or);
  color: var(--vert);
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background var(--trans);
}

.footer-nl-form button:hover {
  background: var(--or-clair);
}

.footer-nl-tags {
  border: none;
}

.footer-nl-tags label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 5px;
  cursor: pointer;
}

.footer-nl-tags input[type="checkbox"] {
  accent-color: var(--or);
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.footer-contact-list li {
  margin-bottom: 8px;
}

.footer-contact-list a {
  color: var(--or-clair);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  transition: background var(--trans), color var(--trans);
  border: 1px solid rgba(255, 255, 255, 1);
}

.social-btn:hover {
  background: var(--or);
  color: var(--vert);
  border-color: var(--or);
}

.footer-bas {
  background: #fff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  /* max-width: var(--max-w); */
  margin: 0 auto;
  padding: 20px 40px;
  font-size: 12px;
}

.footer-bas img {
  max-width: 90px;
}


.footer-bas a {
  color: #000;
  text-decoration: none;
}

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

/* ── MEDIA EMBED (video) ─────────────────────────────────────── */
.media_embed {
  position: relative;
  width: 100%;
}

.media_embed img {
  display: block;
  width: 100%;
  height: auto;
}

.media_embed iframe {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── MEMBERS ONLY / CMS ──────────────────────────────────────── */
body#editor {
  margin: 6px;
  background: #fff;
  font-family: var(--font-corps);
}

body#editor .slide_div {
  background: #FFC;
}

body#content .members_only {
  background-image: none;
  padding: 0;
}

body#content .public_only {
  display: none;
}

/* ── SHARE ───────────────────────────────────────────────────── */
#share-zone {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

#share-zone a {
  font-size: 12px;
  color: var(--gris-med);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--gris-bord);
  border-radius: 20px;
  transition: all var(--trans);
}

#share-zone a:hover {
  border-color: var(--vert);
  color: var(--vert);
}

/* ── SLIDER (page accueil CMS) ───────────────────────────────── */
/* Remplace supersized/flexslider par CSS simple */
.home-slider {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.home-slider-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.home-slider-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 5, .45);
}


.newsletter_HP h2 {
  padding-top: 0;
}

/* ── GALERIE HP ACCOMPAGNATEURS ──────────────────────────────── */
/* .accompagnateur_HP {
  padding: 60px 0;
} */

.accompagnateur_HP h2 {
  color: #1a4a3a;
  padding-top: 0;
  text-align: center;
  /* font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 2rem 1rem; */
}

.accomp-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accomp-track-container {
  flex: 1;
  overflow: hidden;
}

.accomp-track {
  display: flex;
  align-items: center;
  min-height: 300px;
  transition: transform 0.5s ease;
  opacity: 0;
}

.accomp-track.is-ready {
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.accomp-slide {
  flex: 0 0 20%;
  /* 5 visibles desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 5px;
  transition: all 0.5s ease;
}

.accomp-slide a {
  text-decoration: none;
}

.accomp-circle {
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #c4d46b;
  transition: width 0.5s ease, height 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
  flex-shrink: 0;
}

.accomp-name {
  margin-top: 0.75rem;
  color: #333;
  text-align: center;
  min-height: 1.4em;
  font-weight: bold;
  transition: opacity 0.4s ease;

}


/* Flèches */
.accomp-arrow {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--vert);
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.accomp-arrow:hover {
  opacity: 0.6;
}

/* Bouton */
.accomp-btn-wrap {
  text-align: center;
  margin-top: 2rem;
}

.accomp-btn {
  display: inline-block;
  background: var(--vert);
  border: 1px solid var(--vert);
  color: #fff;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
}

.accomp-btn:hover {

  color: var(--vert);
  background: #fff;
}

/* Tablette : 3 visibles */
@media (max-width: 1024px) {
  .accomp-slide {
    flex: 0 0 33.333%;
  }
}

/* Smartphone : 1 visible */
@media (max-width: 600px) {
  .accomp-slide {
    flex: 0 0 100%;
  }
}

/* ── BLOC DERNIÈRES PLACES ───────────────────────────────────── */
.home_blocs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.dernieres_places_block {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 50px;
  overflow: hidden;
  background: var(--gris-clair);
  transition: transform .25s, box-shadow .25s;
}

.dernieres_places_block:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombre);
}

.dernieres_places_block h3 {
  font-family: var(--font-titre);
  font-size: 1rem;
  padding: 12px 14px 8px;
  color: var(--noir-doux);
}

.dernieres_places_img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dernieres_places_label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--or);
  color: var(--vert);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
}

.dernieres_places_txt {
  padding: 12px 14px 16px;
  font-size: 13px;
  color: var(--gris-med);
  line-height: 1.6;
}

.dernieres_places_btn {
  display: inline-block;
  background: var(--vert);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 20px;
  transition: background var(--trans);
}

.dernieres_places_btn:hover {
  background: var(--vert-med);
}

/* ── BLOC COLONNES HP ────────────────────────────────────────── */
.contenu_bloc_HP {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px;
}


.contenu_bloc_HP>div {
  background-color: #e8e8e8;
  border-radius: 30px;
  padding: 20px;
}


.contenu_bloc_HP .home_bloc_img {
  height: 70px;
  margin: auto;
  margin-bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.contenu_bloc_HP div a {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 1.25em;
  font-size: .9em;
}


.home_bloc_img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.contenu_bloc_HP h2 {
  grid-column: 1 / -1;
  padding-top: 0;
  text-align: center;
  color: var(--vert);

}

.contenu_bloc_HP h3 {
  font-family: var(--font-corps);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 0;
}

/* ── INTRO / SLOGAN HP ───────────────────────────────────────── */
.home_slogan_1 {
  font-family: var(--font-titre);
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
  margin: 40px 0 16px;
}

.home_slogan_2 {
  font-size: 15px;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes lgFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes lgBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.equipe_portrait {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
  margin-bottom: 10px;
  border-radius: 50%;
  float: left;
  display: block;


  /* ✅ Ces deux lignes font tout le travail : */
  shape-outside: circle(50%);
  shape-margin: 15px;
  /* espace entre le texte et le bord du cercle */
}

@media (max-width: 650px) {
  .equipe_portrait {
    width: 300px;
    height: 300px;
    max-width: 100%;
    margin: 0 auto 20px;
    float: none;
    display: block;
    text-align: center;

  }
}


.voyages_accompagnateur {
  margin-top: 30px;
  clear: both;
}

.voyages_accompagnateur a {
  color: #004234;
  transition: margin-left 0.3s ease;
}

.voyages_accompagnateur a:hover {
  margin-left: 5px;
}

/* ── PAGE À PROPOS ───────────────────────────────────── */
.page_a_propos .contenu_bloc_HP {
  padding: 0;
}

.page_a_propos article h2 {
  margin-top: var(--marge);
}

.page_a_propos article {
  margin-top: var(--marge);
}

/* ── VOYAGES ───────────────────────────────────── */


.cta_inscription {
  position: fixed;
  bottom: 10px;
  z-index: 99;
  right: 0;
  bottom: 20px;

}


.parcours-etapes h2 {
  padding-top: 0;
  text-align: center;
}

/* ================================================================
   AJOUT style-v2.css — extensions dp-* pour p-voyages.php
   À coller à la fin de style-v2.css, après les règles dp-* existantes
   ================================================================ */

/* ── HERO BANNIÈRE VOYAGES ───────────────────────────────────── */
.pv-hero {
  position: relative;
  height: 430px;

  display: flex;
  align-items: center;
  /* align-items: flex-end; */
  justify-content: center;
  overflow: hidden;
  /* padding-bottom: 48px; */
}

.pv-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-color: #c6c6c6;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.pv-hero__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(5, 15, 5, .18) 0%, rgba(5, 15, 5, .55) 100%); */
}

.pv-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: var(--max-w);
}

.pv-hero__tag {
  display: inline-block;
  background: #fff;
  color: var(--vert);
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 6px 14px 3px;
  border-radius: 6px;
  transform: rotate(-3deg);
  margin-bottom: 14px;
}

.pv-hero__titre {
  display: block;
  font-family: var(--font-titre);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 1.0;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .65);
  padding: 0;
  max-width: var(--max-w-titre);
  margin: auto;
}

.pv-hero__s_titre {
  padding-top: 10px;
  font-size: 23px;
  font-style: italic;
  width: 800px;
  max-width: 100%;
  font-family: var(--font-titre);
  font-weight: 500;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .65);
  /* margin: auto auto 35px auto; */
  margin-left: auto;
  margin-right: auto;
}

/* ── INTRO GRID : FILTRES + TEXTE ────────────────────────────── */
.pv-intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 140px;
  align-items: start;
  margin-bottom: 10px;
  padding-top: 8px;
  background-image: url('../img/vagues.svg');
  background-position: 210px;
  background-repeat: no-repeat;
  background-size: 250px;

}

h1.team span {
  font-weight: 300;
  display: block;
  font-size: .8em;
  font-family: var(--font-corps);
}

.pv-filtres {
  position: sticky;
  top: 80px;
}

.pv-filtres .form_search_voyage {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
}

.pv-filtres .form_search_voyage>div {
  width: 100% !important;
  margin-bottom: 8px;
  padding-bottom: 3px;
}

.pv-filtres .select-css {
  /* border-radius: 0 !important; */
  width: 100% !important;
  /* border-bottom: none !important; */
}

.pv-filtres .select-css {
  border-radius: var(--radius-sm) !important;
  background: rgba(255, 255, 255, .5);
}



.pv-filtres .reinitialiser_voyage {
  width: 100%;
  margin-top: 10px;
  text-align: left;
}

.pv-filtres .avec_voyages_complets {
  margin-top: 12px;
  display: flex;
  gap: 6px;
}

.pv-intro-texte {
  background: rgba(245, 245, 245, .5);
  border-radius: 30px;
  padding: 25px;
  border: 1px solid #000;
  max-height: 450px;
  overflow-y: scroll;

}

.pv-intro-texte h1 {
  font-size: 30px;
}

.pv-intro-texte h2 {
  font-size: 23px;
}

.pv-intro-texte h2,
.pv-intro-texte h1,
.pv-intro-texte h3 {
  padding: 0px 0 12px 0;
}

.pv-intro-texte p {
  margin-bottom: 14px;
  /* padding-left: 22px; */
  position: relative;

}

.pv-intro-texte p::before {
  /* content: '→';
  position: absolute;
  left: 0;
  color: var(--vert-med);
  font-weight: 600; */
}

.pv-intro-texte strong {
  color: var(--noir-doux);
  font-weight: 600;
}

.pv-intro-cta {
  margin-top: 10px;
  margin-bottom: 25px;
  display: inline-block;

}

.pv-intro-cta_container {
  display: flex;
  justify-content: flex-end;
}

/* ── GRILLE 4 COLONNES (page liste voyages) ──────────────────── */
/* dp-grid dans index.php est 3 colonnes — on ajoute la variante 4 */
.dp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── TITRE SÉPARATEUR ANNUEL ─────────────────────────────────── */
.dp-annee-titre {
  grid-column: 1 / -1;
  font-family: var(--font-titre);
  font-weight: 300;
  color: var(--gris-med);
  padding: 20px 0 8px;
  border-top: 1px solid var(--gris-bord);
  margin-top: 12px;
}

/* ── BADGES SUPPLÉMENTAIRES (complet, stage, thème) ─────────── */
.dp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 20px;
  font-weight: 600;
  padding: 4px 10px;
  z-index: 3;
  letter-spacing: .04em;
}

.dp-badge--complet {
  background: rgba(192, 57, 43, .85);
  color: #fff;
}

.dp-badge--stage {
  background: var(--or);
  color: var(--vert);
}

.dp-badge--theme {
  position: relative;
  background: #85acc0;
  padding: 17px 5px 5px 5px;
  display: block;
  color: #fff;
  margin-top: -13px;
  text-transform: uppercase;
  z-index: 0;
  text-align: center;
  font-size: .8em;
  font-weight: 900;

}

/* ── BADGE DERNIÈRES PLACES ──────────────────────────────────── */
.dp-reste {
  position: absolute;
  top: 45px;
  left: 0;
  /* transform: translateY(-50%); */
  background: #fafaf7;
  color: var(--vert);
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 0 12px 12px 0;
  z-index: 3;
  line-height: 1.4;
  font-size: .8em;
}

/* ── MESSAGE AUCUN RÉSULTAT ──────────────────────────────────── */
.dp-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  font-size: 1.2rem;
  color: var(--gris-med);
  font-family: var(--font-titre);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .dp-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .pv-intro-grid {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .pv-hero__titre {
    max-width: 100%;
  }

  .dp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .pv-hero__content {

    max-width: 90%;
  }

  .pv-hero {
    height: 50vw;
    min-height: 200px;
    padding-top: 50px;
    height: auto;
  }

  .pv-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pv-filtres {
    position: static;
  }

  .pv-filtres .form_search_voyage {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .pv-filtres .form_search_voyage>div {
    flex: 1 1 160px !important;
    width: auto !important;
  }

  .pv-filtres .select-css {
    border-radius: var(--radius-sm) !important;
    border-bottom: 1px solid var(--gris-bord) !important;
  }

  .dp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .dp-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ── RESPONSIVE — tablette ───────────────────────────────────── */
@media (max-width: 1024px) {


  .voyages-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  ul.voyage_box {
    grid-template-columns: repeat(3, 1fr);
  }


  .equipe-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_blocs {
    grid-template-columns: repeat(2, 1fr);
  }

  .contenu_bloc_HP {
    grid-template-columns: repeat(2, 1fr);
  }

  .galerie-grille {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── RESPONSIVE — mobile ─────────────────────────────────────── */
@media (max-width: 1025px) {

  .section,
  #section-newsletter {
    padding: 56px 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .voyages-grille {
    grid-template-columns: 1fr;
  }

  .vision-grille {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px 32px;
    gap: 28px;
  }

  .footer-col--brand {
    grid-column: 1/-1;
  }

  .footer-bas {
    padding: 20px 20px;
  }

  ul.voyage_box {
    grid-template-columns: 2fr;
  }

  .equipe-grille {
    grid-template-columns: 1fr;
  }

  .news-grille {
    grid-template-columns: 1fr;
  }

  .home_blocs {
    grid-template-columns: 1fr;
  }

  .contenu_bloc_HP {
    grid-template-columns: 1fr;
  }

  .galerie-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .content_container {
    padding: 24px 20px 60px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .accomp-carrousel-wrap {
    overflow-x: auto;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 16px;
  }

  .hero-search-sep {
    width: 100%;
    height: 1px;
  }

  .form_search_interne,
  .form_search_HP {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  ul.voyage_box {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   Cookie consent — Let's Go Travel
   Front-end uniquement. Aucune dépendance. Vanilla CSS.
   Les tokens --cc-* peuvent être remappés sur vos variables de style-v2.css.
   ===================================================================== */

.cc-root {
  --cc-green: #155c3a;
  --cc-green-dark: #0f4029;
  --cc-gold: #c39b3f;
  --cc-ink: #1c1c1c;
  --cc-muted: #4a4a4a;
  --cc-border: #d8d8d8;
  --cc-bg: #ffffff;
  --cc-overlay: rgba(15, 30, 22, 0.45);
  --cc-radius: 14px;
  --cc-radius-pill: 999px;
  --cc-font-display: "Cormorant Garamond", Georgia, serif;
  --cc-font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Overlay */
.cc-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--cc-overlay);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  animation: cc-fade 0.25s ease both;
}

.cc-overlay[hidden] {
  display: none;
}

@keyframes cc-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cc-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Modal */
.cc-modal {
  position: relative;
  width: 100%;
  max-width: 660px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--cc-bg);
  border-radius: var(--cc-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  padding: 30px 30px 24px;
  font-family: var(--cc-font-body);
  color: var(--cc-ink);
  animation: cc-rise 0.3s ease both;
}

/* Close button */
.cc-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: var(--cc-ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}

.cc-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Title */
.cc-title {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: clamp(27px, 30px, 33px);
  color: var(--cc-green);
  margin: 0 44px 22px 0;
  padding: 0;
  line-height: 1.1em;

}

/* Actions */
.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  margin-top: 10px;
}

.cc-btn {
  flex: 0 0 auto;
  font-family: var(--cc-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--cc-radius-pill);
  border: 1.5px solid var(--cc-border);
  background: var(--cc-bg);
  color: var(--cc-ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cc-btn:hover {
  border-color: var(--cc-green);
}

.cc-btn--primary {
  font-weight: 700;
  border-color: var(--cc-green);
  background: var(--cc-green);
  color: #fff;
}

.cc-btn--primary:hover {
  background: var(--cc-green-dark);
  border-color: var(--cc-green-dark);
}

/* Divider */
.cc-rule {
  border: 0;
  border-top: 1px solid var(--cc-border);
  margin: 22px 0;
}

/* Intro */
.cc-h3 {
  font-family: var(--cc-font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  color: var(--cc-ink);
}

.cc-intro p {
  margin: 0;
  line-height: 1.55;
  color: var(--cc-muted);
}

/* Categories */
.cc-cats {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cc-cat {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}

.cc-cat input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 2px 0 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid #9aa39d;
  border-radius: 5px;
  background: #fff;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cc-cat input[type="checkbox"]::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--cc-green);
  border-bottom: 2px solid var(--cc-green);
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.12s ease;
}

.cc-cat input[type="checkbox"]:checked {
  border-color: var(--cc-green);
}

.cc-cat input[type="checkbox"]:checked::after {
  opacity: 1;
}

.cc-cat input[type="checkbox"]:disabled {
  cursor: default;
  opacity: 0.65;
}

.cc-cat-text {
  display: block;
}

.cc-cat-title {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 4px;
  color: var(--cc-ink);
}

.cc-cat-desc {
  display: block;
  line-height: 1.55;
  color: var(--cc-muted);
}

/* Footer link */
.cc-footer {
  text-align: right;
  margin: 26px 0 0;
  font-size: 0.85rem;
  color: var(--cc-muted);
}

.cc-footer a {
  color: var(--cc-green);
  font-style: italic;
}

/* Focus visibility (accessibilité) — accent or */
.cc-root :focus-visible {
  outline: 2px solid var(--cc-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 480px) {
  .cc-modal {
    padding: 24px 20px 20px;
  }

  .cc-actions .cc-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .cc-overlay,
  .cc-modal {
    animation: none;
  }

  .cc-btn,
  .cc-close,
  .cc-cat input {
    transition: none;
  }
}

/**
 * Styles pour le composant de partage réseaux sociaux - Version 2
 * Inclut la variante "pastilles" (pills) style bulle noire
 */

.partager {
  position: relative;
  display: inline-block;
}

/**
 * Le bouton parent (optionnel, peut être caché)
 */
.partager>button:not(.partager-pill),
.partager>a:not(.partager-pill) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.partager>button i,
.partager>a i {
  font-size: 1.1rem;
}

.partager>button:hover:not(.partager-pill),
.partager>a:hover:not(.partager-pill) {
  background-color: var(--color-primary-dark, #0a2f28);
  transform: translateY(-2px);
}

.partager>button:active:not(.partager-pill),
.partager>a:active:not(.partager-pill) {
  transform: translateY(0);
}

/**
 * ============================================
 * VARIANTE : PASTILLES NOIRES (pills)
 * ============================================
 */

.partager-pills {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  align-items: center;
}

.partager-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #1a1a1a;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.75rem;
  position: relative;
  overflow: hidden;
}

.partager-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partager-pill:hover {
  background-color: #0a0a0a;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.partager-pill:active {
  transform: translateY(-2px);
}

.partager-pill:hover::before {
  opacity: 1;
}

.partager-pill .partager-icon {
  font-size: 1.5rem;
  z-index: 2;
  color: #fff;
  transition: transform 0.3s ease;
}

.partager-pill:hover .partager-icon {
  transform: scale(1.1);
}

.partager-pill .partager-label {
  display: none;
}

/**
 * ============================================
 * MENU DÉROULANT (par défaut)
 * ============================================
 */

.partager-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 200px;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.partager-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/**
 * Chaque bouton de réseau dans le menu
 */
.partager-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  color: #333;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: left;
  font-family: inherit;
}

.partager-btn:hover {
  background-color: #f5f5f5;
  color: var(--color-primary, #0D4235);
}

.partager-btn:active {
  background-color: #efefef;
}

.partager-btn[data-network="email"]:hover {
  background-color: #fff3cd;
}

.partager-btn[data-network="whatsapp"]:hover {
  background-color: #d4edda;
}

/**
 * Icône du réseau (FontAwesome)
 */
.partager-icon {
  font-size: 1rem;
  min-width: 1.5rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/**
 * Label du réseau
 */
.partager-label {
  flex: 1;
  text-align: left;
}

/**
 * ============================================
 * MENU HORIZONTAL (sans déroulant)
 * ============================================
 */

.partager-menu.horizontal-layout {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  min-width: auto;
  flex-wrap: wrap;
}

.partager.horizontal .partager-btn {
  width: auto;
  padding: 0.5rem;
  border-radius: 4px;
  background-color: #f0f0f0;
}

.partager.horizontal .partager-btn:hover {
  background-color: var(--color-primary, #0D4235);
  color: white;
}

/**
 * ============================================
 * RESPONSIVE
 * ============================================
 */

@media (max-width: 768px) {
  .partager-pill {
    width: 54px;
    height: 54px;
  }

  .partager-pill .partager-icon {
    font-size: 1.25rem;

  }

  .partager-pills {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .partager-menu:not(.horizontal-layout) {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    border-radius: 12px 12px 0 0;
    padding: 1rem 0;
    transform: translateY(100%);
  }

  .partager-menu.active {
    transform: translateY(0);
  }

  .partager-btn {
    padding: 1rem;
    font-size: 1rem;
  }

  .partager-icon {
    font-size: 1rem;
  }

  .partager-pill {
    width: 42px;
    height: 42px;
    color: #fff;
  }

  .partager-pill .partager-icon {
    font-size: 1.1rem;
  }

  .partager-pills {
    gap: 0.5rem;
  }
}

/**
 * ============================================
 * VARIANTE : BOUTON MINIMAL
 * ============================================
 */

.partager.minimal>button:not(.partager-pill),
.partager.minimal>a:not(.partager-pill) {
  padding: 0.5rem;
  border-radius: 50%;
  width: 34;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partager.minimal .partager-label {
  display: none;
}

/**
 * ============================================
 * ÉTATS & ACCESSIBILITÉ
 * ============================================
 */

.partager-btn:focus,
.partager-pill:focus {
  outline: 2px solid var(--color-primary, #0D4235);
  outline-offset: 2px;
}

/* Pas de focus visible si on navigue à la souris */
.partager-btn:focus:not(:focus-visible),
.partager-pill:focus:not(:focus-visible) {
  outline: none;
}

/* Support du Dark Mode (optionnel) */
@media (prefers-color-scheme: dark) {
  .partager-menu {
    background-color: #2a2a2a;
    border-color: #444;
    color: #fff;
  }

  .partager-btn {
    color: #fff;
  }

  .partager-btn:hover {
    background-color: #3a3a3a;
  }
}