:root {
  --bg: #A0B2BC;
  --bg-alt: transparent;
  --text: #282c2e;
  --muted: #a6a6b2;
  --primary: #fff;
  --primary-ink: #0a1b14;
  --ghost: rgba(233, 233, 238, 0.12);
  --maxw: 1100px;
  --heading: #484F53;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: #2c3136;
  text-decoration: underline;
}

a:hover {
  color: #2c3136;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px; 
}
.nav--center {
  justify-content: center;
}
.logo {
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.6px;
  color: var(--heading);
  text-decoration: none;
}
.nav a { color: var(--heading); text-decoration: none; font-style: italic; }
.nav-links { display: flex; gap: 16px; align-items: center; }

.icon-link { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  width: 32px; 
  height: 32px; 
  border-radius: 6px; 
  color: var(--heading);
}
.icon-link:hover { background: rgba(72,79,83,0.12); }
.icon-link i { 
  color: currentColor; 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: var(--ghost);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: var(--primary-ink); border-color: transparent; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.18); }
.btn--sm { padding: 8px 12px; font-size: 14px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 64px 20px; }
.container--hero { padding: calc(25vh + 150px) max(50px, 20px) 45vh; text-align: center; }
.container--center { text-align: center; }
.container--footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 32px 20px; }

.headline { font-size: clamp(36px, 6vw, 72px); line-height: 1.05; margin: 0 0 12px; font-style: italic; font-weight: 400; color: var(--heading); }
.section h2 { font-style: italic; font-weight: 400; color: var(--heading); }
.tagline { margin: 0 0 24px; color: var(--text); font-size: clamp(16px, 2vw, 20px); }
.cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; }

.section { background: transparent; }
.section--alt { background: transparent; }
.section h2 { font-size: clamp(24px, 3.3vw, 36px); margin: 0 0 12px; }
.section p { margin: 0 0 16px; color: var(--text); }
.feature-list { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--text); }

.section .streaming-links { 
  color: var(--text); 
}
.streaming-links a { 
  margin: 0 4px; 
}

.stripe-container { margin-top: 40px; text-align: center; }

.media { display: grid; }
.media__embed { position: relative; width: 100%; padding-top: 56.25%; margin-bottom: 24px; border-radius: 12px; overflow: hidden; background: transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.media__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media__caption { margin-top: 8px; font-size: 14px; color: var(--text); }

/* Video Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(var(--video-columns, 1), 1fr);
  gap: 24px;
  margin-top: 24px;
}

.video-item {
  /* Container for each video - styles can be added here if needed */
  width: 100%;
}

/* Responsive: on mobile, always single column */
@media (max-width: 640px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

.shows-list { margin-top: 24px; }
.show-item { 
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px; 
  background: rgba(255, 255, 255, 0.2); 
  border-radius: 12px; 
  margin-bottom: 12px;
}
.show-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.show-date-time { 
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.show-date { 
  font-weight: 400; 
  font-size: 14px;
}
.show-time { 
  font-weight: 400; 
  font-size: 12px;
  color: var(--text);
  opacity: 0.8;
}
.show-venue { 
  flex: 1;
  font-weight: 400;
  font-size: 16px;
}
.show-details { 
  padding: 8px 0;
  font-size: 14px; 
  color: var(--text); 
  line-height: 1.4;
}
.show-location { 
  font-size: 12px; 
  color: var(--text);
}
.loading { 
  text-align: center; 
  color: var(--text); 
  font-style: italic; 
  padding: 20px;
}
.no-shows { 
  text-align: center; 
  color: var(--text); 
  font-style: italic; 
  padding: 20px;
}
.band-photo {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: grid;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border-radius: 12px; 
}

.subscribe { display: grid; grid-template-columns: 1fr auto; gap: 12px; max-width: 520px; margin: 16px auto 8px; }
.input { width: 100%; padding: 14px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.12); color: var(--text); }
.input::placeholder { color: #8f8fa1; }

.site-footer { border-top: none; background: transparent; color: white; opacity: .5}
.socials { display: flex; gap: 12px; }
.socials a { color: var(--text); text-decoration: none; }
.socials a:hover { color: var(--text); }


/* Parallax */
.parallax {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  overflow: visible;
  background: none;
}
.parallax > .container--hero { position: relative; z-index: 2; }
.title-sequence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.title-line {
  width: min(300px, calc(100vw - 100px));
  max-width: 300px;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.title-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.release-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.release-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.release-date {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--heading);
  margin: 0;
  letter-spacing: 0.3px;
}

.presave-btn {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-style: italic;
}

.release-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: .5;
}

/* Discography Section */
.discography-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}

.discography-streaming {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 26px;
  margin-bottom: 12px;
}

.discography-streaming a {
  color: var(--heading);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.discography-streaming a:hover {
  opacity: 0.7;
}

.discography-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .discography-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.album-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.album-card:hover {
  transform: translateY(-4px);
}

.album-card__artwork {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  transition: box-shadow 0.25s ease;
}

.album-card:hover .album-card__artwork {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.album-card__artwork img {
  width: 100%;
  height: auto;
  display: block;
}

.album-card__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--heading);
  margin: 0 0 8px;
  line-height: 1.3;
}

.album-card__date {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  color: var(--text);
  margin: 0;
  opacity: 0.8;
}

/* Share button feedback */
.share-feedback {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(72, 79, 83, 0.95);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 100;
}

.share-feedback.visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax__img {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100vh + 400px); /* Extra height for parallax movement */
  object-fit: cover;
  object-position: center top; /* Start showing from top of image */
  will-change: transform;
  z-index: -1;
  pointer-events: none;
}
/* overlay removed per request */

/* Small screens */
@media (max-width: 640px) {
  .container { padding: 48px 16px; }
  .container--hero { padding: calc(20vh + 150px) max(50px, 16px) 36vh; }
  .nav { padding: 12px 16px; }
  .discography-streaming { font-size: 20px; gap: 5px; }
}



