/* ============================================================
   POWDER HOUSE BEND — Hero Section
   Matches full design system. Syne + glacier #62c1db.
   Retro: cyan only. No yellow text, no magenta glow halos.
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   HERO STRUCTURE
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 75vh;
  padding: 3rem 1rem 2rem;
  overflow: hidden;
  color: #fff;
  background: #000;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-bg > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
}

@media (min-width: 768px) {
  .hero-bg > img { object-position: center 25%; }
}

/* Gradient overlay — deeper at bottom to keep text readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 1;
}

/* Content above overlay */
.hero-content,
#fixed-award-wrapper,
.retro-toggle-btn {
  position: relative;
  z-index: 2;
}


/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════════════════ */
.hero h1 {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #62c1db;
  margin: 0 0 1rem;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.80),
    0 0 32px rgba(98, 193, 219, 0.20);
}

.hero p,
.hero .subtitle {
  font-family: '', system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(220, 229, 240, 0.82);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}


/* ════════════════════════════════════════════════════════════
   PICKUP & RETURN BOXES
════════════════════════════════════════════════════════════ */
.pickup-return-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pickup-box,
.return-box {
  flex: 1 1 300px;
  min-width: 250px;
  padding: 1.5rem;
  border-radius: 10px;

  background: rgba(14, 20, 32, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid rgba(98, 193, 219, 0.28);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.pickup-box h3,
.return-box h3 {
  font-family: '', system-ui, -apple-system, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #62c1db;
  margin: 0 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(98, 193, 219, 0.16);
}

.pickup-box ul,
.return-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pickup-box li,
.return-box li {
  font-family: '', system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(220, 229, 240, 0.65);
  margin-bottom: 0.6rem;
  padding-left: 0.9rem;
  position: relative;
}

/* Dot prefix */
.pickup-box li::before,
.return-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(98, 193, 219, 0.45);
}


/* ════════════════════════════════════════════════════════════
   RETRO MODE — cyan only
   No yellow body text. No magenta glow on h1.
════════════════════════════════════════════════════════════ */
body.retro-mode .hero {
  background-color: #000;
}

/* Radial vignette — darker edges, CRT feel */
body.retro-mode .hero::before {
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

/* Scanline layer on hero */
body.retro-mode .hero::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.16) 2px,
    rgba(0, 0, 0, 0.16) 4px
  );
}

body.retro-mode .hero-content h1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00e5ff;
  text-shadow:
    0 0 8px rgba(0, 229, 255, 0.9),
    0 0 24px rgba(0, 229, 255, 0.40),
    0 2px 8px rgba(0, 0, 0, 0.8);
}

body.retro-mode .hero-content p,
body.retro-mode .hero-content .subtitle {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(0, 229, 255, 0.62);
  text-shadow: none;
}

/* Pickup/return boxes retro */
body.retro-mode .pickup-box,
body.retro-mode .return-box {
  background: rgba(0, 5, 12, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-top: 2px solid #00e5ff;
  border-radius: 2px;
  backdrop-filter: none;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.07);
}

body.retro-mode .pickup-box h3,
body.retro-mode .return-box h3 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: #00e5ff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.60);
  border-bottom-color: rgba(0, 229, 255, 0.14);
}

body.retro-mode .pickup-box li,
body.retro-mode .return-box li {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.80rem;
  color: rgba(0, 229, 255, 0.48);
}

body.retro-mode .pickup-box li::before,
body.retro-mode .return-box li::before {
  background: rgba(0, 229, 255, 0.40);
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    min-height: 65vh;
    padding: 4rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .hero p,
  .hero .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
    padding: 4rem 1rem 2.5rem;
  }

  .hero h1 { font-size: 1.6rem; }

  .hero p,
  .hero .subtitle { font-size: 0.9rem; }

  .hero-content { padding-top: 4rem; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 1.4rem; }

  .hero p,
  .hero .subtitle { font-size: 0.85rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.2rem; }

  .hero p,
  .hero .subtitle { font-size: 0.8rem; }

  .hero-content {
    padding: 3rem 0.75rem 0;
    max-width: 100%;
    word-wrap: break-word;
  }

  .hero .btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    max-width: 90%;
    white-space: normal;
    word-wrap: break-word;
    margin: 0 auto;
  }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.1rem; }

  .hero p,
  .hero .subtitle { font-size: 0.75rem; }

  .hero-content { padding: 0 0.75rem; }
}


/* ────────────────────────────────────────────────────────────
   REDUCED MOTION
──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after { transition: none; }
}