/* ===== ARTIST HERO SECTION ===== */
.artist-hero {
  position: relative;
  width: 100%;
  height: 65vh; /* narrower hero than homepage */
  background: url('../assets/hero-bg/hero-bg\(1\).jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Overlay */
.artist-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content */
.artist-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 700px;
  animation: slideUp 1.2s ease forwards;
}

/* Title */
.artist-hero-content h1 {
  font-family: 'Ethnocentric', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.artist-hero-content h1 span {
  color: #d4a017;
}

.section-title span {
  color: #d6ad33;
}

/* Paragraph */
.artist-hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: #ccc;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== FADE-IN ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .artist-hero {
    height: 55vh;
  }
}

@media (max-width: 480px) {
  .artist-hero {
    height: 50vh;
  }

  .artist-hero-content h1 {
    font-size: 1.5rem;
  }

  .artist-hero-content p {
    font-size: 0.85rem;
  }
}

/* ===== ARTISTS SECTION ===== */

/* ================================
   ARTISTS SECTION (DARK THEME)
================================ */
.artists-section {
  padding: 4rem 1.5rem;
  background: #121212;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 3rem;
  font-weight: 700;
}

.section-title span {
  color: #d6ad33;
}

/* ================================
   GRID LAYOUT
================================ */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  justify-items: center;
}

/* ================================
   CARD STYLE
================================ */
.artist-card {
  background: #1c1c1c;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

/* IMAGE */
.artist-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-bottom: 2px solid #2c2c2c;
}

.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-card:hover .artist-img img {
  transform: scale(1.05);
}

/* INFO */
.artist-info {
  padding: 1.5rem;
  text-align: left;
}

.artist-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.artist-location {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.artist-bio {
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* BUTTONS */
.artist-buttons {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.btn-outline,
.btn-filled {
  flex: 1;
  padding: 0.6rem 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #d6ad33;
  color: #d6ad33;
  background: transparent;
}

.btn-outline:hover {
  background: #d6ad33;
  color: #111;
}

.btn-filled {
  background: #d6ad33;
  color: #111;
  border: 1px solid #d6ad33;
}

.btn-filled:hover {
  background: #b48e1f;
  color: #111;
}

/* ================================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablet */
@media (min-width: 600px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .artist-card {
    max-width: 360px;
  }

  .artist-img {
    height: 280px;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }

  .artists-section {
    padding: 6rem 3rem;
  }

  .artist-img {
    height: 300px;
  }
}

/* ================================
   ANIMATION
================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
