.navbar-brand span { letter-spacing: .2px; }
.bg-ot-green{ background: #2ea37a; }
.btn-primary{ background: #2ea37a; border-color: #2ea37a; }
.btn-primary:hover{background: #14986a; border-color: #14986a;}

/* Sections utilitaires */
.section-hero { position: relative; min-height: 56vh; display: grid; place-items: center; }
.section-hero .hero-bg { position: absolute; inset: 0; object-fit: cover; filter: brightness(.85); }
.section-hero .hero-overlay { position: relative; z-index: 1; }
.txt-ot-green{color: #2ea37a;}
.breadcrumb-item a {color: #2ea37a;}

/* Header “overlay” au-dessus du hero (liens blancs) */
.site-header { background:#fff; border-bottom:1px solid #e9ecef; }
.site-header.header-overlay{ position:absolute; top:0; left:0; right:0; background:transparent; border-bottom:0; z-index:1030; }
.header-overlay .navbar{ background:transparent !important; }
.header-overlay .nav-link,
.header-overlay .navbar-brand,
.header-overlay .navbar-brand span { color:#fff !important; }
.header-overlay .dropdown-menu{ border:0; }

/* --- Ratio portrait pour cartes --- */
.ratio-4x5 { --bs-aspect-ratio: calc(5 / 4 * 100%); }

/* --- Style cartes façon maquette --- */
.card-dest, .card-offer{
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  overflow:hidden;
}

.card-dest img, .card-offer img{ transition: transform .6s ease; }
.card-dest:hover img, .card-offer:hover img{ transform: scale(1.06); }

/* Overlay gradient couvrant + layout vertical */
.card-dest .card-img-overlay,
.card-offer .card-img-overlay{
  background:linear-gradient(to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.20) 55%,
    rgba(0,0,0,.08) 75%,
    rgba(0,0,0,0) 100%);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Petit libellé “Découvrir” au-dessus du titre (automatique) */
.card-dest .card-img-overlay::before,
.card-offer .card-img-overlay::before{
  content:"Découvrir";
  display:block;
  font-size:.85rem;
  color:#fff;
  opacity:.9;
  text-shadow:0 1px 2px rgba(0,0,0,.35);
  margin-bottom:.5rem;
}

/* Titre massif blanc */
.card-dest h3, .card-offer h3{
  color:#fff;
  font-weight:800;
  font-size:1.7rem;
  letter-spacing:.2px;
  text-shadow:0 2px 6px rgba(0,0,0,.35);
}

/* ===== CTA Parallax ===== */
.cta-parallax{
  position: relative;
  overflow: hidden;
  isolation: isolate; /* pour overlay */
}
.cta-parallax__bg{
  position: absolute;
  inset: -20vh 0; /* dépasse un peu pour l'effet */
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax desktop */
  z-index: -2;
}
.cta-parallax__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,.25) 100%
  );
  z-index: -1;
}

/* Footer vert, texte clair */
.footer-otropik{ background:#2ea37a; color:#fff; }
.footer-otropik .footer-link{ color:#fff; text-decoration:none; opacity:.9; }
.footer-otropik .footer-link:hover{ opacity:1; text-decoration:underline; }
.footer-otropik .border-white-25{ border-color:rgba(255,255,255,.25) !important; }


/* Cartes hôtels */
.hotel-card img{ transition: transform .5s ease; }
.hotel-card:hover img{ transform: scale(1.04); }
.hotel-card .hotel-name{ font-weight: 800; letter-spacing:.2px;color:#2ea37a }
.hotel-card .hotel-price{
  font-weight: 700;
  font-size: .9rem;
  color:  #2ea37a;
  background: color-mix(in oklab,  #2ea37a 12%, #fff);
  border: 1px solid color-mix(in oklab,  #2ea37a 35%, #fff);
  padding: .15rem .55rem;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}


/* Grille cartes destinations */
.dest-grid { display: grid; grid-template-columns: repeat(1,1fr); gap: 1rem; }
@media (min-width: 576px){ 
      .cta-chips{ grid-template-columns: repeat(2, minmax(120px, 1fr)); }
}
.chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.chip--ghost{
  color: #fff;
  border: 2px solid rgba(255,255,255,.9);
  background: transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  backdrop-filter: saturate(130%) blur(0px);
}
.chip--ghost:hover{
  background: rgba(255,255,255,.15);
}
    .dest-grid { grid-template-columns: repeat(2,1fr); } 
@media (min-width: 992px){
      .cta-parallax__bg{ background-attachment: scroll; }
}

/* Chips “bulles” blanches contour fin */
.cta-chips{
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 560px;
}
     .dest-grid { grid-template-columns: repeat(3,1fr); }
     
.card-dest .badge { position: absolute; top: .75rem; left: .75rem; }
