/* =============================================================
   BASECAMP BEND — HERO / HEADER
   ============================================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-deep);
}

/* Background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  /* background-image set via inline style in header.php */
  opacity: 0.45;
  transform: scale(1.04);
  transition: transform 10s ease;
  z-index: 0;
}

/* Subtle parallax on scroll — activated by JS if desired */
.hero-bg.loaded {
  transform: scale(1);
}

/* Dark gradient overlay */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(11,20,16,1)   0%,  rgba(11,20,16,0.65) 40%, rgba(11,20,16,0.1) 100%),
    linear-gradient(to right, rgba(11,20,16,0.75) 0%, transparent 55%);
  z-index: 1;
}

/* ----- Sasquatch SVG silhouette ----- */
.hero-squatch {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: clamp(160px, 18vw, 280px);
  opacity: 0.15;
  filter: blur(0.4px);
  pointer-events: none;
  z-index: 2;
}

/* ----- Hero Content ----- */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 3rem 5rem;
  max-width: 860px;
}

/* Eyebrow label */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* Giant display title */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 9.5rem);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
  display: block;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.65;
  font-weight: 400;
}

/* Badge row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ----- Scroll hint (bottom right) ----- */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.12); }
}

/* ----- Sub-page short hero (used on taplist, food-carts, events) ----- */
.hero-short {
  min-height: 50vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-short .hero-content {
  padding: 4rem 2rem;
  max-width: 700px;
  text-align: center;
}

.hero-short .hero-gradient {
  background: linear-gradient(to bottom, rgba(11,20,16,0.5), rgba(11,20,16,0.85));
}

.hero-short h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
  .hero-content {
    padding: 0 1.75rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }

  .hero-squatch {
    opacity: 0.1;
    width: 140px;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1.25rem 3rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-cta {
    gap: 0.75rem;
  }
}
