:root {
  --bg: #0a0a0a;
  --panel: rgba(10, 10, 10, 0.58);
  --panel-strong: rgba(8, 8, 8, 0.78);
  --text: #f5f5f5;
  --muted: #cfcfcf;
  --accent: #d1a954;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.72)),
    radial-gradient(circle at top center, rgba(209,169,84,0.18), transparent 38%),
    url('images/band.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -3;
  transform: scale(1.03);
  will-change: transform;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.25) 35%, rgba(10,10,10,0.95) 100%);
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 22px 0;
}

.topbar.scrolled {
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.28);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand span { color: var(--accent); }

.nav {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 16px 80px;
}

.hero-panel {
  width: min(100%, 1100px);
  padding: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(to bottom right, var(--panel), rgba(0,0,0,0.22));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24rem;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.84rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
  font-weight: 700;
}
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: white;
}

.hero-meta {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.meta-card {
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.meta-text {
  font-size: 0.96rem;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22rem;
  opacity: 0.72;
}

.content-wrap {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.85) 8%, #0a0a0a 18%);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 90px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section p.lead {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

.shows-grid,
.bio-grid,
.photo-grid {
  display: grid;
  gap: 18px;
}

.shows-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
.photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--panel-strong);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(209,169,84,0.45);
}

.date {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.band-strip {
  margin-top: 20px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.bio-role {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.photo-card:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

.video-card,
.contact-card {
  max-width: 900px;
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-placeholder {
  min-height: 340px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
    radial-gradient(circle at center, rgba(209,169,84,0.18), transparent 42%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.video-placeholder strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.03);
}

.video-item video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.footer {
  padding: 40px 16px 70px;
  color: rgba(255,255,255,0.72);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-meta,
  .shows-grid,
  .bio-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel { padding: 28px; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 12px; }
}

@media (max-width: 720px) {
  .topbar { padding: 14px 0; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { gap: 12px 16px; font-size: 0.8rem; }
  .hero { padding-top: 150px; }
  .btn { width: 100%; }
  .scroll-cue { display: none; }
  .site-bg { background-attachment: scroll; }
}
/* --- MOBILE POLISH FIXES --- */
@media (max-width: 720px) {

  html, body {
    overflow-x: hidden;
  }

  /* Fix hero spacing */
  .hero {
    padding: 130px 16px 60px;
    min-height: auto;
  }

  .hero-panel {
    padding: 22px;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  /* Stack buttons nicely */
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  /* Better spacing between sections */
  .section {
    padding: 70px 0;
  }

  /* Cards feel tighter on mobile */
  .card {
    padding: 18px;
    border-radius: 18px;
  }

  /* Fix photo height */
  .photo-card img {
    height: 200px;
  }

  /* Improve nav readability */
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }
  @media (max-width: 720px) {

  .nav {
    overflow-x: auto;
  }

  .nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

}
}
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(10,10,10,0.7);
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(6px);
  z-index: 100;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}
 
.nav-links a.active {
  color: var(--accent);
}