/* ==========================================================================
   HERO.CSS — Full-viewport hero section (index.html)
   ========================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/[image] - 2703466.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}

/* Overlay layers */
.hero__overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

.hero__overlay-2 {
  position: absolute;
  inset: 0;
  background: rgba(20, 0, 40, 0.30);
  z-index: 2;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 2vh) clamp(20px, 5vw, 80px) 0;
  max-width: 960px;
  width: 100%;
}

/* Eyebrow */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

/* Main title — 3 lines */
.hero__title { margin-bottom: 0; }

.hero__title .line {
  display: block;
  overflow: hidden;
  line-height: 1.02;
  padding-bottom: 4px;
}

.hero__title .line-inner {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.5vw, 100px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7),
               0 0 60px rgba(0, 0, 0, 0.25);
}

/* Gold italic "Alive" line with shimmer */
.hero__title .line-inner.line-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  font-size: clamp(48px, 6.5vw, 100px);
  letter-spacing: 3px;
  background: linear-gradient(
    90deg,
    var(--color-highlight) 0%,
    #ffe6a0 40%,
    var(--color-highlight) 60%,
    #fff5cc 80%,
    var(--color-highlight) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
  text-shadow: none;
}

@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Gold divider */
.hero__divider {
  width: 80px;
  height: 2px;
  background: var(--color-highlight);
  margin: 24px auto 22px;
  border: none;
  opacity: 0;
}

/* Sub text */
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(11px, 2.5vw, 14px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

/* CTA buttons */
.hero__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__btns .btn {
  padding: 15px 34px;
  font-size: 13px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(24px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}

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

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


/* ---- Responsive ---- */
@media (max-width: 767px) {
  .hero {
    height: 100svh;
    height: 100vh;
    min-height: 560px;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
  }
  .hero__content { padding: 0 20px; }
  .hero__eyebrow { display: none; }
  .hero__title .line { line-height: 1.05; }
  .hero__sub { letter-spacing: 2.5px; margin-bottom: 36px; }
  .hero__btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero__btns .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
  .hero__scroll { display: none; }
}

@media (max-width: 479px) {
  .hero__content { padding: 0 16px; }
  .hero__eyebrow { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 16px; }
  .hero__divider { margin: 20px auto 18px; }
}
