/* ============================================================
   VOYAGEURS TOURS — HERO CSS
   ============================================================ */

/* ── HERO WRAPPER ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── SLIDES ───────────────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-slide.active img { transform: scale(1); }

/* ── GRADIENT VEIL ────────────────────────────────────────── */
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 6, 3, 0.10) 0%,
    rgba(10, 6, 3, 0.18) 30%,
    rgba(10, 6, 3, 0.60) 75%,
    rgba(10, 6, 3, 0.82) 100%
  );
  z-index: 1;
}

/* ── CAPTION (bottom left) ────────────────────────────────── */
.hero-caption {
  position: absolute;
  bottom: 76px;
  left: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--sans);
  transition: opacity .4s;
}

.hero-caption::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  flex-shrink: 0;
}

/* ── SLIDE INDICATORS (bottom right) ─────────────────────── */
.hero-indicators {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-indicator {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background .3s, width .4s var(--ease);
  border: none;
}

.hero-indicator.active {
  background: var(--white);
  width: 48px;
}

/* ── CONTENT ──────────────────────────────────────────────── */
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 88px;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 7.5vw, 96px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  animation: hero-up 1s .15s both;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: #f5d8a0;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.70);
  max-width: 480px;
  line-height: 1.88;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: .3px;
  animation: hero-up 1s .32s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: hero-up 1s .48s both;
}

@keyframes hero-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL HINT ──────────────────────────────────────────── */
.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.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: hero-up 1s .7s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scroll-drop 1.8s ease infinite;
}

@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── INNER PAGE HERO (smaller) ────────────────────────────── */
.hero--inner {
  height: 50vh;
  min-height: 380px;
}

.hero--inner .hero-body {
  padding-bottom: 60px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-body { padding: 0 20px 72px; }
  .hero-caption { left: 20px; bottom: 64px; }
  .hero-indicators { right: 20px; bottom: 68px; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero { min-height: 560px; }
  .hero-h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero-sub { font-size: 14px; }
}
