@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0c0c0c;
  --darker:  #060606;
  --cream:   #f0ead8;
  --gold:    #c8a04a;
  --rust:    #a83c1a;
  --muted:   rgba(240,234,216,0.5);
  --font-display: 'gotham-narrow', 'Oswald', 'Arial Narrow', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Source Sans 3', system-ui, sans-serif;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.page-body, .hero {
  flex: 1;
}

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

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 96px;
  background: var(--darker);
  border-bottom: 1px solid rgba(240,234,216,0.08);
}

.nav-logo img {
  height: 60px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.hero-logo {
  width: min(420px, 80vw);
}

.hero-stamp {
  width: min(200px, 45vw);
  margin: 0.5rem 0;
  filter: sepia(1) saturate(6) hue-rotate(295deg) brightness(1.1);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.05;
}

.hero-date {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.social-links a:hover { opacity: 1; }

/* ── PAGE BODY ── */
.page-body {
  padding-top: 96px;
}

/* ── SCHEDULE ── */
body.schedule-page {
  background: radial-gradient(ellipse at center, #2a2820 0%, #0c0c0c 70%);
}

.schedule-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.schedule-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.schedule-section .sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 3rem;
  font-style: italic;
}

.schedule-meta {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.stage {
  margin-bottom: 3rem;
}

.stage-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,160,74,0.3);
  margin-bottom: 1.25rem;
}

.set-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.set-list li {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(240,234,216,0.06);
  padding-bottom: 0.75rem;
}

.set-time {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  min-width: 75px;
}

.set-band {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
}

.divider {
  border: none;
  border-top: 1px solid rgba(240,234,216,0.08);
  margin: 4rem 0;
}

.schedule-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  margin: 3rem 0;
}

.map-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.map-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,160,74,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.map-link:hover { border-color: var(--gold); }

/* ── ARTISTS ── */
.artists-header {
  padding: 5rem 2rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.artists-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.6) grayscale(20%);
}

.artist-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.45) grayscale(0%);
}

.artist-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.artist-card-info h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.artist-card-info p {
  font-size: 0.82rem;
  color: rgba(240,234,216,0.65);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--darker);
  border-top: 1px solid rgba(240,234,216,0.08);
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-email {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: right;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--cream); }

/* ── MEDIA SLIDESHOW ── */
.media-slideshow {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.slide-track {
  display: flex;
  gap: 0.4rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide {
  flex: 0 0 80%;
  height: clamp(380px, 50vw, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.45s ease;
  border-radius: 4px;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.slide iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.media-stack-slide {
  flex-direction: row;
  gap: 1rem;
  align-items: stretch;
}

.media-stack-slide img {
  flex: 1;
  height: 100%;
  object-fit: contain;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(12,12,12,0.7);
  border: 1px solid rgba(240,234,216,0.25);
  color: var(--cream);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  line-height: 1;
}
.slide-btn:hover { background: rgba(200,160,74,0.35); }
.slide-prev { left: 0.5rem; }
.slide-next { right: 0.5rem; }

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(240,234,216,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.dot.active { background: var(--gold); }

@media (max-width: 700px) {
  .slide { flex: 0 0 88%; }
}

/* ── SCHEDULE 2-COL ── */
.schedule-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.col-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 1.5rem 0 0.5rem;
}

.col-divider {
  border: none;
  border-top: 1px solid rgba(240,234,216,0.12);
  margin: 1.5rem 0;
}

.bullet-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.bullet-list li {
  font-size: 1.05rem;
  color: var(--cream);
  opacity: 0.82;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.bullet-list li a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 1rem;
}

.schedule-poster {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.schedule-map {
  width: 100%;
  display: block;
  margin-top: 2rem;
  border-radius: 2px;
  opacity: 0.9;
}

.schedule-photos-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.schedule-photos-pair img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero-bg { background-position: center 20%; background-size: 200%; }
  .nav-logo img { height: 45px; }
  .hero { justify-content: flex-start; padding-top: 110px; }
  .hero-content { gap: 0.75rem; padding: 1rem 1.5rem; }
  .hero-stamp { width: 55vw; margin: 0 auto 0.5rem; position: static; transform: none; mix-blend-mode: multiply; }
  .hero-title { margin-top: 15vh; }
  .hero-title { font-size: 7vw; white-space: nowrap; }
  .hero-date { font-size: clamp(1rem, 4vw, 1.4rem); }
  .hero-cta { font-size: 0.75rem; padding: 0.75rem 1.5rem; }

  .nav-links { display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 96px; left: 0; right: 0;
    background: var(--darker); padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(240,234,216,0.08); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-top: 1px solid rgba(240,234,216,0.06); }
  .nav-links a { display: block; padding: 0.75rem 0; }
  .nav-toggle { display: flex; }

  .artists-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1rem; padding: 2rem 1.5rem; }
  .footer-brand { order: 1; }
  .social-links { order: 2; }
  .footer-email { order: 3; text-align: center; }
  .map-links { flex-direction: column; gap: 0.75rem; }
  .schedule-cols { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
}

/* Home page sticky footer */
.home-page .site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.home-page .hero {
  padding-bottom: 80px; /* prevent hero content from hiding behind footer */
}
