/* ═══════════════════════════════════════════════════════
   NATIER ENTER10MENT — home.css
   Editorial poster hero + page sections
   Accent: --gold (replaces generic lime on homepage hero)
═══════════════════════════════════════════════════════ */

:root {
  --gold:       #d4a017;
  --gold-lt:    #f0c040;
  --gold-dim:   rgba(212,160,23,.12);
  --gold-glow:  rgba(212,160,23,.35);
  --gold-text:  #f5c842;
  --char:       #0e0c09;   /* near-black with warm undertone */
}

/* ═══════════════════════════════════
   HERO POSTER
═══════════════════════════════════ */
.hero-poster {
  position: relative;
  min-height: 100vh;
  background: var(--char);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background layers */
.hp-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hp-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,160,23,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(231,154,31,.04) 0%, transparent 60%);
}

.hp-bg-noise {
  position: absolute; inset: 0; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hp-spot {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.14) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: spotPulse 6s ease-in-out infinite;
}
@keyframes spotPulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}

/* Giant background text */
.hp-bg-text {
  position: absolute;
  inset: 0; z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  padding-top: 2rem;
}
.hbt-line1,
.hbt-line2 {
  display: block;
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(14vw, 22vw, 280px);
  line-height: .88;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212,160,23,.18);
  white-space: nowrap;
  user-select: none;
}
.hbt-line1 { padding-left: 3vw; }
.hbt-line2 { padding-left: 12vw; color: transparent; -webkit-text-stroke-color: rgba(212,160,23,.11); }

/* ── Inner grid ── */
.hp-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
  flex: 1;
}
@media(max-width:900px) {
  .hp-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hp-right  { order: -1; display: flex; justify-content: center; gap: 1.5rem; align-items: flex-start; }
}

/* ── Eyebrow ── */
.hp-eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff-mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text);
  margin-bottom: 1.2rem;
}
.hp-eye-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: blip 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hp-eye-div { width: 24px; height: 1px; background: var(--gold); opacity: .5; }

/* ── Main title ── */
.hp-title {
  display: flex; flex-direction: column;
  gap: 0; margin-bottom: 1.8rem;
  line-height: .92;
}
.hp-t-small {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 400; font-style: normal;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white-sub);
}
.hp-t-italic { font-style: italic; }
.hp-t-big {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: clamp(5rem, 12vw, 9.5rem);
  font-weight: 900; letter-spacing: -.01em; text-transform: uppercase;
  color: var(--white);
  line-height: .88;
}
.hp-t-gold {
  color: var(--gold-text);
  text-shadow: 0 0 60px rgba(212,160,23,.3);
}

/* ── Ticket stub ── */
.hp-stub {
  display: flex;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  max-width: 480px;
  margin-bottom: 2rem;
  position: relative;
}
/* Notches */
.hp-stub::before,
.hp-stub::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--char);
  border: 1px solid rgba(255,255,255,.1);
  z-index: 2;
}
.hp-stub::before { left: calc(65% - 8px); }
.hp-stub::after  { left: calc(65% - 8px); display: none; }

.hp-stub-left {
  flex: 1; padding: 1.1rem 1.2rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.hp-barcode {
  color: var(--white-sub); width: 120px; height: 36px;
  opacity: .5;
}
.hp-stub-detail { display: flex; flex-direction: column; gap: .3rem; }
.hp-stub-row { display: flex; flex-direction: column; }
.hp-stub-lbl {
  font-family: var(--ff-mono); font-size: .52rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--white-dim);
}
.hp-stub-val {
  font-family: 'Barlow Condensed', sans-serif; font-size: .92rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--white);
}

.hp-stub-tear {
  width: 14px; display: flex; align-items: center; justify-content: center;
  opacity: .5; flex-shrink: 0;
}
.hp-stub-tear svg { width: 100%; height: 80%; }

.hp-stub-right {
  width: 120px; flex-shrink: 0;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem .6rem; gap: .4rem;
}
.hp-stub-event {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 900; line-height: 1;
  color: var(--char); text-align: center; letter-spacing: .04em;
}
.hp-stub-tag {
  font-family: var(--ff-mono); font-size: .5rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(0,0,0,.55); text-align: center; line-height: 1.3;
}

/* ── Hero CTAs ── */
.hp-actions {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hp-btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--char);
  padding: .75rem 2rem; border-radius: 6px;
  border: none; cursor: pointer;
  transition: all .2s; display: inline-block;
  white-space: nowrap;
}
.hp-btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--gold-glow);
}
.hp-btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--white);
  padding: .75rem 2rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.25);
  transition: all .2s; display: inline-block;
  white-space: nowrap;
}
.hp-btn-outline:hover {
  border-color: var(--gold); color: var(--gold-text);
}

/* ── Hero stats ── */
.hp-stats {
  display: flex; align-items: center; gap: 1.2rem;
}
.hp-stat {
  display: flex; flex-direction: column;
}
.hp-stat-n {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900;
  line-height: 1; color: var(--gold-text);
}
.hp-stat-l {
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white-dim);
}
.hp-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.1); }

