/* ===== Topbar (discrète) ===== */
.topbar{
  background: #fff;
}

.topbar-link{
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: rgba(0,0,0,.7);
  transition: color .15s ease;
}

.topbar-link:hover{
  color: #2f8f55;
  text-decoration: underline;
}

.topbar-sep{
  color: rgba(0,0,0,.25);
}

/* Mobile topbar */
@media (max-width: 575.98px){
  .topbar .container{
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    text-align: center;
  }
  .topbar-sep{ display: none; }
}

/* ===== Navbar links ===== */
.main-navbar .nav-link{
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #2f8f55;
  font-size: 1.2em;
  padding: .5rem .75rem;
}

/* Underline animé (hover/focus) */
.nav-underline{
  position: relative;
}

.nav-underline::after{
  content: "";
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .35rem;
  height: 2px;
  background: #2f8f55;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  opacity: .95;
}

.nav-underline:hover,
.nav-underline:focus{
  color: #2f8f55;
}

.nav-underline:hover::after,
.nav-underline:focus::after{
  transform: scaleX(1);
}

/* Etat actif (si tu ajoutes la classe active côté Twig) */
.main-navbar .nav-link.active{
  color: #2f8f55;
}
.main-navbar .nav-link.active::after{
  transform: scaleX(1);
}

/* Focus visible (accessibilité) */
.main-navbar .nav-link:focus-visible{
  outline: 2px solid #2f8f55;
  outline-offset: 3px;
  border-radius: .5rem;
}

/* ===== Bouton Destinations (secondary) ===== */
.btn-destinations{
  border: 1px solid rgba(47,143,85,.35);
  color: #2f8f55;
  background: rgba(47,143,85,.06);
  font-weight: 900;
  border-radius: 999px;
  padding: .55rem 1.05rem;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn-destinations:hover{
  background: rgba(47,143,85,.12);
  border-color: rgba(47,143,85,.6);
  color: #2f8f55;
  transform: translateY(-1px);
}

.btn-destinations:focus-visible{
  outline: 2px solid var(#2f8f55);
  outline-offset: 3px;
}

/* ===== Bouton Sky Club (primary) ===== */
.btn-skyclub{
  background: #34b8fd;
  border: 1px solid #34b8fd;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: .55rem 1.05rem;
  transition: transform .15s ease, filter .15s ease;
}

.btn-skyclub:hover{
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(.95);
    background: #0498e5;
}

.btn-skyclub:focus-visible{
  outline: 2px solid #34b8fd;
  outline-offset: 3px;
}

/* Mobile: boutons full width dans le menu ouvert */
@media (max-width: 991.98px){
  .main-navbar .navbar-nav{
    padding-top: .5rem;
  }
  .btn-destinations,
  .btn-skyclub{
    width: 100%;
    text-align: center;
  }
}

.dest-txt{
  width: 75%;
  text-align: center;
  margin: auto;
}

.destinations-page .hero-banner {
  height: 340px;
  position: relative;
  overflow: hidden;
}
.hero-banner .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner .hero-box {
  width: 70%;
  height: 160px;          /* ✅ cohérent avec hero à 340px */
  background: #ddd;
  position: absolute;
  bottom: -60px;
  left: 15%;
  border-radius: 6px;
  overflow: hidden;       /* ✅ important pour iframe */
  z-index: 2;
}

.hero-banner .iframe-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-banner .iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Page destination – iframe booking */
.booking-destination-frame{
  width: 100%;
  height: 265px;          /* ⬅️ hauteur SAFE */
  overflow: visible;     /* ⬅️ important */
}

.booking-destination-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Bannière destination */
.destination-hero{
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 6rem 0;
}

/* Overlay sombre */
.destination-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Texte au-dessus de l'overlay */
.destination-hero .hero-text{
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}



.section-title {
  color: #2f8f55;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-sub {
  color: #444;
  margin-bottom: 25px;
}
/* =========================
   HERO HOME + BOOKING (ajusté)
   ========================= */

.home-hero{
  position: relative;
  min-height: 320px; /* mobile */
}

/* Hero background */
.home-hero-bg{
  position: absolute;
  inset: 0;
  background: url("../img/home/bg-horizon.jpg") center/cover no-repeat;
  z-index: 1;
}

/* voile léger */
.home-hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.28),
    rgba(0,0,0,.08) 45%,
    rgba(0,0,0,0)
  );
}

