/* ═══════════════════════════════════════════════════════════════
   10 · HERO
   Full-bleed cinematic intro · floating featured-tour card
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 88vh;
  min-height: 640px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--navy-900);
}

.hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

/* ── Hero carousel: 4 cross-fading themed slides ── */
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}
.hero__slide.is-active {
  opacity: 1;
  animation: heroZoom 7s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* Synced copy crossfade */
.hero__copy { position: relative; }
.hero__copy__item {
  position: absolute; left: 0; right: 0; bottom: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.hero__copy__item.is-active {
  position: relative;
  opacity: 1; visibility: visible;
  transform: none;
  pointer-events: auto;
}

/* Prev / next arrows */
.hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(14,27,46,.32);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.hero__nav:hover { background: rgba(14,27,46,.6); border-color: #fff; }
.hero__nav--prev { left: 22px; }
.hero__nav--next { right: 22px; }

/* Progress dots */
.hero__cdots {
  position: absolute; left: 0; right: 0; bottom: 30px;
  z-index: 4; display: flex; gap: 9px; justify-content: center;
}
.hero__cdot {
  width: 30px; height: 4px; border-radius: 4px; padding: 0; border: none;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .25s, width .25s;
}
.hero__cdot:hover { background: rgba(255,255,255,.7); }
.hero__cdot.is-active { background: var(--gold-400, #d8b274); width: 46px; }

@media (max-width: 900px) {
  .hero__nav { display: none; }
  .hero__cdots { bottom: 18px; }
  .hero__copy__item { position: relative; }
  .hero__copy__item:not(.is-active) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero__slide.is-active { animation: none; transition: opacity .4s ease; }
  .hero__copy__item { transition: opacity .3s ease; transform: none; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 27, 46, 0.45) 0%,
      transparent 30%,
      transparent 50%,
      rgba(14, 27, 46, 0.85) 100%),
    linear-gradient(90deg,
      rgba(14, 27, 46, 0.7) 0%,
      transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 90px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

.hero__title {
  font-family: 'DM Sans', Georgia, serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 22px 0 20px;
  color: #fff;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 300;
}

.hero__desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Floating featured tour card ─── */
.hero-card {
  background: rgba(14, 27, 46, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
  max-width: 360px;
  margin-left: auto;
}
.hero-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.hero-card__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-400);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero-card__img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hero-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 8px;
}
.hero-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.hero-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-card__price__from {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero-card__price__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  color: var(--gold-400);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-card__cta {
  padding: 10px 16px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 2px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.hero-card__cta:hover {
  background: var(--gold-400);
  gap: 10px;
}

/* ─── Scroll cue ─── */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll__line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0.3); transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  51%  { transform: scaleY(1);   transform-origin: bottom; }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* ─── Hero "Most booked" slider ─── */
.hero-slider { position: relative; }
.hero-slider__track {
  position: relative;
  display: grid;
}
.hero-slide {
  grid-area: 1 / 1;
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.hero-slider__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 0; cursor: pointer; padding: 0;
  transition: all 0.3s var(--ease);
}
.hero-slider__dot.is-active {
  background: var(--gold-400);
  width: 22px;
  border-radius: 4px;
}
