/* ── HOME PAGE STYLES ── */

/* ══════════════════════════════════════════
   0. SPRAY PAINT DECORATORS
══════════════════════════════════════════ */

/* Zero-height wrapper that sits AT the section boundary.
   overflow: visible lets the spray SVG bleed into both sections above and below. */
.spray-boundary {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 30;
  pointer-events: none;
}

/* The actual spray SVG positioned to straddle the boundary */
.spray-boundary svg {
  position: absolute;
  pointer-events: none;
}

/* Hero → Ticker boundary: spray bottom-left of hero bleeding into ticker */
.spray-b1 svg {
  bottom: -50px;   /* starts 50px above boundary = inside hero */
  left: 6%;
  width: clamp(160px, 18vw, 260px);
  height: auto;
}

/* Discover → IG boundary: spray right side bleeding from bento into black section */
.spray-b2 svg {
  bottom: -60px;
  right: 8%;
  width: clamp(140px, 16vw, 240px);
  height: auto;
}

/* Paint stroke under heading */
.paint-stroke {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 18px;
  margin-top: 4px;
}

/* Wristband spray — small accent, not full-bleed */
.wristband-spray {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 280px;
  pointer-events: none;
  z-index: 0;
}

/* IG section sprays — pixel style, near text edges */
.ig-spray {
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 14vw, 200px);
  height: auto;
}
.ig-spray-left  { left: 2%; }
.ig-spray-right { right: 2%; }

/* ══════════════════════════════════════════
   1. HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Dark atmospheric background — real WCD stage photo + gradient overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://cdn.prod.website-files.com/6746e2094ac2853d8e0521f2/69c3ebaf07045861953aff7b_Sequenz%2001bg_web_stage%20%281%29_poster.0000000.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Strengthen bottom for text legibility */
    linear-gradient(to top, rgba(6,2,2,0.97) 0%, rgba(10,5,8,0.75) 30%, rgba(10,5,8,0.35) 65%, rgba(10,5,8,0.15) 100%),
    /* Warm stage glow from center */
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(255,120,30,0.18) 0%, transparent 70%),
    /* Accent yellow wash — subtle */
    radial-gradient(ellipse 20% 25% at 18% 80%, rgba(241,253,115,0.08) 0%, transparent 70%);
}

/* Subtle noise texture overlay for film grain */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Accent top border — neon line */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  z-index: 10;
}

/* Content row at bottom — mobile: stacked column */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.25rem 3rem;
  gap: 1.5rem;
  width: 100%;
}

/* Left: eyebrow + giant title — mobile: full width */
.hero-title-block {
  width: 100%;
  flex: none;
  max-width: 100%;
  order: 1;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Mobile word sizes */
.hero-title .word-world {
  color: #ffffff;
  font-size: 4.5rem;
}
.hero-title .word-club {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
  font-size: 3.5rem;
}
.hero-title .word-dome {
  color: var(--accent);
  font-size: 5.5rem;
}

/* Right: date/location + buttons — mobile: full width, left-aligned */
.hero-info-block {
  width: 100%;
  flex: none;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-date {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-location {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Mobile: CTAs stacked full width */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
  width: 100%;
}
.hero-ctas .btn {
  width: 100%;
  justify-content: center;
}

/* Bottom center scroll hint */
.hero .scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}

/* ══════════════════════════════════════════
   1b. DARK TICKER VARIANT
══════════════════════════════════════════ */
.ticker-dark {
  background: var(--dark) !important;
  border-top: 2px solid rgba(241,253,115,0.2);
  border-bottom: 2px solid rgba(241,253,115,0.2);
}
.ticker-item-dark {
  color: var(--accent) !important;
  letter-spacing: 0.2em !important;
}
.ticker-item-dark .sep {
  color: rgba(241,253,115,0.4) !important;
}

/* ══════════════════════════════════════════
   2. DISCOVER BENTO GRID
══════════════════════════════════════════ */
.discover {
  background: var(--bg);
  padding: var(--py-section) var(--px);
}

.discover-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

/* Section title with paint stroke — inline block to contain the stroke SVG */
.discover-header .section-title {
  display: inline-block;
  position: relative;
}

/* Mobile: single column */
.discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  grid-auto-rows: minmax(180px, auto);
}

/* Generic card */
.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s;
  cursor: pointer;
  min-height: 180px;
  text-decoration: none;
  color: inherit;
}
.bento-card:hover {
  transform: scale(1.012);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  z-index: 2;
}

