/* ============================================================
   KILLWATER — Band Website Styles
   Theme: Black & Gunsmoke Western Outlaw
   ============================================================ */

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

:root {
  --black:       #07060a;
  --deep:        #09090e;
  --dark:        #0e1018;
  --gold:        #8BAFC4;
  --gold-light:  #B0CEDE;
  --gold-dark:   #4A7890;
  --gold-dim:    #8BAFC433;
  --cream:       #D8E8F0;
  --cream-dim:   #D8E8F066;
  --rust:        #8B3A00;
  --text:        #B8C8D4;
  --text-dim:    #6A8494;
  --white:       #F0F4F8;
  --font-western: 'Rye', serif;
  --font-display: 'Playfair Display', serif;
  --font-type:   'Special Elite', cursive;
  --font-body:   'Oswald', sans-serif;
  --section-pad: 100px 24px;
  --radius:      4px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 20px var(--gold-dim), 0 0 40px var(--gold-dim);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 20px var(--gold-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--text-dim);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.78rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(7, 6, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
  transition: background 0.3s;
}

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

.nav-logo {
  font-family: var(--font-western);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-shadow: 0 0 18px var(--gold-dim);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.78rem;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: 0 0 16px var(--gold-dim);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ============================================================
   TATTER EDGES
   ============================================================ */
/* Shared tatter style for top/bottom of sections */
.tatter-top,
.tatter-bottom,
.hero-scroll-hint ~ .tatter-bottom,
.footer-tatter {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

/* Jagged/torn bottom edge using SVG clip */
.tatter-bottom::after,
.tatter-top::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
}

/* We'll implement tattering via clip-path on sections */
.tatter-bottom {
  margin-top: 60px;
  background: transparent;
  clip-path: none;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Photos/JonKillwater_MainPageBackground.png');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
/* Dark overlay to keep text readable */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,6,10,0.55) 0%, rgba(7,6,10,0.3) 40%, rgba(7,6,10,0.65) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(7,6,10,0.7) 100%);
}
/* Subtle grain texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.star-badge {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold);
  margin-bottom: 16px;
  animation: pulse-gold 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-type);
  font-size: 0.95rem;
  color: var(--gold-dark);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-western);
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-shadow:
    0 0 40px #8BAFC455,
    0 0 80px #8BAFC422,
    4px 4px 0 #0a1e2c,
    6px 6px 0 #050a10;
  margin-bottom: 24px;
  position: relative;
}
/* Distressed look on title */
.hero-title::before {
  content: 'KILLWATER';
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px #8BAFC418;
  transform: translate(2px, 2px);
}

.hero-tagline {
  font-family: var(--font-type);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--cream);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}
.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.divider-icon {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-type);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}

/* Torn bottom of hero */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -2%; width: 104%;
  height: 70px;
  background: var(--deep);
  clip-path: polygon(
    0% 80%, 2% 60%, 4% 85%, 6% 50%, 8% 75%,
    10% 40%, 12% 70%, 14% 55%, 16% 80%, 18% 45%,
    20% 72%, 22% 38%, 24% 65%, 26% 50%, 28% 78%,
    30% 42%, 32% 68%, 34% 52%, 36% 80%, 38% 44%,
    40% 70%, 42% 35%, 44% 62%, 46% 48%, 48% 76%,
    50% 40%, 52% 68%, 54% 52%, 56% 82%, 58% 45%,
    60% 72%, 62% 38%, 64% 65%, 66% 50%, 68% 80%,
    70% 42%, 72% 70%, 74% 55%, 76% 78%, 78% 40%,
    80% 68%, 82% 52%, 84% 80%, 86% 45%, 88% 72%,
    90% 38%, 92% 65%, 94% 50%, 96% 80%, 98% 42%,
    100% 60%, 100% 100%, 0% 100%
  );
  z-index: 3;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
  position: relative;
  padding: var(--section-pad);
}

#music, #about {
  background: var(--deep);
}

#merch {
  background: var(--black);
}

#events {
  background: var(--black);
  position: relative;
}
#events .tatter-top,
#events .section-inner {
  position: relative;
  z-index: 2;
}
#events::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Photos/Rock concert all 022.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  opacity: 0.12;
  z-index: 0;
}

