/* ============================
   Grimy / Underground Styles
   Pulled from underground.html inline CSS
   ============================ */

:root {
  --bg: #000;
  --orange: #ff6a00;
  --white: #f0f0f0;
  --muted: #888;
}

/* 🔝 Hero Banner */
.hero-banner {
  text-align: center;
  margin: 0 auto 40px auto;
}

.hero-banner .header-image {
  width: 100%;
  max-height: 1000px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--orange);
  text-shadow: 0 0 8px rgba(255, 106, 0, 1),
               0 0 16px rgba(255, 106, 0, 0.9),
               0 0 28px rgba(255, 106, 0, 0.7);
  margin-top: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-style: italic;
  color: #ccc;
  margin-bottom: 20px;
}

/* 🎶 Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  padding: 10px 0;
  margin-bottom: 40px;
}

.marquee__inner {
  display: inline-block;
  animation: marquee 18s linear infinite;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--orange);
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ✨ Sections */
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 40px auto 20px auto;
  text-shadow: 0 0 10px var(--orange), 0 0 20px #fff;
}

section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.6;
}

/* 🎤 Drops & Runway */
.drop, .runway, .wall {
  margin: 40px auto;
  padding: 20px;
  max-width: 1100px;
  text-align: center;
  background: rgba(18, 19, 27, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

/* 📦 Packs */
#packs p {
  font-size: 1.1rem;
  color: #f0f0f0;
}

/* ❓ Accordion (FAQ) */
.accordion {
  max-width: 900px;
  margin: 40px auto;
}

.accordion__item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 15px 10px;
}

.accordion__header {
  font-weight: 700;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 8px;
}

.accordion__body {
  display: none;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

.accordion__item.active .accordion__body {
  display: block;
}

/* 🔝 Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: none;
  border-radius: 0;
  opacity: 0.85;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.back-to-top svg {
  width: 50px;
  height: 50px;
  fill: var(--orange);
  transition: transform .2s ease;
}

.back-to-top:hover svg {
  transform: scale(1.1);
}
/* === Underground Page Hero Spacing Fix === */
body.underground-page .hero-banner {
  padding-top: 0px;   /* pushes the entire hero block down */
}

body.underground-page .hero-banner img {
  margin-top: 0px;    /* extra breathing room just for logo */
  max-width: 275px;
  margin: 9px auto;

}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 30px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgb(255, 255, 255);
}
@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
  .split-image {
    margin-top: 20px;
  }
}


