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

:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --text: #f2f2f2;
  --text-muted: #a8a8a8;
  --accent: #c9a227;
  --accent-hover: #e0b83a;
  --border: #2a2a2a;
  --radius: 10px;
  --max-width: 1100px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.logo-img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.35));
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/header.png') center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.35) 40%,
    rgba(10,10,10,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
}

.hero-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.5));
}

.tagline {
  font-size: 1.15rem;
  color: #e8e8e8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.tagline-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #111;
}

.btn.primary:hover {
  background: var(--accent-hover);
  color: #111;
}

.btn.secondary {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(0,0,0,0.25);
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.small {
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn.small:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.large {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.section-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;
  border-radius: 4px;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
}

/* Featured release */
.featured-release {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(80, 40, 200, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    var(--bg);
}

.release-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.release-art {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.release-art img {
  width: 100%;
  height: auto;
  display: block;
}

.release-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.release-copy p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.release-copy strong {
  color: var(--text);
}

.track-art.art-cover {
  padding: 0;
  overflow: hidden;
}

.track-art.art-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card {
  border-color: rgba(201, 162, 39, 0.45);
}

.video-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  background: #000;
}

.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

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

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.35rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-text strong {
  color: var(--text);
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* Music */
.spotify-embed {
  margin: 0 0 2.25rem;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.spotify-embed iframe {
  display: block;
  vertical-align: top;
}

.music-cta {
  margin-bottom: 2.5rem;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.35rem;
  margin-bottom: 1.75rem;
}

.track-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.track-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.track-art {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1a1a1a, #2c2c2c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
  letter-spacing: 0.03em;
}

.track-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.track-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.music-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

code {
  background: #222;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .gallery-logo {
  object-fit: contain;
  padding: 1.5rem;
  background: #000;
}

.gallery-item.placeholder {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-box {
  max-width: 520px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-box .btn {
  margin-bottom: 1.75rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
}

.social-links a {
  font-weight: 500;
  font-size: 1rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
  opacity: 0.9;
}

.footer-sub {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-logo {
    height: 70px;
  }

  .section {
    padding: 3.75rem 0;
  }
}

@media (max-width: 520px) {
  .header .container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav {
    gap: 1.2rem;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .hero-logo {
    height: 58px;
  }

  .tagline {
    font-size: 1rem;
  }
}
