/* ═══════════════════════════════════════════════════════════
   MUSIC PAGE — music-page.css
   Junior Ceranor Nelson / Ceranor
═══════════════════════════════════════════════════════════ */

/* ─── ACTIVE NAV LINK ───────────────────────────────────────── */
.nav-link--active {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.mp-hero {
  position: relative;
  background: var(--navy);
  padding: 148px 0 80px;
  overflow: hidden;
  text-align: center;
}

.mp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(11,29,58,0.8) 0%, transparent 60%);
  pointer-events: none;
}

.mp-hero-noise {
  position: absolute;
  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='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.mp-hero-inner {
  position: relative;
  z-index: 1;
}

.mp-hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  opacity: 0;
  animation: mp-fade-up 0.65s ease 0.2s forwards;
}

.mp-hero-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mp-hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: mp-fade-up 0.65s ease 0.35s forwards;
}

.mp-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0;
  animation: mp-fade-up 0.7s ease 0.5s forwards;
}

.mp-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  opacity: 0;
  animation: mp-fade-up 0.65s ease 0.65s forwards;
}

.mp-hero-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0;
  animation: mp-fade-up 0.55s ease 0.8s forwards;
}

@keyframes mp-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── REVEAL ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.72s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTIONS ───────────────────────────────────────────────── */
.mp-section {
  padding: 80px 0 88px;
}

.mp-spotify-section  { background: var(--light); }
.mp-apple-section    { background: #fff; }
.mp-featured-section { background: var(--navy); }
.mp-discography-section { background: var(--light); }

.mp-section-header {
  margin-bottom: 40px;
}

.mp-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.mp-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.mp-featured-section .mp-section-title,
.mp-featured-section .mp-section-label { color: #fff; }
.mp-featured-section .mp-section-label { color: var(--gold); }

/* ─── PLATFORM ICON ──────────────────────────────────────────── */
.mp-platform-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: var(--gold);
}

/* ─── PLAYER WRAP ────────────────────────────────────────────── */
.mp-player-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(11,29,58,0.14);
}

/* ─── APPLE MUSIC BADGE ──────────────────────────────────────── */
.mp-apple-badge-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

.mp-apple-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fc3c44;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 16px rgba(252,60,68,0.3);
}

.mp-apple-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

.mp-apple-btn:hover {
  background: #e0343c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252,60,68,0.4);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}

.mp-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mp-btn--lg {
  padding: 16px 32px;
  font-size: 0.82rem;
}

.mp-btn--spotify {
  background: #1DB954;
  color: #fff;
  box-shadow: 0 4px 16px rgba(29,185,84,0.30);
}

.mp-btn--spotify svg { fill: #fff; }

.mp-btn--spotify:hover {
  background: #18a349;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,185,84,0.4);
}

.mp-btn--apple {
  background: #fc3c44;
  color: #fff;
  box-shadow: 0 4px 16px rgba(252,60,68,0.28);
}

.mp-btn--apple svg { fill: #fff; }

.mp-btn--apple:hover {
  background: #e0343c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252,60,68,0.4);
}

/* ─── FEATURED CARD ──────────────────────────────────────────── */
.mp-featured-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 48px;
}

.mp-featured-art {
  position: relative;
  flex-shrink: 0;
}

.mp-featured-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
  display: block;
}

.mp-featured-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.mp-featured-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.mp-featured-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.mp-featured-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.mp-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── DISCOGRAPHY GRID ───────────────────────────────────────── */
.mp-disco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── RELEASE CARD ───────────────────────────────────────────── */
.mp-release-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11,29,58,0.07);
  transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
}

.mp-release-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,29,58,0.15);
}

.mp-release-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.mp-release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mp-release-card:hover .mp-release-art img {
  transform: scale(1.05);
}

.mp-release-type {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.mp-type--single {
  background: var(--navy);
  color: var(--gold);
}

.mp-type--album {
  background: var(--gold);
  color: var(--navy);
}

.mp-release-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mp-release-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.mp-release-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(11,29,58,0.45);
  font-weight: 500;
}

.mp-release-listen {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.mp-release-listen:hover {
  color: var(--navy);
  letter-spacing: 0.16em;
}

/* ─── ARTIST BIO ─────────────────────────────────────────────── */
.mp-bio-section {
  background: var(--navy);
  padding: 96px 0;
}

.mp-bio-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.mp-bio-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mp-bio-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mp-bio-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.mp-bio-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.mp-bio-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.mp-bio-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.97rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin-bottom: 20px;
}

.mp-bio-genre {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

.mp-bio-genre strong {
  color: var(--gold);
  font-weight: 600;
}

/* ─── CTA SECTION ────────────────────────────────────────────── */
.mp-cta-section {
  background: var(--light);
  padding: 96px 0;
  text-align: center;
}

.mp-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.mp-cta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.mp-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 36px;
}

.mp-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mp-hero { padding: 134px 0 72px; }
  .mp-disco-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .mp-featured-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px;
    text-align: center;
  }

  .mp-featured-art {
    display: flex;
    justify-content: center;
  }

  .mp-featured-img { width: 240px; height: 240px; }
  .mp-featured-desc { margin-left: auto; margin-right: auto; }
  .mp-featured-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .mp-hero { padding: 114px 0 60px; }
  .mp-section { padding: 56px 0 64px; }
  .mp-section-header { margin-bottom: 28px; }
  .mp-disco-grid { grid-template-columns: 1fr; gap: 16px; }

  .mp-featured-card { padding: 24px 20px 28px; gap: 28px; }
  .mp-featured-img { width: 200px; height: 200px; }

  .mp-bio-section { padding: 72px 0; }
  .mp-cta-section { padding: 72px 0; }

  .mp-btn--lg { padding: 14px 24px; font-size: 0.76rem; }

  .mp-apple-badge-wrap { justify-content: center; }
}
