﻿/* ==========================================================================
   Chaleco Studios Music - Hub Styles (/music/)
   ========================================================================== */

.music-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: radial-gradient(circle at 50% 20%, rgba(230, 57, 70, 0.12) 0%, rgba(7, 7, 9, 0.98) 70%), var(--bg-core);
  border-bottom: 1px solid var(--border-subtle);
}

.music-hero-content {
  max-width: 840px;
}

.music-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

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

/* Artist Duo Grid */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.artist-hub-card {
  position: relative;
  border-radius: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.artist-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.artist-hub-card.card-hana {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, rgba(14, 14, 18, 0.95) 100%);
  border-color: rgba(236, 72, 153, 0.25);
}

.artist-hub-card.card-hana:hover {
  border-color: rgba(236, 72, 153, 0.6);
  box-shadow: 0 24px 50px rgba(236, 72, 153, 0.18);
}

.artist-hub-card.card-jreed {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(14, 14, 18, 0.95) 100%);
  border-color: rgba(245, 158, 11, 0.25);
}

.artist-hub-card.card-jreed:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 24px 50px rgba(245, 158, 11, 0.18);
}

.artist-card-cover {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.artist-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85) contrast(1.1);
}

.artist-hub-card:hover .artist-card-cover img {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.15);
}

.artist-card-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(14, 14, 18, 0.95) 100%);
}

.artist-card-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.15) 0%, rgba(10, 10, 14, 0.95) 80%);
  color: var(--text-muted);
}

.artist-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.artist-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.artist-name {
  font-size: 2rem;
  margin-bottom: 6px;
}

.artist-universe {
  font-size: 0.92rem;
  color: var(--hana-accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.artist-universe.jreed-theme {
  color: var(--jreed-accent);
}

.artist-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.artist-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.artist-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.artist-features li::before {
  content: "•";
  color: var(--studio-accent);
  font-size: 1.2rem;
  line-height: 0;
}

.artist-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* Sound Manifesto Strip */
.music-manifesto {
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.05), transparent 50%, rgba(198, 160, 82, 0.05));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-top: 64px;
}

.music-manifesto h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.music-manifesto p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

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