/*
 * hero.css — Hero section ONLY
 * Ref: Passalacqua (zero overlay, breathing hero),
 * Forestis (single italic tagline, cinematic),
 * Singita (large italic serif hero)
 */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Background Image ────────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

/* ── Content ─────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-md);
}

.hero__tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.75);
  margin-top: var(--sp-sm);
}

.hero__cta {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  margin-top: var(--sp-md);
}

/* ── Hero Buttons ────────────────────────────────── */
.btn--light {
  background-color: #ffffff;
  color: #2c1a0e;
  border: 2px solid #ffffff;
}
.btn--light:hover {
  background-color: #f0ebe1;
  border-color: #f0ebe1;
}



/* ── Scroll Indicator ────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
}

.hero__scroll-text {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  margin-bottom: 12px;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(250, 248, 244, 0.3);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-warm);
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}
