/* =============================================
   3AM DESIRE — Artists Page Styles
   ============================================= */

/* ---- ACTIVE NAV ---- */
.nav-link.active-page {
  color: var(--neon-pink) !important;
}
.nav-link.active-page::after {
  transform: scaleX(1) !important;
}

/* ---- PAGE HERO ---- */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 32px 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(74, 0, 16, 0.55) 0%, transparent 65%),
              var(--bg-black);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-title span { display: block; }
.page-hero-title .pink {
  color: var(--neon-pink);
  text-shadow: 0 0 60px rgba(255, 45, 107, 0.5);
}

.page-hero-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- ARTISTS SECTION ---- */
.artists-section {
  padding: 80px 0 120px;
  background: var(--bg-black);
}

/* ---- ARTIST BLOCK ---- */
.artist-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.artist-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.artist-block.reverse {
  grid-template-columns: 1fr 420px;
}

.artist-block.reverse .artist-visual {
  order: 2;
}

.artist-block.reverse .artist-info {
  order: 1;
}

/* ---- ARTIST VISUAL ---- */
.artist-visual {
  position: relative;
}

.artist-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
}

.artist-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ap-1 { background: linear-gradient(160deg, #1a0010 0%, #5a0025 50%, #2a0015 100%); }
.ap-2 { background: linear-gradient(160deg, #0d0020 0%, #3a0050 50%, #180030 100%); }
.ap-3 { background: linear-gradient(160deg, #1a0808 0%, #5a1010 50%, #2a0808 100%); }
.ap-4 { background: linear-gradient(160deg, #000a18 0%, #002040 50%, #000d20 100%); }
.ap-5 { background: linear-gradient(160deg, #0a100a 0%, #183018 50%, #0a180a 100%); }
.ap-6 { background: linear-gradient(160deg, #100a00 0%, #402000 50%, #201000 100%); }

.artist-initial {
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(255, 45, 107, 0.15);
  line-height: 1;
  user-select: none;
  transition: color 0.4s ease;
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.artist-block:hover .artist-photo {
  transform: scale(1.04);
}

.artist-block:hover .artist-initial {
  color: rgba(255, 45, 107, 0.3);
}

/* Corner border accent */
.artist-img-wrap::before,
.artist-img-wrap::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--neon-pink);
  border-style: solid;
  z-index: 2;
  transition: width 0.4s ease, height 0.4s ease;
}

.artist-img-wrap::before {
  top: 12px; left: 12px;
  border-width: 2px 0 0 2px;
}

.artist-img-wrap::after {
  bottom: 12px; right: 12px;
  border-width: 0 2px 2px 0;
}

.artist-block:hover .artist-img-wrap::before,
.artist-block:hover .artist-img-wrap::after {
  width: 60px;
  height: 60px;
}

.artist-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 45, 107, 0.2) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.artist-block:hover .artist-img-glow {
  opacity: 1;
}

.artist-number {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 45, 107, 0.08);
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}

.artist-block:hover .artist-number {
  color: rgba(255, 45, 107, 0.14);
}

/* ---- ARTIST INFO ---- */
.artist-info {
  padding: 20px 0;
}

.artist-role {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 16px;
}

.artist-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--text-white);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.artist-name::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
  transition: width 0.4s ease;
}

.artist-block:hover .artist-name::after {
  width: 100%;
}

.artist-bio {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 520px;
}

.artist-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.artist-tags span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(255, 45, 107, 0.25);
  border-radius: 2px;
  color: var(--text-dim);
  transition: border-color 0.3s, color 0.3s;
}

.artist-block:hover .artist-tags span {
  border-color: rgba(255, 45, 107, 0.5);
  color: var(--text-white);
}

.artist-socials {
  display: flex;
  gap: 14px;
}

.a-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: none;
}

.a-social:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 45, 107, 0.2);
}

/* ---- DIVIDER ---- */
.artist-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 45, 107, 0.2), transparent);
}

/* ---- CTA SECTION ---- */
.artists-cta {
  padding: 120px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(74, 0, 16, 0.4) 0%, transparent 65%),
              var(--bg-black);
  text-align: center;
  border-top: 1px solid rgba(255, 45, 107, 0.08);
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.cta-title em {
  font-style: normal;
  color: var(--neon-pink);
  text-shadow: 0 0 40px rgba(255, 45, 107, 0.5);
}

.cta-sub {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .artist-block,
  .artist-block.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artist-block.reverse .artist-visual,
  .artist-block.reverse .artist-info {
    order: unset;
  }

  .artist-img-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .artist-number {
    bottom: -10px;
    right: 0;
    font-size: 5rem;
  }
}

@media (max-width: 640px) {
  .artist-block {
    padding: 50px 0;
  }

  .artist-bio {
    font-size: 0.92rem;
  }
}
