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

/* Variables */
:root {
  --bg: #000;
  --text: #fff;
  --accent-red: #e81f27;
  --accent-gold: #d2803a;
  --text-muted: #aaa;
  --max-width: 980px;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Jost', 'Futura', 'Century Gothic', sans-serif;
  --font-small: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Base */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: var(--accent-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text);
}
.site-logo:hover { color: var(--accent-gold); }
.site-nav { display: flex; gap: 2rem; }
.nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--accent-red);
  position: relative;
}
.nav-link:hover { color: var(--accent-gold); }
.nav-link.active { color: var(--accent-gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.site-nav:hover .nav-link.active { color: var(--accent-red); }
.site-nav:hover .nav-link.active::after { width: 0; }
.site-nav:hover .nav-link.active:hover { color: var(--accent-gold); }
.site-nav:hover .nav-link.active:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero (Home) */
.hero {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5%;
  position: relative;
}
.hero-overlay {
  text-align: center;
  z-index: 1;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: #000;
  margin-bottom: 0.3rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.11;
  color: #000;
}
.hero-description-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}
.hero-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

/* About page */
.page-about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.about-box {
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(210, 128, 54, 0.08), rgba(210, 128, 54, 0.03));
}
.about-box h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.125;
  margin-bottom: 2rem;
}
.about-content p {
  font-family: var(--font-body);
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
}

/* Concerts */
.page-concerts {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.concerts-banner {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.concerts-banner img {
  width: 100%;
  object-fit: cover;
  max-height: 350px;
}
.concerts-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concerts-banner-overlay h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.125;
  color: var(--text);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.8rem 2.5rem;
}
.concerts-list .concert {
  padding: 1.2rem 0;
}
.concert-header {
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.25;
}
.concert-date {
  font-weight: 400;
  color: var(--accent-gold);
}
.concert-venue {
  color: var(--text);
  margin-left: 0.3rem;
}
.concert-performers {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.25;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.2rem;
}
.concert-venue a {
  color: var(--text);
}

/* Recordings */
.page-recordings {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.page-recordings h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.125;
  margin-bottom: 2rem;
  text-align: center;
}
.recordings-list {
  display: flex;
  flex-direction: column;
}
.recording-row {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  color: var(--text);
}
.recording-row:hover { color: var(--text); }
.recording-row--reverse {
  flex-direction: row-reverse;
}
.recording-image {
  flex: 0 0 380px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.recording-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.recording-row:hover .recording-image img { transform: scale(1.03); }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.recording-row:hover .play-overlay { background: rgba(0, 0, 0, 0.4); }
.recording-info {
  flex: 1;
}
.recording-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.08;
}
.recording-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  margin-top: 0.1rem;
  line-height: 1.08;
}
.recording-performers {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.55;
}
.recording-venue {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}
.recording-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

/* Photos */
.page-photos {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.page-photos h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.5rem;
}
.photo-item {
  overflow: hidden;
  cursor: pointer;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo-item:hover img { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  text-align: center;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-footer a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
}
.site-footer a:hover { color: var(--accent-gold); }
.site-footer p {
  font-family: var(--font-small);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav.open { display: flex; }
  .hero {
    aspect-ratio: auto;
    height: 60vh;
    padding-top: 15%;
  }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 20px; }
  .hero-description { font-size: 18px; }
  .about-box { padding: 1.5rem; }
  .about-box h1 { font-size: 34px; }
  .about-content p { font-size: 18px; }
  .recording-row, .recording-row--reverse {
    flex-direction: column;
  }
  .recording-image { flex: 0 0 auto; width: 100%; }
  .recording-info h3 { font-size: 26px; }
  .recording-title { font-size: 26px; }
  .recording-performers { font-size: 18px; }
  .recording-venue { font-size: 18px; }
  .concert-header { font-size: 1.3rem; }
  .concert-performers { font-size: 18px; }
  .nav-link { font-size: 18px; }
  .site-logo { font-size: 22px; }
  .site-footer a { font-size: 18px; }
  .site-footer p { font-size: 15px; }
  .photo-gallery { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
