﻿/* ==========================================================================
   J. Reed Brothers - Project Styles (/music/j-reed-brothers/)
   ========================================================================== */

.jreed-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: 
    radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.1) 0%, rgba(7, 7, 9, 0.98) 75%),
    radial-gradient(circle at 20% 80%, rgba(180, 83, 9, 0.06) 0%, transparent 60%),
    var(--bg-core);
  border-bottom: 1px solid var(--border-subtle);
}

.jreed-hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

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

.jreed-hero-title {
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #fff;
}

.jreed-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* Studio Production Status Card */
.status-spotlight-card {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, rgba(14, 14, 18, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.status-spotlight-card .status-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.status-spotlight-card h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #fff;
}

.status-spotlight-card p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* Production Roadmap Steps */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pipeline-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}

.pipeline-step.active {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, rgba(14, 14, 18, 0.9) 100%);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jreed-accent);
  margin-bottom: 12px;
  display: block;
}

.step-title {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Releases Container for J. Reed */
.jreed-releases-container {
  margin-top: 24px;
}

.jreed-empty-state {
  border: 1px dashed var(--border-medium);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
}

.jreed-empty-state p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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