/* roster.html — page-specific styles */

.container { padding: 0 24px; }

/* PAGE HEADER */
.page-header { padding: 180px 0 100px; position: relative; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,168,75,0.05), transparent); pointer-events: none; }
.page-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 10vw, 140px); line-height: 0.9; letter-spacing: 2px; color: var(--white); }
.page-title span { color: var(--gold); }
.page-subtitle { margin-top: 28px; font-size: 16px; color: var(--muted); max-width: 500px; line-height: 1.8; }

/* FILTERS */
.filters-wrap { padding: 0 0 60px; }
.filters { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 1px solid var(--border); background: none; color: var(--muted); font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ARTISTS GRID */
.artists-section { padding-bottom: 140px; }
.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.artist-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--card); cursor: pointer; text-decoration: none; display: block; }
.artist-card-img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.artist-card:hover .artist-card-img { transform: scale(1.04); }
.artist-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.artist-initials { font-family: 'Bebas Neue', sans-serif; font-size: 100px; line-height: 1; letter-spacing: 4px; }
.artist-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.3) 55%, transparent 100%); }
.artist-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px; transform: translateY(6px); transition: transform 0.4s ease; }
.artist-card:hover .artist-card-info { transform: translateY(0); }
.artist-genre { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.artist-name { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 2px; color: var(--white); line-height: 1; margin-bottom: 10px; }
.artist-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; opacity: 0; transform: translateY(8px); transition: all 0.4s ease 0.05s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.artist-card:hover .artist-tagline { opacity: 1; transform: translateY(0); }
.artist-card-arrow { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border: 1px solid rgba(200,168,75,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; opacity: 0; transform: scale(0.8); transition: all 0.3s ease; background: rgba(8,8,8,0.6); backdrop-filter: blur(8px); }
.artist-card:hover .artist-card-arrow { opacity: 1; transform: scale(1); }

@media (max-width: 1024px) { .artists-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .page-header { padding: 120px 0 60px; }
  .artists-grid { grid-template-columns: 1fr; }
  .artist-card { aspect-ratio: 4/3; }
  .artist-card-info { padding: 24px; }
  .artist-tagline { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .page-title { font-size: clamp(48px, 14vw, 80px); }
  .filters { gap: 8px; }
  .filter-btn { padding: 6px 14px; }
}
