/* Section + Container */
.artists-archive-section {
  background: linear-gradient(to bottom, #000 0%, #0a0a20 100%);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}
.artists-container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* Title */
.artists-title {
  font-size: 2.8rem; letter-spacing: 1px; margin-bottom: 30px; text-transform: uppercase;
  background: linear-gradient(90deg, #0084ff, #00c6ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Filterbar */
.artist-filter {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 20px 0 45px;
}
.filter-btn {
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(0,140,255,0.3);
  background: rgba(0,0,0,0.3); color: #cfe8ff; cursor: pointer; font-weight: 600;
  transition: all .25s ease;
}
.filter-btn:hover { transform: translateY(-1px); box-shadow: 0 0 12px rgba(0,140,255,.6); }
.filter-btn.active { background: linear-gradient(90deg,#007bff,#00d4ff); color: #fff; border-color: transparent; }

/* Grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
  align-items: stretch;
}

/* Cards (einheitliche Größe) */
.artist-card {
  position: relative; overflow: hidden; border-radius: 20px;
  background: #111; width: 100%; max-width: 360px; min-height: 520px;
  display: flex; flex-direction: column; justify-content: flex-end;
  /* Startzustand für Scroll-FadeIn */
  opacity: 0; transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .4s ease, border-color .4s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.artist-card.visible { opacity: 1; transform: translateY(0); }

/* Neon-Outline beim Hover */
.artist-card:hover {
  box-shadow: 0 0 25px rgba(0,140,255,.75), 0 10px 25px rgba(0,0,0,.6);
  border-color: rgba(0,140,255,0.35);
}

/* Image/Parallax/Blur */
.artist-image-wrapper { position: relative; flex: 1; display: flex; align-items: stretch; }
.artist-image-wrapper img, .artist-placeholder {
  width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
  transition: transform .5s ease, filter .5s ease;
}
.artist-placeholder { background: linear-gradient(135deg,#1a1a1a,#222); }

/* Parallax + Blur on hover */
.artist-card:hover img { transform: scale(1.1) translateY(-3%); filter: blur(1px) brightness(0.92); }

/* Overlay */
.artist-overlay {
  position: absolute; inset: 0; border-radius: 20px; padding: 24px;
  display: flex; align-items: flex-end; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 28%, rgba(0,0,0,0.35) 75%, transparent);
  transition: background .35s ease;
}
.artist-card:hover .artist-overlay { background: rgba(0,0,0,0.6); }

/* Info */
.artist-info { text-align: left; transform: translateY(30px); opacity: 0; transition: all .35s ease; min-height: 120px; }
.artist-card:hover .artist-info { opacity: 1; transform: translateY(0); }
.artist-info h2 { font-size: 1.6rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.artist-style { font-size: 1rem; color: #a0cfff; margin-bottom: 8px; }
.artist-excerpt { font-size: .95rem; line-height: 1.4; margin-bottom: 12px; color: #eaeaea; }

/* Socials + Tooltips */
.artist-socials { position: relative; display: flex; gap: 10px; margin-bottom: 10px; }
.artist-socials a {
  position: relative; color: #00bfff; font-size: 1.2rem; transition: color .25s ease, transform .25s ease;
}
.artist-socials a:hover { color: #fff; transform: translateY(-1px); }
.artist-socials a::after {
  content: attr(data-label);
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -22px;
  background: rgba(0,0,0,.7); padding: 2px 6px; border-radius: 6px; font-size: .7rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.artist-socials a:hover::after { opacity: 1; }

/* CTA Button + Micro Glow */
.artist-link {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: linear-gradient(90deg,#007bff,#00d4ff); color:#fff; font-size:.92rem; font-weight:700; text-decoration:none;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 0 rgba(0,212,255,0);
}
.artist-link:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 0 18px rgba(0,212,255,.6); }

/* No results */
.no-artists { color: #aaa; font-size: 1.1rem; margin-top: 40px; }

/* Accessibility helper */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Neu-Badge */
.badge-new { position:absolute; top:12px; left:12px; z-index:3; background:linear-gradient(90deg,#00d4ff,#007bff); color:#fff; font-weight:800; font-size:.75rem; padding:4px 10px; border-radius:999px; box-shadow:0 0 10px rgba(0,212,255,.6); }


/* Responsive */
@media (max-width: 992px) {
  .artist-card { max-width: 100%; min-height: 480px; }
  .artist-info h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  .artists-archive-section { padding: 70px 15px; }
  .artists-title { font-size: 2.2rem; margin-bottom: 26px; }
  .artist-card { min-height: 440px; }
  .artist-excerpt { font-size: .9rem; }
}
@media (max-width: 480px) {
  .artists-archive-section { padding: 60px 10px; }
  .artist-card { min-height: 400px; }
  .artist-info { text-align: center; }
  .artist-socials { justify-content: center; }
  .artist-link { font-size: .86rem; }
}
