/* ============================================
   FANELIA MUSIC — style.css
   Premium Music Label Landing Page
   ============================================ */

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

:root {
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Magdalena — warm gold-blush */
  --c-magdalena-1: #f7c59f;
  --c-magdalena-2: #e8927c;
  --c-magdalena-glow: rgba(232, 146, 124, 0.45);

  /* Velencia — crimson & deep */
  --c-velencia-1: #c0392b;
  --c-velencia-2: #8b0000;
  --c-velencia-glow: rgba(192, 57, 43, 0.5);

  /* Dale — electric navy-gold */
  --c-dale-1: #f0c040;
  --c-dale-2: #1a3a6e;
  --c-dale-glow: rgba(240, 192, 64, 0.45);

  /* Brand */
  --cyan: #00e5ff;
  --magenta: #e040fb;

  --bg-dark: #0b0b0f;
  --text-primary: #f5f5f0;
  --text-muted: rgba(245, 245, 240, 0.55);
  --radius: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(11, 11, 15, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(11, 11, 15, 0.95);
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo-icon { font-size: 1.2rem; }
.nav-logo-accent {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-link-hof {
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 229, 255, 0.3) !important;
  color: var(--cyan) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}

.nav-link-hof:hover {
  background: rgba(0, 229, 255, 0.1) !important;
  border-color: var(--cyan) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  background: rgba(11, 11, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--text-primary); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 146, 124, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(192, 57, 43, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(240, 192, 64, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 60% 20%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
    #0b0b0f;
  animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.06);
  margin-bottom: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-title-accent {
  background: linear-gradient(135deg, #f7c59f 0%, #c0392b 35%, #f0c040 65%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #f7c59f, #c0392b);
  color: #fff;
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- ALBUM SECTIONS ---- */
.album-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.album-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.album-magdalena {
  background: radial-gradient(ellipse at 30% 50%, rgba(247, 197, 159, 0.08) 0%, transparent 70%), #0e0c0b;
}

.album-velencia {
  background: radial-gradient(ellipse at 70% 50%, rgba(192, 57, 43, 0.1) 0%, transparent 70%), #0e0a0a;
}

.album-dale {
  background: radial-gradient(ellipse at 30% 50%, rgba(240, 192, 64, 0.07) 0%, transparent 70%), #090b0e;
}

.album-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.album-inner.reverse { direction: rtl; }
.album-inner.reverse > * { direction: ltr; }

/* ---- ALBUM ART ---- */
.album-art-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-art {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: transform var(--transition), box-shadow var(--transition);
}

.album-art:hover {
  transform: scale(1.025) rotate(-1deg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

.album-art-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

.magdalena-glow { background: var(--c-magdalena-glow); }
.velencia-glow  { background: var(--c-velencia-glow); }
.dale-glow      { background: var(--c-dale-glow); }

@keyframes glowPulse {
  0%   { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1;   transform: scale(1.1); }
}

/* ---- ALBUM INFO ---- */
.album-info { max-width: 520px; }

.album-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.album-magdalena .album-tag {
  background: rgba(247, 197, 159, 0.15);
  color: var(--c-magdalena-1);
  border: 1px solid rgba(247, 197, 159, 0.3);
}

.album-velencia .album-tag {
  background: rgba(192, 57, 43, 0.15);
  color: #e87070;
  border: 1px solid rgba(192, 57, 43, 0.3);
}

.album-dale .album-tag {
  background: rgba(240, 192, 64, 0.12);
  color: var(--c-dale-1);
  border: 1px solid rgba(240, 192, 64, 0.3);
}

.album-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.album-title em { font-style: italic; font-weight: 400; }

.album-magdalena .album-title { color: var(--c-magdalena-1); }
.album-velencia .album-title  { color: #e87070; }
.album-dale .album-title      { color: var(--c-dale-1); }

.artist-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.album-desc {
  font-size: 1rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

/* ---- STREAM BUTTONS ---- */
.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
}

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

.stream-btn.spotify {
  background: #1DB954;
  color: #fff;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.35);
}
.stream-btn.spotify:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 185, 84, 0.5);
}

.stream-btn.apple {
  background: linear-gradient(135deg, #fc3c44, #ff6470);
  color: #fff;
  box-shadow: 0 4px 20px rgba(252, 60, 68, 0.35);
}
.stream-btn.apple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252, 60, 68, 0.5);
}

.stream-btn.amazon {
  background: #ff9900;
  color: #111;
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
}
.stream-btn.amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 153, 0, 0.45);
}

.stream-btn.tidal {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--text-primary);
}
.stream-btn.tidal:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ---- SOCIAL ---- */
.social-follow { display: flex; gap: 1rem; }

.social-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.album-magdalena .social-link:hover { color: var(--c-magdalena-1); border-bottom-color: var(--c-magdalena-1); }
.album-velencia .social-link:hover  { color: #e87070; border-bottom-color: #e87070; }
.album-dale .social-link:hover      { color: var(--c-dale-1); border-bottom-color: var(--c-dale-1); }

/* ---- CROSSLINK — HOUSE OF FANELIA ---- */
.crosslink-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%), #0a0a0e;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.crosslink-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.crosslink-inner {
  max-width: 700px;
  margin: 0 auto;
}

.crosslink-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.crosslink-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.crosslink-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.crosslink-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cl-stat { text-align: center; }
.cl-stat-n {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cl-stat-l {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.cl-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.crosslink-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hof {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #0b0b0f;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.3);
}
.btn-hof:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.45);
}

.btn-yt-sm {
  background: #ff0033;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(255, 0, 51, 0.35);
}
.btn-yt-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 0, 51, 0.5);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #08080c;
}

.footer-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  gap: 3rem;
}

.footer-brand { max-width: 320px; }

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 300;
}

.footer-links-grid {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-col a {
  text-decoration: none;
  color: rgba(245, 245, 240, 0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .album-inner,
  .album-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
    gap: 3rem;
  }

  .album-art { max-width: 320px; margin: 0 auto; }
  .album-info { max-width: 100%; }
  .stream-links { justify-content: center; }
  .social-follow { justify-content: center; }

  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .footer-inner-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: 3rem; }
  .album-section { padding: 4rem 1.5rem; }
  .crosslink-stats { gap: 1.25rem; }
  .cl-stat-n { font-size: 1.5rem; }
  .crosslink-actions { flex-direction: column; align-items: center; }
}
