/* Discover Bands Intro */
.discover-intro {
  text-align: center;
  margin-bottom: 40px;
}

.discover-intro h2 {
  font-size: 2.4rem;
  color: #ffb37a;
  text-shadow: 0 0 12px rgba(255, 120, 40, 0.7);
  margin-bottom: 15px;
}

.discover-intro p {
  font-size: 1.15rem;
  color: #e6e6e6;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Band Grid */
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 260px);
  justify-content: center;
  gap: 30px;
  align-items: start;
}

.band-card {
  display: flex;
  flex-direction: column;
  height: 460px; /* adjust to your design */
  overflow: hidden;
}

.band-card p,
.band-card h3 {
  margin: 0 0 10px 0;
}

.band-thumb img {
  width: 100%;
  height: 180px; /* or whatever height you prefer */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  border-radius: 10px; /* or match your card’s radius */
}

.band-name {
  font-size: 1.4rem;
  color: #ffb37a;
  margin-bottom: 8px;
}

.band-genre {
  font-size: 1rem;
  color: #ffdfc9;
  margin-bottom: 10px;
}

.band-desc {
  flex: 1 1 auto;
  min-height: 80px; /* ensures it never collapses */
  max-height: 110px;
  overflow-y: auto;
}

.band-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff7a18, #af002d 70%);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(255, 120, 40, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 12px;
  flex-shrink: 0; /* prevents it from being pushed out */

}

.band-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 120, 40, 0.9);
}

.band-desc::-webkit-scrollbar {
  width: 6px;
}

.band-desc::-webkit-scrollbar-thumb {
  background: rgba(255, 120, 40, 0.6); /* ember orange */
  border-radius: 3px;
}

.band-desc::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 140, 60, 0.9);
}

/* CTA */
.discover-cta {
  margin-top: 60px;
  text-align: center;
}

.discover-cta h3 {
  font-size: 1.8rem;
  color: #ffb37a;
  margin-bottom: 10px;
}

.discover-cta p {
  font-size: 1.15rem;
  color: #e6e6e6;
}

