/* ============================================================
   ARTISTS PAGE — ADDITIONAL STYLES
   ============================================================ */

/* ---- PAGE HEADER ---- */
.page-header {
  position: relative;
  z-index: 1;
  padding: 160px 24px 70px;
  text-align: center;
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(170, 85, 255, 0.6);
}

.page-header-sub {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  letter-spacing: 0.3em;
  opacity: 0.5;
  margin-top: 10px;
  text-transform: uppercase;
}

/* ---- SHARED PHOTO PLACEHOLDER ---- */
.photo-placeholder {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--purple-muted) 100%);
  border: 2px solid rgba(170, 85, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.photo-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.45;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ---- FEATURED ARTIST ---- */
.featured-section { padding-top: 20px; }

.featured-artist {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

.featured-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  border: 2px solid rgba(170, 85, 255, 0.35);
}

/* Real photo */
.featured-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(170, 85, 255, 0.35);
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-info {
  padding-top: 8px;
}

.featured-role {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--purple-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.featured-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 0 50px rgba(170, 85, 255, 0.4);
}

.featured-location {
  font-size: 0.9rem;
  opacity: 0.55;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.featured-bio {
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.75;
  max-width: 520px;
  margin-bottom: 16px;
}

.featured-bio:last-of-type {
  margin-bottom: 32px;
}

/* Social buttons */
.featured-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-btn {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(170, 85, 255, 0.4);
  background: rgba(60, 0, 100, 0.3);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.social-btn:hover {
  border-color: var(--purple-dim);
  background: rgba(100, 0, 180, 0.4);
  transform: translateY(-2px);
}

/* Discography */
.disco-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--purple-dim);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.disco-placeholder {
  font-size: 0.9rem;
  opacity: 0.45;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ---- ROSTER GRID ---- */
.roster-section { padding-top: 80px; }

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.roster-card {
  background: rgba(40, 0, 80, 0.35);
  border: 1px solid rgba(170, 85, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.roster-card:hover {
  border-color: var(--purple-base);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(153, 51, 255, 0.25);
}

.roster-photo-wrap { width: 100%; }

.roster-photo-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
}

/* ---- OPEN RECRUITING SLOTS ---- */
.slot-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.4);
  line-height: 1;
  letter-spacing: 0.04em;
}

.slot-status {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-top: 8px;
  opacity: 0.75;
}

.roster-slot .roster-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slot-criteria {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slot-criteria li {
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--white-dim);
  opacity: 0.5;
  letter-spacing: 0.02em;
}

.slot-criteria li::before {
  content: '· ';
  color: var(--accent);
  opacity: 0.7;
}

.slot-apply {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-decoration: none;
  /* 44px tap target */
  padding: 12px 8px;
  margin: -4px 0;
  opacity: 0.85;
  transition: opacity 0.2s, letter-spacing 0.3s;
}

.slot-apply:hover {
  opacity: 1;
  letter-spacing: 0.22em;
}

.roster-info {
  padding: 18px 16px 20px;
  text-align: center;
}

.roster-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.roster-role {
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.08em;
}

/* Join the Team card */
.roster-join {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  border: 1px dashed rgba(170, 85, 255, 0.35);
  background: rgba(20, 0, 50, 0.2);
  text-align: center;
  min-height: 280px;
}

.join-icon {
  font-size: 3rem;
  color: var(--purple-dim);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE — ARTISTS
   ============================================================ */
@media (max-width: 900px) {
  .featured-artist {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .featured-photo-placeholder,
  .featured-photo-img {
    max-width: 320px;
    margin: 0 auto;
  }

  .featured-info { padding-top: 0; }
}

@media (max-width: 600px) {
  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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