@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Nunito:ital,wght@0,400;0,700;0,900;1,700&family=DM+Mono:wght@400;500&display=swap");
:root {
  --purple: #B47CD3;
  --purple-light: #B47CD3;
  --purple-pale: #784892;
  --purple-mid: #c4b5fd;
  --gold: #01d7bd;
  --gold-light: #faeaac;
  --coral: #b47cd361;
  --coral-light: #fff7ed;
  --teal: #0d9488;
  --teal-light: #04d6bf;
  --bg: #000000;
  --bg2: #b47cd369;
  --bg3: #816f93;
  --text: #ffffff;
  --text-contrast: #111111;
  --muted: #B47CD3;
  --border: #B47CD3;
  --small: 0.8rem;
  --sec-pad: 6rem 0;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
  padding: 0 12px;
}

.hero, .ep-section, .merch-section, .nav-container, .newsletter-inner, .merch-grid, .lyric-video {
  max-width: 900px;
  margin: 0 auto;
}

.lyric-video {
  text-align: center;
}

/* === NAV === */
nav {
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-logo {
  font-family: "Righteous", cursive;
  font-size: 1.8rem;
  color: var(--purple);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav-links a {
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  background: var(--purple) !important;
  color: white !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 100px !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3) !important;
}

.nav-cta:hover {
  background: var(--purple-pale) !important;
  transform: translateY(-1px) !important;
}

/* === HERO === */
.hero {
  align-items: center;
  position: relative;
  padding: var(--sec-pad);
  background: var(--bg);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.hero-content {
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  background: var(--teal-light);
  border: 1.5px solid rgba(13, 148, 136, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.5s ease both;
}

.hero-title {
  font-family: "Righteous", sans-serif;
  font-size: clamp(5rem, 13vw, 8rem);
  line-height: 0.9;
  color: var(--text);
  animation: fadeUp 0.5s 0.1s ease both;
  letter-spacing: -1px;
}

.hero-title .accent {
  display: block;
  color: var(--purple);
  position: relative;
}

.hero-title .accent::after {
  content: "";
  display: block;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M0,4 C25,0 50,8 75,4 C100,0 125,8 150,4 C175,0 200,8 200,4' stroke='%23F59E0B' stroke-width='3' fill='none'/%3E%3C/svg%3E") repeat-x center;
  background-size: 200px 8px;
  margin-top: 4px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
  max-width: 500px;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}

.btn-primary {
  background: var(--purple);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--purple);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
/* === MARQUEE === */
.marquee-band {
  background: var(--purple);
  color: white;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-track .dot {
  color: var(--gold);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* === EP SECTION === */
.ep-section {
  padding: var(--sec-pad);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.ep-art-img img {
  max-width: 100%;
}

.section-label {
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Righteous", cursive;
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.ep-tracks {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ep-tracks li {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}

.ep-tracks li:hover {
  border-color: var(--purple-light);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.12);
}

.track-num {
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  color: var(--muted);
}

.track-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--small);
  transition: all 0.2s;
}

.ep-tracks li:hover .track-play {
  background: var(--purple);
  color: white;
}

.track-info {
  flex: 1;
}

.track-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.track-detail {
  font-size: var(--small);
  color: var(--muted);
  margin-top: 0.2rem;
}

.track-duration {
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  color: var(--muted);
}

.streaming-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.stream-btn {
  background: white;
  color: var(--purple);
  border: 1.5px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}

.stream-btn:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
}

/* === SHOWS === */
.shows-section {
  padding: var(--sec-pad);
}

.shows-inner {
  max-width: 900px;
  margin: 0 auto;
}

.shows-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.show-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.2s;
}

.show-card:hover {
  border-color: var(--purple-light);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.show-date {
  text-align: center;
  flex-basis: 50px;
}

.show-month {
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.show-day {
  font-family: "Righteous", cursive;
  font-size: 2.5rem;
  color: var(--purple);
  line-height: 1;
}

.show-info {
  flex: 1;
}

.show-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-contrast);
  margin-bottom: 0.3rem;
}

.show-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

.show-tag {
  background: var(--purple-pale);
  color: var(--purple);
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.show-tag a {
  color: var(--purple);
}

.free-tag {
  background: var(--teal-light);
  color: var(--teal);
}

.private-tag {
  background: var(--gold-light);
  color: var(--gold);
}

/* === BAND === */
.band-section {
  padding: var(--sec-pad);
  background: var(--bg2);
  text-align: center;
}
.band-section img {
  max-width: 100%;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2.5rem auto 6rem;
}

.band-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.band-card img {
  max-width: 100%;
  border-radius: 100%;
}

.band-card:hover {
  border-color: var(--purple-light);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.band-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-pale) 0%, var(--purple-light) 100%);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.band-member-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-contrast);
  margin-bottom: 0.3rem;
}

.band-member-role {
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === QUOTE === */
.quote-section {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--purple) 0%, var(--coral) 100%);
  text-align: center;
  color: white;
}