/* Torn top edge on sections */
#music::before, #merch::before, #events::before, #about::before {
  content: '';
  position: absolute;
  top: 0; left: -2%; width: 104%;
  height: 55px;
  z-index: 2;
}
#music::before {
  background: var(--black);
  clip-path: polygon(
    0% 40%, 3% 70%, 6% 30%, 9% 65%, 12% 25%,
    15% 60%, 18% 35%, 21% 70%, 24% 28%, 27% 58%,
    30% 22%, 33% 55%, 36% 38%, 39% 70%, 42% 28%,
    45% 60%, 48% 32%, 51% 65%, 54% 25%, 57% 55%,
    60% 38%, 63% 70%, 66% 30%, 69% 62%, 72% 22%,
    75% 55%, 78% 38%, 81% 65%, 84% 28%, 87% 58%,
    90% 32%, 93% 65%, 96% 40%, 99% 68%, 100% 50%,
    100% 0%, 0% 0%
  );
}
#merch::before {
  background: var(--deep);
  clip-path: polygon(
    0% 55%, 2% 30%, 5% 65%, 8% 28%, 11% 58%,
    14% 35%, 17% 68%, 20% 25%, 23% 55%, 26% 40%,
    29% 72%, 32% 30%, 35% 60%, 38% 38%, 41% 68%,
    44% 28%, 47% 55%, 50% 35%, 53% 65%, 56% 28%,
    59% 58%, 62% 38%, 65% 70%, 68% 30%, 71% 60%,
    74% 22%, 77% 55%, 80% 40%, 83% 68%, 86% 32%,
    89% 62%, 92% 30%, 95% 58%, 98% 40%, 100% 55%,
    100% 0%, 0% 0%
  );
}
#events::before {
  background: var(--black);
  clip-path: polygon(
    0% 48%, 3% 22%, 6% 58%, 9% 32%, 12% 65%,
    15% 28%, 18% 55%, 21% 38%, 24% 68%, 27% 25%,
    30% 58%, 33% 35%, 36% 65%, 39% 28%, 42% 52%,
    45% 38%, 48% 72%, 51% 30%, 54% 62%, 57% 28%,
    60% 55%, 63% 40%, 66% 68%, 69% 25%, 72% 58%,
    75% 35%, 78% 65%, 81% 30%, 84% 58%, 87% 22%,
    90% 55%, 93% 38%, 96% 65%, 99% 42%, 100% 58%,
    100% 0%, 0% 0%
  );
}
#about::before {
  background: var(--black);
  clip-path: polygon(
    0% 50%, 2% 28%, 5% 62%, 8% 35%, 11% 68%,
    14% 22%, 17% 55%, 20% 38%, 23% 70%, 26% 30%,
    29% 60%, 32% 25%, 35% 55%, 38% 40%, 41% 72%,
    44% 28%, 47% 58%, 50% 35%, 53% 65%, 56% 30%,
    59% 62%, 62% 38%, 65% 68%, 68% 25%, 71% 55%,
    74% 38%, 77% 68%, 80% 28%, 83% 60%, 86% 35%,
    89% 65%, 92% 30%, 95% 58%, 98% 40%, 100% 55%,
    100% 0%, 0% 0%
  );
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.star-row {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-western);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 3px 3px 0 #080f18, 0 0 30px #8BAFC433;
  margin-bottom: 12px;
}

.section-sub {
  font-family: var(--font-type);
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
}

.sub-heading {
  font-family: var(--font-type);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 24px;
}

/* ============================================================
   MUSIC SECTION
   ============================================================ */
.albums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}

.album-card {
  background: #0f0c04;
  border: 1px solid #8BAFC422;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.album-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 40px #00000080, 0 0 20px #8BAFC418;
}
.album-card.featured {
  grid-column: 1;
  grid-row: 1;
}

.album-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.album-art-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-placeholder-icon {
  font-size: 3rem;
  color: var(--gold-dark);
  opacity: 0.4;
}
.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.album-card:hover .album-overlay { opacity: 1; }
.play-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-transform: uppercase;
}
.play-btn:hover { background: var(--gold-light); }

.new-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 2px;
}

