/* Artist Roster Section */
.artist-roster {
  padding: 100px 20px;
  background-image: url('../images/bg_logo.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.artist-roster::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.artist-roster h2,
.roster-grid {
  position: relative;
  z-index: 2;
}

.artist-roster h2 {
  scroll-margin-top: 100px;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.artist-card {
  background-color: #1e1e2f;
  padding: 30px;
  border-radius: 15px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}

.artist-card:hover {
  animation: bounce 1.0s ease;
  box-shadow: 0 10px 20px rgba(215, 0, 64, 0.3);
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-6px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.artist-card h3 {
  margin-top: 0;
  font-size: 22px;
}

.artist-card p {
  font-size: 16px;
  color: #ccc;
}

.artist-card a.cta-button {
  display: inline-block;
  margin-top: 15px;
  vertical-align: middle;
  line-height: 1.2;
  font-size: 18px;
  white-space: nowrap;
}