/* Card background images */
.bento-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.bento-card:hover .bento-card-bg {
  transform: scale(1.04);
}

/* Overlay gradient on image cards */
.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

/* Card content */
.bento-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bento-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}

.bento-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.bento-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* Arrow icon */
.bento-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  z-index: 3;
}
.bento-card:hover .bento-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translate(2px, -2px);
}

/* ── Tickets card: mobile — single col, normal height ── */
.bento-tickets {
  grid-column: 1;
  grid-row: auto;
  min-height: 280px;
  background: var(--dark-2);
  border-top: 4px solid var(--accent);
  justify-content: flex-end;
}

.tickets-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}

.tickets-img {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  overflow: hidden;
}
.tickets-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.6;
}
.tickets-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--dark-2) 100%);
}

.tickets-urgency {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.tickets-urgency::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ── Lineup card ── */
.bento-lineup {
  grid-column: 1;
  grid-row: auto;
}
.bento-lineup .bento-card-bg {
  background-image: url('https://cdn.prod.website-files.com/6746e2094ac2853d8e0521f2/691582d96eacd4f1babe78c1_2506_WCD_Lucas%20Ko%CC%88rner-262.webp');
}

/* ── VIP card ── */
.bento-vip {
  grid-column: 1;
  grid-row: auto;
}
.bento-vip .bento-card-bg {
  background-image: url('https://cdn.prod.website-files.com/6746e2094ac2853d8e0521f2/6a01caa1ed946bf83a59338f_vip2.jpg');
}
.bento-vip .bento-title {
  color: var(--accent);
}

/* ── Info card ── */
.bento-info {
  grid-column: 1;
  grid-row: auto;
  background: var(--accent);
}
.bento-info .bento-label { color: rgba(0,0,0,0.45); }
.bento-info .bento-title { color: var(--text); }
.bento-info .bento-sub { color: rgba(0,0,0,0.55); }
.bento-info .bento-arrow {
  border-color: rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.5);
}
.bento-info:hover .bento-arrow {
  background: #000;
  border-color: #000;
  color: var(--accent);
}

/* ── Hotels card ── */
.bento-hotels {
  grid-column: 1;
  grid-row: auto;
  background: #e0e0e0;
}
.bento-hotels .bento-label { color: rgba(0,0,0,0.35); }
.bento-hotels .bento-title { color: var(--text); }
.bento-hotels .bento-sub { color: var(--muted); }
.bento-hotels .bento-arrow {
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.4);
}
.bento-hotels:hover .bento-arrow {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* ══════════════════════════════════════════
   2b. INSTAGRAM-STYLE ANNOUNCEMENT
══════════════════════════════════════════ */
.ig-announcement {
  display: block;
  position: relative;
  background: #000;
  overflow: hidden;
  text-decoration: none;
  padding: clamp(3rem, 8vw, 6rem) var(--px);
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}
.ig-announcement:hover { background: #0a0a0a; }

.ig-spray {
  position: absolute;
  pointer-events: none;
  width: clamp(160px, 25vw, 320px);
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}
.ig-spray-left  { left: -30px; }
.ig-spray-right { right: -30px; }

.ig-announcement-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ig-wordmark {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.ig-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
}

.ig-dash {
  color: #fff;
}

.ig-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

.ig-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-announcement:hover .ig-cta {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(241,253,115,0.4);
}

/* ══════════════════════════════════════════
   3. WRISTBAND SECTION
══════════════════════════════════════════ */
/* Mobile: single column */
.wristband {
  padding: var(--py-section) var(--px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.wristband-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.wristband-text h2 .accent {
  color: var(--accent);
}

.wristband-text p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  max-width: 42ch;
}

/* Mobile: badge centered below text */
.wristband-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wristband-badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(241,253,115,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
}

.wristband-badge-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.wristband-badge-text {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.wristband-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

/* ══════════════════════════════════════════
   4. PHOTOS & VIDEO
══════════════════════════════════════════ */
.media {
  background: var(--bg);
  padding: var(--py-section) var(--px);
}

.media-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

/* Mobile: single column, stacked */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 240px);
  gap: 0.75rem;
  height: auto;
}

/* Photo 1: full width on mobile */
.media-photo-1 {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.media-photo-1 img,
.media-photo-2 img,
.media-photo-3 img,
.media-photo-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.media-photo-1:hover img,
.media-photo-2:hover img,
.media-photo-3:hover img,
.media-photo-4:hover img {
  transform: scale(1.04);
}

/* Recap overlay on photo 1 */
.media-photo-1 .recap-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background 0.3s;
}
.media-photo-1:hover .recap-overlay {
  background: rgba(0,0,0,0.25);
}

.recap-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: background 0.25s, transform 0.25s;
}
.media-photo-1:hover .recap-play {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: scale(1.08);
}

.recap-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}

