/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0f0c07;
  --bg-card:    #1a1509;
  --bg-dark:    #080603;
  --cream:      #f0deb8;
  --cream-dim:  #b8a880;
  --orange:     #d4793a;
  --gold:       #e8b55a;
  --white:      #ffffff;
  --border:     rgba(212, 121, 58, 0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 12, 7, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Righteous', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}

nav ul a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,121,58,0.15) 0%, transparent 60%),
    var(--bg-dark);
  overflow: hidden;
  padding: 100px 24px 60px;
}

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

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stars span {
  position: absolute;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.4;
  animation: twinkle 3s infinite alternate;
}

.stars span:nth-child(1)  { top: 15%; left: 10%; font-size: 0.5rem; animation-delay: 0s; }
.stars span:nth-child(2)  { top: 25%; right: 15%; animation-delay: 0.5s; }
.stars span:nth-child(3)  { top: 60%; left: 5%; animation-delay: 1s; }
.stars span:nth-child(4)  { bottom: 20%; right: 8%; font-size: 0.9rem; animation-delay: 1.5s; }
.stars span:nth-child(5)  { top: 40%; left: 20%; font-size: 0.4rem; animation-delay: 0.8s; }
.stars span:nth-child(6)  { bottom: 35%; right: 22%; animation-delay: 0.3s; }

@keyframes twinkle {
  from { opacity: 0.2; }
  to   { opacity: 0.7; }
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  text-shadow:
    0 0 60px rgba(232, 181, 90, 0.2),
    0 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 40px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 90px 24px; }
.section-dark { background: var(--bg-dark); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner.centered { text-align: center; max-width: 700px; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--cream-dim);
  font-size: 1rem;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ── EVENT CARDS ──────────────────────────────────────────── */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.event-card.featured {
  border-color: rgba(232, 181, 90, 0.4);
  background: linear-gradient(135deg, #1e1509 0%, #130f05 100%);
}

.event-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.event-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.event-zzz {
  font-family: 'Righteous', sans-serif;
  font-size: 1.2rem;
  color: var(--cream-dim);
  letter-spacing: 4px;
  margin-bottom: 8px;
  opacity: 0.6;
}

.event-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 24px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 20px;
}

.event-meta span {
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.event-desc {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.event-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.event-age {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.event-card.placeholder {
  text-align: center;
  padding: 48px;
  opacity: 0.6;
}

.event-card.placeholder h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.event-card.placeholder p {
  color: var(--cream-dim);
  margin-bottom: 20px;
}

/* ── COMMUNITY ────────────────────────────────────────────── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.community-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  text-align: center;
  transition: border-color 0.2s;
}

.community-card:hover { border-color: var(--orange); }
.community-card.coming-soon { opacity: 0.5; }

.community-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.community-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.community-card p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── BADGES ───────────────────────────────────────────────── */
.badge-soon {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
}

.badge-soon.large {
  font-size: 0.85rem;
  padding: 10px 28px;
  margin-top: 8px;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-text {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

/* ── MUSIC ────────────────────────────────────────────────── */
.music-section {
  padding: 90px 24px;
  background: var(--bg-dark);
}

.spotify-wrap {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(232, 181, 90, 0.1);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-logo {
  font-family: 'Righteous', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 12px;
}

footer p {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--cream-dim);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-copy {
  color: rgba(184, 168, 128, 0.4);
  font-size: 0.75rem;
}

/* ── ADULT NIGHTS ─────────────────────────────────────────── */
.nights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.night-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  transition: border-color 0.2s;
}

.night-card:hover { border-color: var(--orange); }

.night-days {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.night-day {
  background: var(--orange);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.night-venue {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.night-time {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.night-location {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* ── PHOTO GALLERY ────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.photo-album {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.photo-album.featured-album {
  border-color: rgba(232, 181, 90, 0.4);
  background: linear-gradient(135deg, #1e1509 0%, #130f05 100%);
}

.photo-album.featured-album::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.album-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.album-meta {
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.album-desc {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.album-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.album-hint {
  font-size: 0.75rem;
  color: var(--cream-dim);
  opacity: 0.6;
}

.photo-album.coming-soon-album {
  text-align: center;
  padding: 48px;
  opacity: 0.5;
}

.album-placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.coming-soon-album h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.coming-soon-album p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  nav ul { gap: 20px; }
  nav ul a { font-size: 0.75rem; }
  .event-card { padding: 28px 20px; }
  .section { padding: 64px 20px; }
}
