@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Space+Mono:wght@400;700&display=swap');

:root {
  --purple: #6B21A8;
  --purple-dark: #3B0764;
  --purple-mid: #7E22CE;
  --purple-light: #A855F7;
  --purple-glow: rgba(107, 33, 168, 0.4);
  --black: #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #F5F0FF;
  --white-dim: rgba(245, 240, 255, 0.6);
  --white-faint: rgba(245, 240, 255, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; }

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

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 33, 168, 0.2);
  transition: border-color 0.3s;
}

nav:hover { border-bottom-color: rgba(107, 33, 168, 0.5); }

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: filter 0.3s;
}
.nav-logo img:hover { filter: drop-shadow(0 0 12px var(--purple-light)); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--purple-light);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--purple-light); }
.nav-links a.active::after { width: 100%; }

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, rgba(107, 33, 168, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(59, 7, 100, 0.5) 0%, transparent 60%),
    var(--black);
}

.hero-vinyl {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 28%, #0a0a0a 28.5%, #111 45%, #0d0d0d 45.5%, #141414 100%);
  border: 1px solid rgba(255,255,255,0.04);
  opacity: 0.18;
  animation: spin 40s linear infinite;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; }

.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
  filter: drop-shadow(0 0 40px rgba(107, 33, 168, 0.6));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  animation: fadeUp 1s 0.15s ease both;
  color: var(--white);
}

.hero-title span {
  color: var(--purple-light);
  display: block;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 1.5rem;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  margin-top: 3rem;
  animation: fadeUp 1s 0.45s ease both;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--purple-mid);
  border-color: var(--purple-light);
  box-shadow: 0 0 30px var(--purple-glow);
}

.btn-outline {
  background: transparent;
  border-color: rgba(245, 240, 255, 0.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

/* ── SECTIONS ── */
section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}

/* ── FEATURED ARTISTS (homepage) ── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5px;
}

.artist-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-3);
  text-decoration: none;
}

.artist-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: grayscale(30%);
}

.artist-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.artist-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 7, 100, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.artist-card:hover .artist-card-overlay { opacity: 1; }

.artist-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.artist-card-genre {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-top: 0.2rem;
}

/* ── RELEASES ── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

.release-card {
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: transform 0.3s;
}

.release-card:hover { transform: translateY(-6px); }

.release-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--black-3);
  border: 1px solid rgba(107, 33, 168, 0.15);
  transition: box-shadow 0.3s;
}

.release-card:hover .release-cover {
  box-shadow: 0 8px 40px rgba(107, 33, 168, 0.4);
}

.release-info { padding: 1rem 0; }

.release-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.release-artist {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-top: 0.2rem;
}

.release-year {
  font-size: 0.75rem;
  color: var(--white-dim);
  margin-top: 0.15rem;
}

/* ── STREAMING LINKS ── */
.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.stream-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(245, 240, 255, 0.15);
  color: var(--white-dim);
  transition: all 0.2s;
}

.stream-link:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

/* ── FULL ROSTER (artists page) ── */
.roster-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-box {
  flex: 1;
  min-width: 200px;
  background: var(--black-3);
  border: 1px solid rgba(107, 33, 168, 0.3);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-box::placeholder { color: var(--white-faint); opacity: 0.4; }
.search-box:focus { border-color: var(--purple-light); }

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(107, 33, 168, 0.3);
  background: transparent;
  color: var(--white-dim);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.roster-card {
  background: var(--black-2);
  border: 1px solid rgba(107, 33, 168, 0.12);
  padding: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.roster-card:hover {
  border-color: rgba(107, 33, 168, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 7, 100, 0.4);
}

.roster-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin-bottom: 1.25rem;
}

.roster-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.roster-genre {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-top: 0.3rem;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white-dim);
  padding: 4rem;
  display: none;
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-logo-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.about-logo-wrap img {
  width: 80%;
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.about-text p {
  color: var(--white-dim);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(107, 33, 168, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--purple-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.3rem;
}

/* ── CONTACT FORM ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-info p {
  color: var(--white-dim);
  margin-bottom: 2rem;
}

.contact-platforms {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-platform {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
}

.contact-platform:hover { color: var(--purple-light); }

.contact-platform::before {
  content: '→';
  color: var(--purple-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.6rem;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--black-3);
  border: 1px solid rgba(107, 33, 168, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--purple-light);
}

.form-textarea { min-height: 160px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--purple);
  border: 1px solid var(--purple);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--purple-mid);
  box-shadow: 0 0 30px var(--purple-glow);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(107, 33, 168, 0.2);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo img { height: 40px; }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
}

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

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── DIVIDER ── */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(107, 33, 168, 0.4), transparent);
  margin: 0 3rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 90;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  section { padding: 4rem 1.5rem; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; }
}
