/* ─────────────────────────────────────────────
   feeling.css — Release landing page for 'Feeling' single
   Scoped to .feeling-page (body class)
───────────────────────────────────────────── */

/* ── Custom properties ── */
:root {
  --gold:        #d4a853;
  --gold-light:  #f0c060;
  --purple:      #1a0a2e;
  --purple-mid:  #2d1560;
  --purple-hi:   #7c3aed;
  --dark:        #07040f;
  --dark-mid:    #0a0612;
  --dark-card:   #0e0820;
  --text:        #f0ece8;
  --text-muted:  rgba(240, 236, 232, 0.6);
  --card-border: rgba(212, 168, 83, 0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --gutter:      clamp(1rem, 4vw, 2rem);
}

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

body.feeling-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }

/* ── Container ── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section ── */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

/* ── Section title ── */
.section-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

/* ── Nav ── */
.feeling-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1rem var(--gutter);
  background: rgba(7, 4, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.nav-logo {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(4rem + 60px) var(--gutter) 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(1.4);
  transform: scale(1.1);
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,4,15,0.4) 0%,
    rgba(7,4,15,0.3) 40%,
    rgba(7,4,15,0.9) 85%,
    rgba(7,4,15,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

/* Cover art */
.cover-wrap {
  position: relative;
  width: clamp(200px, 50vw, 280px);
  flex-shrink: 0;
}

.cover-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 60px rgba(212, 168, 83, 0.25),
    0 30px 60px rgba(0, 0, 0, 0.7);
  display: block;
}

.cover-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(212,168,83,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

/* Text block */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.label-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.track-title {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.artist-name {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.label-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Release / countdown */
.release-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.release-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.cd-num {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  line-height: 1;
}

.cd-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.cd-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(212,168,83,0.4);
  line-height: 1;
  align-self: flex-start;
  padding-top: 0.1rem;
}

.cd-out {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.release-out {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  display: inline-block;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: rgba(212,168,83,0.4);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

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

/* ── Streaming / DSP row ── */
.streaming-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.streaming-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.dsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

a.dsp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.1);
}

.dsp-notify {
  opacity: 0.45;
  cursor: default;
}

.dsp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Platform accent colors */
a.spotify-btn  { border-color: rgba(29,185,84,0.35); }
a.spotify-btn:hover  { border-color: #1DB954; color: #1DB954; }
a.apple-btn    { border-color: rgba(252,60,68,0.3); }
a.apple-btn:hover    { border-color: #FC3C44; color: #FC3C44; }
a.yt-btn       { border-color: rgba(255,0,0,0.3); }
a.yt-btn:hover       { border-color: #FF0000; color: #FF0000; }
a.sc-btn       { border-color: rgba(255,85,0,0.3); }
a.sc-btn:hover       { border-color: #FF5500; color: #FF5500; }

.notify-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Email capture ── */
.capture-section {
  background: var(--dark-mid);
}

.capture-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  align-items: center;
}

.capture-art {
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.capture-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.capture-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.capture-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.capture-input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}

.capture-input::placeholder { color: rgba(240,236,232,0.35); }
.capture-input:focus { border-color: var(--gold); }

.capture-btn {
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple-hi) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}

.capture-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.capture-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.capture-fine {
  font-size: 0.78rem;
  color: rgba(240,236,232,0.3);
  margin-top: 0.75rem;
}

.capture-success {
  font-size: 0.92rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 0.75rem;
}

.capture-error {
  font-size: 0.88rem;
  color: #f87171;
  margin-top: 0.5rem;
}

/* ── Artist strip ── */
.artist-strip-section {
  background: linear-gradient(180deg, var(--dark-mid) 0%, var(--dark) 100%);
}

.artist-strip {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}

.strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.strip-name {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.strip-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.2rem;
}

.strip-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.strip-link:hover { opacity: 0.75; }

/* ── Footer ── */
.feeling-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(212,168,83,0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(240,236,232,0.3);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .capture-card {
    grid-template-columns: 1fr;
  }

  .capture-art {
    width: 100%;
    height: 200px;
  }

  .countdown { gap: 0.3rem; }
  .cd-unit { min-width: 44px; }
  .cd-num { font-size: 1.4rem; }

  .hero-content { gap: 1.75rem; }
  .cover-wrap { width: clamp(160px, 55vw, 220px); }
}