.quote-stars {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.quote-text {
  font-size: 1.4rem;
  font-family: "Righteous", sans-serif;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1rem;
  font-style: italic;
}

.quote-author {
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* === MERCH === */
.merch-section {
  padding: var(--sec-pad);
  background: var(--bg);
}
.merch-section a p {
  color: var(--text-contrast);
  margin-bottom: 1em;
}

.merch-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.merch-grid a {
  text-decoration: none;
}

.merch-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.merch-card img {
  max-width: 100%;
}

.merch-card:hover {
  border-color: var(--purple-light);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.merch-card-main {
  grid-row: span 2;
}

.merch-card-main .merch-photo-placeholder {
  height: 100%;
}

.merch-info {
  padding: 1.5rem;
}

.merch-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-contrast);
  margin-bottom: 0.6rem;
}
.merch-title a {
  text-decoration: none;
}

.merch-price {
  font-family: "Righteous", cursive;
  font-size: 1.5rem;
  color: var(--purple);
}
.merch-price a {
  text-decoration: none;
}

.merch-shop-btn {
  background: var(--purple);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}

.merch-shop-btn:hover {
  background: #6D28D9;
}

/* === NEWSLETTER === */
.newsletter-section {
  padding: 5rem 0;
}

.newsletter-inner {
  text-align: center;
}

.newsletter-inner h2 {
  font-family: "Righteous", sans-serif;
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.newsletter-inner p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  max-width: 320px;
  padding: 0.9rem 1.3rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--purple);
}

.newsletter-form button {
  background: var(--purple);
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 100px;
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.newsletter-form button:hover {
  background: #6D28D9;
  transform: translateY(-1px);
}

/* === FOOTER === */
footer {
  background: var(--bg);
  color: white;
  padding: 3rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--purple);
}

.footer-logo {
  font-family: "Righteous", cursive;
  font-size: 1.8rem;
  color: var(--purple-light);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: "DM Mono", monospace;
  font-size: var(--small);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--purple);
}

.footer-social {
  display: flex;
  gap: var(--small);
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}

.social-btn:hover {
  background: var(--purple-pale);
  border-color: var(--purple-light);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 1px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* === PAGE TEMPLATE STYLES === */
.page-container {
  padding: 4rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.page-title {
  font-family: "Righteous", sans-serif;
  font-size: 4rem;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.page-content {
  line-height: 1.8;
  color: var(--text);
}

.page-content h2 {
  font-family: "Righteous", cursive;
  font-size: 2rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.page-content h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin: 1.5rem 0 0.8rem;
}

.page-content p {
  margin-bottom: 1.2rem;
}

.page-content a {
  color: var(--purple);
  text-decoration: underline;
}

.page-content a:hover {
  color: var(--coral);
}

.page-content ul, .page-content ol {
  margin: 1rem 0 1.5rem 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

@media all and (max-width: 768px) {
  nav {
    padding: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero {
    padding: 5rem 1.5rem 2rem;
    min-height: auto;
  }
  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 3rem;
  }
  .vinyl-record {
    width: 240px;
    height: 240px;
  }
  .ep-section {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }
  .merch-grid {
    grid-template-columns: 1fr;
  }
  .merch-card-main {
    grid-row: auto;
  }
  .shows-section, .band-section, .merch-section {
    padding: 4rem 1.5rem;
  }
  .page-container {
    padding: 6rem 1.5rem 3rem;
  }
}