/* ARTISTS PAGE ONLY */

/* Section layout */
.artists-section {
  margin: 3rem auto 4rem auto;
  text-align: center;
  width: 100%;
}

.artists-title {
  font-size: 1.6rem;
  color: #70C5F0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

/* Grid */
.artists-section .artists-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
  width: 100%;
  margin: 0 auto;
}

/* Card base */
.artists-section .artist-card {
  width: 400px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  position: relative;
  cursor: pointer;

  /* scroll fade-in */
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* Overlay (name + description) */
.artist-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.artist-overlay p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
}

/* Instagram icon */
.artist-instagram {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
  text-decoration: none;
}

.artist-instagram img {
  width: 32px;
  height: 32px;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 0 6px #70C5F0);
}

/* DESKTOP hover (samo uređaji sa hoverom) */
@media (hover: hover) {
  .artists-section .artist-card:hover > img {
    filter: blur(4px) brightness(0.45);
    transform: scale(1.06);
  }

  .artists-section .artist-card:hover .artist-overlay {
    opacity: 1;
  }

  .artist-card:hover .artist-instagram {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
  }

  .artist-instagram:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px #70C5F0);
  }
}

/* MOBILE: show-desc se doda klikom u JS-u */

.artists-section .artist-card.show-desc > img {
  filter: blur(4px) brightness(0.45);
  transform: scale(1.06);
}

.artists-section .artist-card.show-desc .artist-overlay {
  opacity: 1;
}

.artists-section .artist-card.show-desc .artist-instagram {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

/* Responsive */
@media (max-width: 700px) {
  .artists-section .artist-card {
    width: 90vw;
    height:
