/* ========================================
   ARTISTS PAGE STYLES
   ======================================== */

/* ========== ARTISTS HEADER ========== */
.artists-header {
  padding: 120px 0 40px;
  text-align: center;
}

/* ========== FEATURED ARTIST SECTION ========== */
.featured-artist-section {
  padding: 40px 0 100px;
}

.artist-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Artist Image */
.artist-image {
  position: sticky;
  top: 120px;
}

.artist-main-photo {
  width: 100%;
  height: auto;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px var(--gold-glow);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark-gray);
  border: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-logo-overlay {
  width: 60%;
  height: 60%;
  opacity: 0.2;
}

/* Artist Info */
.artist-info {
  padding: 20px 0;
}

.artist-header h1 {
  font-size: 48px;
  color: var(--gold);
  text-align: left;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.stage-name {
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 300;
}

.artist-role {
  font-size: 14px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 40px;
}

.artist-bio {
  margin: 40px 0;
}

.artist-bio p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.artist-bio strong {
  color: var(--gold);
  font-weight: 400;
}

/* Social Media Links */
.artist-social {
  display: flex;
  gap: 25px;
  margin: 40px 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-gray);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px var(--gold-glow);
}

/* CTA Buttons */
.artist-cta {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* ========== VIDEO SECTION ========== */
.artist-video-section {
  padding: 80px 0;
  background: var(--black);
}

.artist-video-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.video-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.video-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  box-shadow: 0 15px 60px rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  text-align: left;
}

.video-info h3 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.video-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.video-info .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.video-info .btn i {
  font-size: 18px;
}

/* ========== ROSTER SECTION ========== */
.roster-section {
  padding: 80px 0 100px;
  text-align: center;
}

.roster-description {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.8;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.roster-item {
  text-align: center;
}

.roster-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark-gray);
  border: 2px solid var(--gold);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.roster-placeholder::after {
  content: '?';
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
}

.roster-label {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white);
  opacity: 0.7;
}

.roster-cta {
  margin-top: 60px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .artist-showcase {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .artist-image {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .artist-header h1 {
    font-size: 40px;
    text-align: center;
  }

  .stage-name,
  .artist-role {
    text-align: center;
  }

  .artist-bio p {
    text-align: center;
  }

  .artist-social {
    justify-content: center;
  }

  .artist-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .artists-header {
    padding: 100px 0 30px;
  }

  .featured-artist-section {
    padding: 30px 0 80px;
  }

  .artist-header h1 {
    font-size: 36px;
  }

  .stage-name {
    font-size: 20px;
  }

  .artist-bio p {
    font-size: 15px;
  }

  .roster-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .video-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .video-info h3 {
    font-size: 28px;
  }
  
  .video-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .artist-header h1 {
    font-size: 28px;
  }

  .stage-name {
    font-size: 18px;
  }

  .artist-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .artist-cta .btn {
    width: 100%;
    text-align: center;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}