/* ARTISTS PAGE ONLY */

.artists-section {
  margin: 0 auto 4.5rem;
  max-width: 1120px;
  padding-top: 5.8rem;
  text-align: center;
  width: 100%;
}

.artists-hero {
  margin: 0 auto 3rem;
  max-width: 720px;
}

.artists-kicker {
  color: #70c5f0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.artists-title {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.12em;
  line-height: 0.92;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.artists-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 44rem;
  opacity: 0.86;
}

.artists-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.artists-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 42px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.artists-btn-primary {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.artists-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}

.artists-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  width: 100%;
}

.artist-card {
  aspect-ratio: 0.78;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 460px;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(28px);
  transition:
    border-color 0.35s ease,
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.artist-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 8%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0.92) 100%);
  content: '';
  inset: 0;
  position: absolute;
  z-index: 1;
}

.artist-card > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
}

.artist-overlay {
  align-items: center;
  bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  left: 0;
  padding: 0 1.3rem;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 2;
}

.artist-role {
  color: #70c5f0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.artist-overlay h2 {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.65);
}

.artist-overlay p:not(.artist-role) {
  font-size: 0.96rem;
  line-height: 1.45;
  margin: 0;
  max-width: 19rem;
  opacity: 0.86;
}

.artist-instagram {
  align-items: center;
  background: rgba(0, 0, 0, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  bottom: 1.1rem;
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 0.45rem;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.08em;
  min-height: 38px;
  padding: 0.5rem 0.82rem;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  z-index: 3;
}

.artists-bottom-cta {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem auto 0;
  max-width: 780px;
  padding: 1.3rem 0;
}

.artists-bottom-cta p {
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
  opacity: 0.86;
}

.artists-bottom-cta a {
  background: #fff;
  border-radius: 999px;
  color: #000;
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.72rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

@media (hover: hover) {
  .artists-btn:hover,
  .artists-bottom-cta a:hover {
    transform: translateY(-2px);
  }

  .artists-btn-primary:hover,
  .artists-bottom-cta a:hover {
    background: #70c5f0;
    border-color: #70c5f0;
    color: #000;
  }

  .artists-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
  }

  .artist-card:hover {
    border-color: rgba(112, 197, 240, 0.5);
    transform: translateY(-4px);
  }

  .artist-card.visible:hover {
    transform: translateY(-4px);
  }

  .artist-card:hover > img {
    filter: brightness(0.92);
    transform: scale(1.04);
  }

  .artist-instagram:hover {
    background: rgba(255, 255, 255, 0.96);
    border-color: #fff;
    color: #000;
    transform: translateX(-50%) translateY(-2px);
  }
}

@media (max-width: 900px) {
  .artists-section {
    max-width: 760px;
  }

  .artists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-card {
    min-height: 430px;
  }
}

@media (max-width: 700px) {
  .artists-section {
    padding-top: 3.4rem;
  }

  .artists-title {
    font-size: 3.2rem;
  }

  .artists-lead {
    font-size: 1rem;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-card {
    aspect-ratio: 0.86;
    min-height: 390px;
  }

  .artist-overlay {
    bottom: auto;
    top: 48%;
    transform: translateY(-50%);
  }

  .artist-overlay h2 {
    font-size: 2.8rem;
  }

  .artists-bottom-cta {
    align-items: center;
    flex-direction: column;
    padding: 1.4rem 1rem;
  }
}