/* Iframe wrapper */
.home-booking-wrap{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px; /* ⬅️ descend le module */
  z-index: 2;
}

/* Card iframe */
.home-booking-card{
/*  max-width: 1000px;*/
 /* background: #0b3b72;*/
  border-radius: 14px;
  overflow: hidden;
 /* box-shadow: 0 16px 44px rgba(0,0,0,.22);*/
}

/* Ratio iframe */
.home-booking-ratio{
  --bs-aspect-ratio: 26%;
}

.home-booking-card iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Spacer sous hero */
.home-after-hero-spacer{
  height: 96px;
}

/* HOME - HERO */
.home-hero{
  position: relative;
  min-height: 600px;  /* comme tu voulais */
}

/* Image de fond */
.home-hero-bg{
  position: absolute;
  inset: 0;
  background: url("../img/home/header.jpeg") center/cover no-repeat;
}

/* IMPORTANT : ne pas clipper le module */
.home-hero,
.home-hero .container,
.home-booking-wrap,
.home-booking-card,
.home-booking-frame{
  overflow: visible !important;
}

/* Wrap du module : overlap */
.home-booking-wrap{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;      /* fait "à cheval" sur la section suivante */
  z-index: 30;
}

/* Card (si tu veux un style “posé”) */
.home-booking-card{
  max-width: 1140px;  /* large et propre */
  border-radius: 14px;
}

/* Iframe : hauteur stable (clé) */
.home-booking-frame{
  width: 100%;
  height: 520px;      /* desktop: suffisant + dropdown */
  border-radius: 14px;
  background: transparent;
}

.home-booking-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 14px;
}

/* Réserve sous le hero pour éviter que la section suivante remonte sous le module */
.home-hero + *{
  padding-top: 95px;  /* compense le bottom:-75px */
}

trix-editor.trix-editor-custom{
  min-height: 230px !important;   /* ← augmente ici */
}
/* Fix puces Trix dans l'éditeur */
trix-editor ul{
  list-style: disc !important;
  padding-left: 1.25rem !important;
  margin: .5rem 0 !important;
}

trix-editor ol{
  list-style: decimal !important;
  padding-left: 1.25rem !important;
  margin: .5rem 0 !important;
}

trix-editor li{
  margin: .15rem 0;
}

/* Fix puces dans le contenu rendu */
.trix-content ul{
  list-style: disc !important;
  padding-left: 1.25rem !important;
  margin: .5rem 0 !important;
}

.trix-content ol{
  list-style: decimal !important;
  padding-left: 1.25rem !important;
  margin: .5rem 0 !important;
}

.trix-content li{
  margin: .15rem 0;
  display: list-item !important;
}

.hero-header {
  background-image: url('../img/header.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 40vh; /* Ajuste la hauteur à ton besoin */
  position: relative;
}

.hero-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.header-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  color: white;
  text-align: center;
}


/* =========================
   Destinations cards
   ========================= */
.destination-card{
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.destination-img{
  height: 190px;
  object-fit: cover;
}

.destination-card .card-body{
  padding: 1.1rem 1.1rem 1.2rem;
}

.dest-name{
  font-size: 1.05rem;
  font-weight: 800;
  color: #2f8f55;
  letter-spacing: .4px;
}

.dest-text{
  font-size: .9rem;
  color: rgba(0,0,0,.62);
  line-height: 1.4;
  margin-bottom: .75rem;
}

.btn-link{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  font-size: .85rem;
  color: #63843a;
  text-decoration: none;
}

.btn-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-link:focus-visible{
  outline: 2px solid #63843a;
  outline-offset: 3px;
  border-radius: .375rem;
}

/* fin destination card */

/* Bande iframe sur page destination */
.booking-band-destination{
  position: relative;
  z-index: 30;                 /* au-dessus du contenu */
  margin-top: -10px;          /* à ajuster : fait "à cheval" sur la bannière */
  margin-bottom: 0;         /* réserve sous l’iframe = dropdown plus confortable */
}

/* IMPORTANT : ne pas clipper */
.booking-band-destination,
.booking-band-destination .container,
.booking-destination-frame{
  overflow: visible !important;
}

.dest-cont{
  margin-top : -250px;
}

/* Hauteur stable (la tienne 265px est trop faible) */
.booking-destination-frame{
  width: 100%;
  height: 520px;               /* desktop safe */
  border-radius: 14px;         /* optionnel */
}

/* iframe full */
.booking-destination-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 14px;         /* optionnel */
}