/* ── Right column ── */
.hp-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 1.5rem;
  position: relative;
}

/* Spin badge */
.hp-spin-badge {
  width: 140px; height: 140px;
  animation: spinBadge 12s linear infinite;
  flex-shrink: 0;
  cursor: pointer;
  filter: drop-shadow(0 0 20px var(--gold-glow));
}
.hp-spin-badge:hover { animation-play-state: paused; }
@keyframes spinBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Featured event card */
.hp-feat-card {
  width: 100%;
  max-width: 340px;
}
.hp-feat-skeleton {
  height: 380px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Actual card — injected by JS */
.hp-feat-card .feat-card {
  border-color: rgba(212,160,23,.2);
}
.hp-feat-card .feat-card:hover {
  border-color: rgba(212,160,23,.5);
  box-shadow: 0 20px 60px rgba(212,160,23,.12);
}
.hp-feat-card .feat-price { color: var(--gold-text); }
.hp-feat-card .btn-ev {
  background: var(--gold); color: var(--char);
}
.hp-feat-card .btn-ev:hover { background: var(--gold-lt); }

/* ── Bottom gold stripe marquee ── */
.hp-stripe {
  position: relative; z-index: 4;
  background: var(--gold);
  overflow: hidden; padding: .6rem 0;
  margin-top: auto;
}
.hp-stripe-inner {
  display: flex; white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.hp-stripe-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--char); padding: 0 1.2rem;
}
.hp-stripe-dot { color: rgba(0,0,0,.4) !important; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════ */
.ev-section { padding: 6rem 0; background: var(--black); }

.ev-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}
.ev-hd-label {
  font-family: var(--ff-mono); font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: .5rem;
}
.ev-hd-title {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: .02em; line-height: .95;
}
.ev-hd-title em { font-style: italic; color: var(--gold-text); }

/* Event cards — override generic colours with gold accents */
.ev-date { color: var(--gold-text) !important; }
.ev-price { color: var(--gold-text) !important; }
.btn-ev {
  background: var(--gold) !important; color: var(--char) !important;
  border: none;
}
.btn-ev:hover { background: var(--gold-lt) !important; }
.f-btn.active { background: var(--gold) !important; color: var(--char) !important; border-color: var(--gold) !important; }

/* ═══════════════════════════════════
   ACCOUNT BANNER
═══════════════════════════════════ */
.acct-banner-section { padding: 4rem 0; background: var(--char); }
.acct-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 2.5rem;
  border: 1px solid rgba(212,160,23,.2);
  border-radius: 20px;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(212,160,23,.06) 0%, rgba(231,154,31,.02) 100%);
  position: relative; overflow: hidden;
}
.acct-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(212,160,23,.05) 0%, transparent 60%);
  pointer-events: none;
}
.acct-banner-in { border-color: rgba(231,154,31,.15); }
@media(max-width:680px) {
  .acct-banner { grid-template-columns: 1fr; }
  .acct-banner-btns { display: flex; gap: .7rem; flex-wrap: wrap; }
}
.acct-banner-label {
  font-family: var(--ff-mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: .5rem;
}
.acct-banner-title {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  text-transform: uppercase; line-height: 1; margin-bottom: .5rem;
}
.acct-banner-title em { font-style: italic; color: var(--gold-text); }
.acct-banner-sub {
  font-size: .85rem; color: var(--white-sub); line-height: 1.65; max-width: 440px;
}
.acct-banner-btns { display: flex; flex-direction: column; gap: .7rem; min-width: 160px; }

/* ═══════════════════════════════════
   BOOK DJ SECTION
═══════════════════════════════════ */
.book-section { padding: 6rem 0; background: var(--black2); }
.book-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 2.5rem;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--char);
  border-top: 1px solid rgba(212,160,23,.1);
  padding: 3.5rem 0 2rem;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
@media(max-width:760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media(max-width:460px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: .4rem;
}
.foot-brand span { color: var(--gold-text); }
.foot-tag  { font-size: .78rem; color: var(--white-dim); line-height: 1.6; }
.foot-head {
  font-family: var(--ff-mono); font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white-sub); margin-bottom: .8rem;
}
.foot-links { display: flex; flex-direction: column; gap: .5rem; }
.foot-links a { font-size: .82rem; color: var(--white-dim); transition: color .2s; }
.foot-links a:hover { color: var(--gold-text); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .72rem; color: var(--white-dim);
}

/* Override sec-label / sec-title for homepage sections */
.ev-section .sec-label { color: var(--gold-text); }

/* Account banner responsive */
@media(max-width:680px) {
  #accountBannerInner { grid-template-columns: 1fr !important; }
  #accountBannerBtns  { flex-direction: row !important; }
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce) {
  .hp-spin-badge { animation: none; }
  .hp-stripe-inner { animation: none; }
  .hp-spot { animation: none; }
}