.media-photo-2,
.media-photo-3,
.media-photo-4 {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

/* ══════════════════════════════════════════
   5. PARTNERS SECTION (wrapper)
══════════════════════════════════════════ */
.partners-section {
  background: var(--bg);
}

.partners-label {
  padding: var(--py-section) var(--px) 2rem;
}

/* ══════════════════════════════════════════
   6. RESPONSIVE — TABLET (768px+)
══════════════════════════════════════════ */
@media (min-width: 768px) {
  /* Hero */
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 var(--px) 4.5rem;
    gap: 2rem;
  }
  .hero-title-block {
    order: unset;
    flex: 0 1 auto;
    max-width: 60%;
    width: auto;
  }
  .hero-info-block {
    order: unset;
    flex: 0 0 auto;
    width: auto;
    align-items: flex-end;
    text-align: right;
    gap: 2rem;
  }
  .hero-title .word-world { font-size: clamp(4.5rem, 8vw, 7rem); }
  .hero-title .word-club  { font-size: clamp(3.5rem, 6vw, 5.5rem); }
  .hero-title .word-dome  { font-size: clamp(5.5rem, 10vw, 8.5rem); }
  .hero-ctas {
    flex-direction: row;
    width: auto;
    align-items: center;
  }
  .hero-ctas .btn {
    width: auto;
    justify-content: initial;
  }

  /* Bento grid: 2 columns */
  .discover-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(280px, auto);
  }
  .bento-tickets {
    grid-column: 1;
    grid-row: auto;
    min-height: 340px;
  }
  .bento-lineup  { grid-column: 2; grid-row: auto; }
  .bento-vip     { grid-column: 1; grid-row: auto; }
  .bento-info    { grid-column: 2; grid-row: auto; }
  .bento-hotels  { grid-column: 1; grid-row: auto; }

  /* Media grid: 2 columns */
  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
    height: auto;
  }
  .media-photo-1 {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .media-photo-2 { grid-column: 1; grid-row: 2; }
  .media-photo-3 { grid-column: 2; grid-row: 2; }
  .media-photo-4 { grid-column: 1 / 3; grid-row: 3; }
}

/* ══════════════════════════════════════════
   7. RESPONSIVE — DESKTOP (1024px+)
══════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Hero — full desktop title sizes */
  .hero-title .word-world { font-size: clamp(6rem, 10vw, 9rem); }
  .hero-title .word-club  { font-size: clamp(5rem, 8vw, 7rem); }
  .hero-title .word-dome  { font-size: clamp(7rem, 12vw, 11rem); }

  /* Bento grid: 3 columns, tickets spans rows 1-2 */
  .discover-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-rows: minmax(280px, auto);
  }
  .bento-tickets {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 580px;
  }
  .bento-lineup { grid-column: 2; grid-row: 1; }
  .bento-vip    { grid-column: 3; grid-row: 1; }
  .bento-info   { grid-column: 2; grid-row: 2; }
  .bento-hotels { grid-column: 3; grid-row: 2; }

  /* Wristband: 2-column grid */
  .wristband {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
  .wristband-visual {
    justify-content: flex-end;
  }

  /* Media grid: 3-col × 2-row mosaic, photo1 spans rows */
  .media-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 600px;
  }
  .media-photo-1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .media-photo-2 { grid-column: 2; grid-row: 1; }
  .media-photo-3 { grid-column: 3; grid-row: 1; }
  .media-photo-4 { grid-column: 2 / 4; grid-row: 2; }
}