/* =========================
   Destination cards – image hover effect
   ========================= */

/* sécurité si jamais */
.destination-card{
  overflow: hidden;
}

/* image */
.destination-img{
  transition: transform .45s ease;
  will-change: transform;
}

/* hover souris */
.destination-card:hover .destination-img{
  transform: scale(1.06);
}

/* accessibilité clavier */
.destination-card:focus-within .destination-img{
  transform: scale(1.06);
}

/* option : micro-contraste pour renforcer l’effet */
.destination-card:hover .destination-img,
.destination-card:focus-within .destination-img{
  filter: saturate(1.05);
}


.btn-link {
  color: #2f8f55;
  font-weight: 600;
  text-decoration: none;
}
.btn-link:hover {
  text-decoration: underline;
}

.why-block .section-text {
  color: #555;
}

.newsletter-block {
  background: #f4f8ec;
}
.newsletter-form input {
  flex: 1;
}
.btn-news {
  background-color: #2f8f55;
  color: white;
  padding: 0 20px;
}
.btn-news:hover {
  opacity: .9;
}

/* =========================
   GEF - Liste de liens style Corsair
   ========================= */
.gef-destinations-section{
    background-color: #f7f6ee;
    width: 100%;
}
.gef-link-item{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  padding: .95rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.04);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.gef-link-text{
  font-weight: 700;
  letter-spacing: .35px;
  color: #111; /* style proche Corsair */
}

.gef-link-arrow{
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(0,0,0,.30);
  transition: transform .16s ease, color .16s ease;
}

/* Hover / focus */
.gef-link-item:hover{
  border-color: rgba(99,132,58,.45);
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
  transform: translateY(-1px);
}

.gef-link-item:hover .gef-link-arrow{
  color: #63843a;
  transform: translateX(2px);
}

.gef-link-item:focus-visible{
  outline: 2px solid #63843a;
  outline-offset: 3px;
}

/* ===== Sky Club Page ===== */

.skyclub-hero{
  background: #f7f6ee;
}

.skyclub-kicker{
  color: rgba(0,0,0,.55);
  font-weight: 600;
  letter-spacing: .2px;
}

.skyclub-kicker{
  color: #34b8fd;
}

.skyclub-title{
  color: #34b8fd;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.1;
}

.skyclub-lead{
  color: rgba(0,0,0,.65);
  font-size: 1.05rem;
  max-width: 58ch;
}

