/* =====================
   RESET & BASE
===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-600: #666666;
  --gray-800: #1a1a1a;
  --accent: #ffffff;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageFadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 4rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  outline: none;
  border: none;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.75;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.8rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-200);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-ghost {
  display: inline-block;
  padding: 0.55rem 1.6rem;
  background: transparent;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.25s, border-color 0.25s;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('wallpaper.png') center center / cover no-repeat;
  filter: blur(6px) brightness(0.28);
  transform: scale(1.05);
  z-index: 0;
  pointer-events: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
  z-index: 1;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gray-600);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 620px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

/* VINYL ANIMATION */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vinyl {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    #1a1a1a 0%,
    #1a1a1a 15%,
    #111 16%,
    #080808 30%,
    #111 31%,
    #000 50%,
    #111 51%,
    #080808 70%,
    #111 71%,
    #1a1a1a 85%,
    #000 100%
  );
  border: 2px solid #222;
  box-shadow:
    0 0 0 1px #333,
    0 30px 80px rgba(255,255,255,0.04),
    0 0 120px rgba(255,255,255,0.02);
  animation: spin 8s linear infinite;
  position: relative;
}

.vinyl::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #333;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 7rem 4rem;
}

.section-alt {
  background: var(--gray-800);
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gray-600);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* =====================
   PLATFORMS SLIDER
===================== */
.platforms-slider {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: var(--black);
  padding: 1.4rem 0;
}

.slider-track {
  overflow: hidden;
  white-space: nowrap;
}

.slider-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.slider-inner span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0 1.6rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.slider-inner span:hover {
  color: rgba(255,255,255,0.9);
}

.slider-inner .dot {
  color: rgba(255,255,255,0.12);
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================
   SPOTIFY GRID
===================== */
.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.spotify-card {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotify-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.spotify-card iframe {
  display: block;
  width: 100%;
}

/* =====================
   ARTISTS / SPOTIFY GRID
===================== */
.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.spotify-card {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotify-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.spotify-card iframe {
  display: block;
  width: 100%;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}

.artist-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.artist-img {
  width: 100%;
  aspect-ratio: 3/4;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-img {
  transform: scale(1.04);
}

.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.artist-info h3 {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.artist-info p {
  font-size: 0.72rem;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =====================
   SERVICES
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: #0d0d0d;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: #141414;
  border-color: rgba(255,255,255,0.15);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* =====================
   RELEASES EMBEDS
===================== */
.releases-embeds {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.releases-embeds iframe {
  display: block;
  width: 100%;
}

/* =====================
   RELEASES (old list styles kept for reference)
===================== */
.releases-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.release-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.release-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.release-item:hover {
  padding-left: 0.5rem;
}

.release-cover {
  width: 64px;
  height: 64px;
  background: #2a2a2a;
  flex-shrink: 0;
  border: 1px solid #333;
}

.release-details {
  flex: 1;
}

.release-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-600);
  text-transform: uppercase;
}

.release-details h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.2rem 0;
}

.release-artist {
  font-size: 0.78rem;
  color: var(--gray-600);
  letter-spacing: 0.08em;
}

.release-date {
  font-size: 0.72rem;
  color: var(--gray-600);
}

.release-btn {
  flex-shrink: 0;
}

/* =====================
   ABOUT
===================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text .section-tag {
  display: block;
  margin-bottom: 0.75rem;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-text p strong {
  color: var(--white);
}

.about-text .btn-primary {
  margin-top: 1.5rem;
}

.contact-email {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 1rem;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.contact-address {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.contact-address:hover {
  opacity: 0.7;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.stat {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 1.5rem;
}

.stat h3 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat p {
  font-size: 0.72rem;
  color: var(--gray-600);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 4rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.footer-inner p {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.footer-linkedin {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.li-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  width: 220px;
  overflow: hidden;
  font-family: var(--font);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.li-card-header {
  background: #1e1e1e;
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid #2a2a2a;
}

.li-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 4px;
}

.li-brand {
  font-size: 0.88rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.li-brand strong {
  font-weight: 700;
}

.li-card-body {
  padding: 1rem 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.li-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #0d0d0d;
  border: 1px solid #333;
  margin-bottom: 0.4rem;
  padding: 4px;
}

.li-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.li-title {
  font-size: 0.7rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.li-btn {
  margin-top: 0.7rem;
  display: inline-block;
  padding: 0.42rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.li-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* =====================
   SCROLL REVEAL
===================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   FADE-IN ANIMATION
===================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .navbar {
    padding: 1.2rem 2rem;
  }

  .hero {
    flex-direction: column;
    padding: 6rem 2rem 4rem;
    text-align: center;
    gap: 3rem;
  }

  .hero-sub { margin: 0 auto 2.5rem; }

  .vinyl {
    width: 240px;
    height: 240px;
  }

  .section { padding: 5rem 2rem; }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.7rem; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .release-item { flex-wrap: wrap; }
  .release-btn { width: 100%; }
}