.album-info {
  padding: 20px;
}
.album-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.album-year {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.album-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.5;
}
.album-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Streaming platform pill links (album card + track list) */
.stream-platforms {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.stream-link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid #8BAFC430;
  border-radius: 2px;
  color: var(--text-dim);
  transition: all 0.2s;
  white-space: nowrap;
}
.stream-link:hover          { color: var(--cream); border-color: var(--cream); }
.stream-link.spotify:hover  { color: #1DB954; border-color: #1DB954; }
.stream-link.apple:hover    { color: #fc3c44; border-color: #fc3c44; }
.stream-link.ytmusic:hover  { color: #FF0000; border-color: #FF0000; }

/* Track-level stream links */
.track-links {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.track-stream {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid #8BAFC428;
  border-radius: 2px;
  color: var(--text-dim);
  transition: all 0.2s;
  white-space: nowrap;
}
.track-stream:hover          { color: var(--cream); border-color: var(--cream); }
.track-stream.spotify:hover  { color: #1DB954; border-color: #1DB954; }
.track-stream.apple:hover    { color: #fc3c44; border-color: #fc3c44; }
.track-stream.ytmusic:hover  { color: #FF0000; border-color: #FF0000; }

/* Track list */
.single-tracks {
  background: #0d0a03;
  border: 1px solid #8BAFC418;
  border-radius: 6px;
  padding: 32px;
}

.track-list { display: flex; flex-direction: column; }

.track-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #8BAFC414;
  transition: background 0.2s;
}
.track-item:last-child { border-bottom: none; }
.track-item:hover { color: var(--cream); }

.track-num {
  font-family: var(--font-type);
  font-size: 0.8rem;
  color: var(--gold-dark);
  width: 28px;
  flex-shrink: 0;
}
.track-name {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream-dim);
}
.track-item:hover .track-name { color: var(--cream); }
.track-duration {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.track-buy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.track-buy:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   MERCH SECTION
   ============================================================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.merch-card {
  background: #0d0b04;
  border: 1px solid #8BAFC41A;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.merch-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 40px #00000080, 0 0 20px #8BAFC414;
}

.merch-img {
  position: relative;
  aspect-ratio: 4/3;
}
.merch-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-icon { font-size: 3.5rem; filter: grayscale(0.3); }

.merch-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.merch-badge.limited {
  background: var(--rust);
  color: var(--white);
}

.merch-info {
  padding: 18px;
}
.merch-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.merch-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 12px;
}
.merch-sizes {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.merch-sizes span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid #8BAFC422;
  padding: 3px 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.merch-sizes span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.merch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.merch-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.merch-cta-strip {
  text-align: center;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 18px;
  background: #8BAFC408;
}
.merch-cta-strip p {
  font-family: var(--font-type);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-image: url('Photos/30907_119797408056207_6877243_n.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,6,10,0.7) 0%,
    rgba(7,6,10,0.4) 50%,
    rgba(7,6,10,0.7) 100%
  );
}
.photo-strip-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-strip-text {
  font-family: var(--font-western);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold);
  letter-spacing: 0.25em;
  text-align: center;
  text-shadow: 0 0 30px #8BAFC466, 2px 2px 0 #080f18;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 56px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid #8BAFC414;
  border-radius: 4px;
  background: #0d0b04;
  transition: border-color 0.2s, background 0.2s;
}
.event-item:hover {
  border-color: var(--gold-dark);
  background: #120f06;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  width: 68px;
  height: 68px;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 6px;
}
.event-month {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
}
.event-day {
  font-family: var(--font-western);
  font-size: 1.8rem;
  line-height: 1;
}

.event-details { flex: 1; }
.event-venue {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.event-location {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.event-note {
  font-family: var(--font-type);
  font-size: 0.78rem;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

.event-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.event-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.event-status.on-sale { background: #1a3a1a; color: #6fcf6f; }
.event-status.sold-out { background: #3a1a1a; color: #cf6f6f; }
.event-status.coming-soon { background: #1a2a3a; color: #6fa8cf; }

/* Signup */
.events-signup {
  text-align: center;
  padding: 48px;
  border: 1px dashed #8BAFC433;
  border-radius: 6px;
  background: #8BAFC405;
}
.events-signup p {
  font-family: var(--font-type);
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.signup-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.signup-form input {
  background: #0a0800;
  border: 1px solid #8BAFC444;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 20px;
  border-radius: var(--radius);
  outline: none;
  width: 280px;
  transition: border-color 0.2s;
}
.signup-form input:focus { border-color: var(--gold); }
.signup-form input::placeholder { color: var(--text-dim); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}

.about-portrait-col {
  position: sticky;
  top: 90px;
}
.about-portrait-wrap {
  position: relative;
}
.about-portrait-img {
  width: 100%;
  border-radius: 4px;
  display: block;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 0 40px #00000080, 0 0 20px #8BAFC422;
  filter: contrast(1.05) brightness(0.95);
}
/* Distressed corner overlay */
.about-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  pointer-events: none;
}
.about-portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(7,6,10,0.5) 100%
  );
  border-radius: 4px;
  pointer-events: none;
}
.portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  font-family: var(--font-type);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-align: center;
  z-index: 2;
}

/* Jon's real photo avatar */
.avatar-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold-dark);
  display: block;
  margin: 0 auto;
  filter: grayscale(0.2) contrast(1.1);
  box-shadow: 0 0 12px #8BAFC433;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-lead {
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  color: var(--cream) !important;
  font-style: italic;
}

.about-quote {
  position: relative;
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 24px;
  margin-top: 32px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-dark);
  line-height: 0;
  vertical-align: middle;
  margin-right: 4px;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  display: inline;
}

.band-members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.band-member {
  text-align: center;
}
.member-avatar { margin-bottom: 10px; }
.avatar-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1209, #2d2008);
  border: 2px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: var(--font-western);
  font-size: 1.1rem;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-dim);
}
.member-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 2px;
}
.member-role {
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  background: #8BAFC406;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-western);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 16px var(--gold-dim);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Social */
.social-strip {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #8BAFC418;
}
.social-label {
  font-family: var(--font-type);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.social-links span { color: var(--gold-dark); font-size: 0.6rem; }
.social-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #030204;
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
  border-top: 1px solid #8BAFC418;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0; left: -2%; width: 104%;
  height: 45px;
  background: var(--deep);
  clip-path: polygon(
    0% 60%, 3% 28%, 6% 55%, 9% 35%, 12% 65%,
    15% 25%, 18% 52%, 21% 38%, 24% 68%, 27% 28%,
    30% 55%, 33% 35%, 36% 65%, 39% 22%, 42% 52%,
    45% 38%, 48% 70%, 51% 28%, 54% 58%, 57% 35%,
    60% 65%, 63% 25%, 66% 55%, 69% 38%, 72% 68%,
    75% 28%, 78% 55%, 81% 38%, 84% 65%, 87% 28%,
    90% 58%, 93% 32%, 96% 60%, 99% 40%, 100% 55%,
    100% 0%, 0% 0%
  );
}

.footer-inner { position: relative; z-index: 1; }

.footer-logo {
  font-family: var(--font-western);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-shadow: 0 0 30px #8BAFC444;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-type);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}
.footer-divider {
  color: var(--gold-dark);
  letter-spacing: 0.5em;
  margin-bottom: 24px;
  font-size: 0.7rem;
}
.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: #1a2a34;
  letter-spacing: 0.12em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse-gold {
  0%, 100% { text-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold-dim); }
  50% { text-shadow: 0 0 30px var(--gold), 0 0 60px var(--gold), 0 0 80px var(--gold-dim); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Fade in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .albums-grid {
    grid-template-columns: 1fr 1fr;
  }
  .album-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .album-card.featured .album-art { aspect-ratio: auto; height: 280px; }

  .merch-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 260px 1fr;
    gap: 36px;
  }
  .about-portrait-col { position: static; }
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px 20px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(7, 6, 10, 0.98);
    padding: 20px 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--gold-dim);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-links .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }
  #navbar { position: fixed; }

  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }

  .albums-grid {
    grid-template-columns: 1fr;
  }
  .album-card.featured {
    grid-column: auto;
    display: block;
  }

  .merch-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-item {
    flex-wrap: wrap;
    gap: 16px;
  }
  .event-action {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait-col { position: static; }
  .about-portrait-img { max-height: 420px; object-fit: cover; object-position: center top; }
  .band-members {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .merch-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .albums-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