.skyclub-hero-img{
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Sections */
.skyclub-section{
  background: #ffffff;
}

.skyclub-section--alt{
  background: #f7f6ee;
}

.skyclub-h2{
  color: #34b8fd;
  font-weight: 800;
  letter-spacing: .2px;
}

/* Panels */
.skyclub-panel{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

/* Checklist */
.skyclub-check{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(99,132,58,.15);
  color: #2f8f55;
  font-weight: 800;
}

/* Rewards */
.skyclub-reward{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.skyclub-miles{
  display: inline-block;
  font-weight: 800;
  color: #2f8f55;
  background: rgba(99,132,58,.12);
  border-radius: 999px;
  padding: .35rem .7rem;
  margin-bottom: .75rem;
}

.skyclub-miles{
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #34b8fd,
    #6fd3ff
  );
}

/* Steps */
.skyclub-step{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.skyclub-step-nb{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #2f8f55;
  color: #f7f6ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Rewards cards : rappel bleu */
.skyclub-reward{
  border-color: rgba(52,184,253,.35);
}

/* Étapes (1 / 2 / 3) */
.skyclub-step-nb{
  background: #34b8fd;
  color: #ffffff;
}

/* Bonus */
.skyclub-bonus{
  background: rgba(99,132,58,.12);
  border: 1px solid rgba(99,132,58,.25);
}

/* CTA */
.skyclub-cta{
  background: #ffffff;
}

.skyclub-cta-inner{
  background: #f7f6ee;
  border: 1px solid rgba(0,0,0,.08);
}

/* Focus visible (accessibilité) */
.skyclub-hero a:focus-visible,
.skyclub-section a:focus-visible,
.skyclub-cta a:focus-visible{
  outline: 2px solid #34b8fd;
  outline-offset: 3px;
  border-radius: 999px;
}


/* Bonus de bienvenue */
.skyclub-bonus{
  background: rgba(52,184,253,.12);
  border: 1px solid rgba(52,184,253,.35);
}

/* CTA succes Sky Club */
.skyclub-cta .btn-success, .skyclub-hero .btn-success, 
.join-sky.btn-success 
{
    background: #34b8fd;
  color: #ffffff;
  border-color: #34b8fd;
}

/* CTA secondaire Sky Club (outline) */
.skyclub-hero .btn-outline-success, 
.skyclub-cta .btn-outline-success, .join-sky.btn-outline-success {
  border-color: #34b8fd;
  color: #34b8fd;
}

.skyclub-hero .btn-outline-success:hover, .skyclub-hero .btn-success,
.skyclub-cta .btn-outline-success:hover, .skyclub-cta .btn-success:hover,
.join-sky.btn-outline-success:hover {
  background: #34b8fd;
  color: #ffffff;
  border-color: #34b8fd;
}

/* Focus accessibilité cohérent Sky Club */
.skyclub-hero a:focus-visible,
.skyclub-section a:focus-visible{
  outline: 2px solid #34b8fd;
  outline-offset: 3px;
}

/* Sky Club - FAQ */
.skyclub-faq{
  background: #f7f6ee;
}

.skyclub-accordion .accordion-item{
  background: transparent;
  border: 0;
  margin-bottom: 10px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.skyclub-accordion .accordion-button{
  background: #ffffff;
  font-weight: 800;
  color: #111;
  padding: 1rem 1.1rem;
}

.skyclub-accordion .accordion-button:not(.collapsed){
  color: #34b8fd;
;
  background: #ffffff;
}

.skyclub-accordion .accordion-body{
  background: #ffffff;
  color: rgba(0,0,0,.75);
  line-height: 1.6;
  padding: 1rem 1.1rem 1.2rem;
}

/* Focus visible */
.skyclub-accordion .accordion-button:focus{
  box-shadow: none;
}

.skyclub-accordion .accordion-button:focus-visible{
  outline: 2px solid #34b8fd;
;
  outline-offset: 3px;
}

/* ===== About pages (Compagnie + Histoire) ===== */

.about-hero{
  background: #f7f6ee;
}

.about-kicker{
  color: rgba(0,0,0,.55);
  font-weight: 600;
  letter-spacing: .2px;
}

.about-title{
  color: #2f8f55;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.1;
}

.about-lead{
  color: rgba(0,0,0,.65);
  font-size: 1.05rem;
  max-width: 62ch;
}

.about-hero-img{
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Sections */
.about-section{
  background: #ffffff;
}

.about-section--alt{
  background: #f7f6ee;
}

.about-h2{
  color: #2f8f55;
  font-weight: 800;
  letter-spacing: .2px;
}

/* Cards */
.about-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

/* Lists */
.about-list{
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.about-list li + li{
  margin-top: .35rem;
}

/* Stats block */
.about-stats{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.about-stat-item{
  border-radius: 14px;
  padding: .75rem .75rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
}

.about-stat-ico{
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.about-stat-value{
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.05;
  color: #111;
}

.about-stat-label{
  color: rgba(0,0,0,.55);
  font-weight: 600;
}

/* Video */
.about-video{
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
}

/* Timeline */
.about-timeline{
  display: grid;
  gap: 1rem;
}

.about-timeline-item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.about-timeline-date{
  font-weight: 800;
  color: #2f8f55;
}

/* CTA */
.about-cta{
  background: #ffffff;
}

.about-cta-inner{
  background: #f7f6ee;
  border: 1px solid rgba(0,0,0,.08);
}

/* Liens destinations dans section flotte */
.destination-link{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  padding: .95rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.destination-link-text{
  font-weight: 700;
  letter-spacing: .3px;
  color: #111;
}

.destination-link-arrow{
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(0,0,0,.35);
  transition: transform .18s ease, color .18s ease;
}

.destination-link:hover{
  border-color: rgba(99,132,58,.45);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

.destination-link:hover .destination-link-arrow{
  color: #63843a;
  transform: translateX(2px);
}

.destination-link:focus-visible{
  outline: 2px solid #63843a;
  outline-offset: 3px;
}

.destination-faq-cta{
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 10px;
}

.faq-cta-row{
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

/* texte */

.faq-cta-text h3{
  color: #1f2d2b;
}

/* bouton */

.btn-faq-clean{
  white-space: nowrap;
  font-weight: 800;
  border-radius: 999px;
  padding: .55rem 1.25rem;

  background: #2f8f55;
  border: 1px solid #2f8f55;
  color: #fff;
}

.btn-faq-clean:hover{
  background: #236e40;
  color: #fff;
  filter: brightness(.95);
}

.btn-faq-clean:focus-visible{
  outline: 2px solid #2f8f55;
  outline-offset: 3px;
}

/* Page hub mentions & CGU */

.legal-hub{
  background: #f7f6ee;
}

.legal-card{
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.legal-card ul li + li{
  margin-top: .6rem;
}

.legal-card a{
  text-decoration: none;
  font-weight: 600;
  color: #2f8f55;
}

.legal-card a:hover{
  text-decoration: underline;
}

/* HERO FAQ */
.page-hero--faq{
  position: relative;
  overflow: hidden;
}
.page-hero--faq .page-hero__bg{
  position:absolute;
  inset:0;
  background: url("../img/home/hero.jpg") center/cover no-repeat;
}
.page-hero--faq .page-hero__bg::before{
  content:"";
  position:absolute;
  top:0; left:0;
  height:100%;
  width:60%;
  background: linear-gradient(90deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.28) 70%, rgba(0,0,0,0) 100%);
}

/* Pills catégories */
.btn-faq-pill{
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(47,143,85,.25);
  background: rgba(47,143,85,.06);
  color: #2f8f55;
  padding: .45rem .85rem;
}
.btn-faq-pill:hover{
  background: rgba(47,143,85,.12);
  color: #2f8f55;
}

/* Accordion */
.faq-accordion .faq-item{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}
.faq-accordion .faq-item + .faq-item{
  margin-top: .75rem;
}
.faq-accordion .accordion-button{
  font-weight: 900;
}
.faq-accordion .accordion-button:not(.collapsed){
  background: rgba(47,143,85,.08);
  color: #2f8f55;
}
.faq-accordion .accordion-button:focus{
  box-shadow: none;
  outline: 2px solid rgba(47,143,85,.35);
  outline-offset: 2px;
}

/* typographie */
.fw-black{ font-weight: 900; }


/* Hero page infos */
.page-hero{
  position: relative;
  overflow: hidden;
}
.page-hero__bg{
  position: absolute;
  inset: 0;
  background: url("../img/dest/bg-camopy.jpg") center/cover no-repeat;
}
.page-hero__bg::before{
  content:"";
  position:absolute;
  top:0; left:0;
  height:100%;
  width:60%;
  background: linear-gradient(90deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.28) 70%, rgba(0,0,0,0) 100%);
}

/* Quick link cards */
.info-link-card{
  display: block;
  text-decoration: none;
  color: inherit;
}
.info-link-card__inner{
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.info-link-card:hover .info-link-card__inner{
  transform: translateY(-2px);
  border-color: rgba(47,143,85,.35);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.info-link-card__title{
  font-weight: 900;
  color: #2f8f55;
}
.info-link-card__text{
  color: rgba(0,0,0,.65);
  font-size: .95rem;
}

/* Encart Sky Club - page Informations */

.skyclub-info-card{
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  background: linear-gradient(
    135deg,
    rgba(52,184,253,.08),
    rgba(47,143,85,.06)
  );
}

.skyclub-badge{
  display: inline-block;
  background: rgba(52,184,253,.15);
  color: #158fd3;
  font-weight: 800;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .75rem;
}

/* Bouton CTA Sky Club */
.btn-skyclub-cta{
  background: #34b8fd;
  border: 1px solid #34b8fd;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: .6rem 1.1rem;
}

.btn-skyclub-cta:hover{
  color: #fff;
  filter: brightness(.95);
}

.btn-skyclub-cta:focus-visible{
  outline: 2px solid #34b8fd;
  outline-offset: 3px;
}

/* Cards */
.info-card{
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.fw-black{ font-weight: 900; }

.info-list{
  padding-left: 1.1rem;
  margin-bottom: 0;
}
.info-list li{ margin: .35rem 0; }

.info-pill{
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  background: rgba(47,143,85,.08);
  color: #2f8f55;
  border: 1px solid rgba(47,143,85,.18);
}

/* Accordion */
.info-accordion-item .accordion-button{
  border-radius: 14px !important;
  font-weight: 900;
}
.info-accordion-item .accordion-button:not(.collapsed){
  background: rgba(47,143,85,.08);
  color: #2f8f55;
}
.info-accordion-item .accordion-body{
  background: #fff;
  border-radius: 14px;
}



/* =========================
   GCU - Mention
   ========================= */

.cg-page{
  background: #f7f6ee;
}

.cg-title{
  color: #63843a;
  font-weight: 800;
  letter-spacing: .2px;
}

/* Carte */
.cg-card{
  background: #ffffff;
}

/* Le <pre> garde le texte intact, mais on le rend lisible */
.cg-pre{
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  font-family: inherit;          /* garde la typo du site */
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0,0,0,.78);
}

/* Footer */

.site-footer{
  background: #2f8f55;
  color: #f7f6ee;
  border-top: 4px solid rgba(247, 246, 238, .45);
}

.site-footer .footer-logo{
  max-width: 270px;
  height: auto;
  display: block;
}

.site-footer .footer-title{
  font-size: 1.2rem;
  font-weight: 600;
  color: #f7f6ee;
  margin-bottom: .5rem;
}

.site-footer .footer-list li + li{
  margin-top: .25rem;
}

.site-footer .footer-link{
  color: rgba(247, 246, 238, .85);
  text-decoration: none;
  font-size: .8rem;
  line-height: 1.35;
}

.site-footer .footer-link:hover{
  color: #f7f6ee;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .footer-link:focus-visible,
.site-footer .footer-social:focus-visible{
  outline: 2px solid #f7f6ee;
  outline-offset: 3px;
  border-radius: .375rem;
}

.site-footer .footer-social-label{
  color: rgba(247, 246, 238, .85);
  font-size: .75rem;
}

.site-footer .footer-social{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f7f6ee;
  background: rgba(247, 246, 238, .12);
  text-decoration: none;
}

.site-footer .footer-social:hover{
  background: rgba(247, 246, 238, .18);
}

.site-footer .footer-sep{
  border-color: rgba(247, 246, 238, .35);
  opacity: 1;
}

.site-footer .footer-micro{
  color: rgba(247, 246, 238, .8);
  font-size: .68rem;
  line-height: 1.35;
}

.site-footer .footer-link--micro{
  font-size: .68rem;
}

/* Social block */
.footer-social-title{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: #ffffff;
}

.footer-social-icons{
  font-size: 1.6rem;
}

.footer-social-link{
  color: #ffffff;
  opacity: .9;
  transition: opacity .15s ease, transform .15s ease;
}

.footer-social-link:hover{
  opacity: 1;
  transform: translateY(-2px);
}

.footer-social-link:focus-visible{
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.footer-baseline{
    color: #fc9800;
    font-style: italic;
    font-weight: 600;
}

/* fin Footer */

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-banner .hero-box {
    width: 90%;
    left: 5%;
  }
  .destination-card img {
    height: 180px;
  }

   .booking-band-destination{
    margin-top: -70px;
  }
  .booking-destination-frame{
    height: 620px;
  }
}
@media (max-width: 576px) {
  .hero-banner { height: 250px; }
  .destination-card img { height: 150px; }
  .btn-news { width: 80px; }

    .about-timeline-item{
    grid-template-columns: 1fr;
  }

  /* Footer */
  .site-footer .footer-brand{
    justify-content: center;
  }
  .site-footer .footer-logo{
    margin-left: auto;
    margin-right: auto;
  }
}
/* mobile : pas d’effet hover inutile */
@media (hover: none){
  .destination-card:hover .destination-img{
    transform: none;
    filter: none;
  }
}
/* =========================
   Responsive breakpoints
   ========================= */

/* Tablette */
@media (min-width: 768px){
  .home-hero{
    min-height: 420px;
  }

  .home-booking-wrap{
    bottom: -72px;
  }

  .home-after-hero-spacer{
    height: 110px;
  }

  .home-booking-ratio{
    --bs-aspect-ratio: 24%;
  }
}

/* Desktop */
@media (min-width: 992px){
  .home-hero{
    min-height: 600px; /* ✅ hauteur demandée */
  }

  .home-booking-wrap{
    bottom: -200px; /* ⬅️ overlap bien posé */
  }

  .home-after-hero-spacer{
    height: 140px;
  }

  .home-booking-ratio{
    --bs-aspect-ratio: 22%;
  }
}

/* Mobile très petit */
@media (max-width: 575.98px){
  .home-booking-wrap{
    bottom: -28px;
  }

  .home-after-hero-spacer{
    height: 52px;
  }

  .home-booking-ratio{
    --bs-aspect-ratio: 44%;
  }
    .cg-pre{
    font-size: .95rem;
    line-height: 1.55;
  }
}
