body {
  font-family: sans-serif;
  padding: 20px;
  color: #333;
}

h1 {
  text-align: center;
}

#search-area {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
}

#search-area input {
  flex-grow: 1;
  padding: 10px;
  font-size: 16px;
}

#band-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.band-card {
  display: block;
  text-decoration: none; /* removes underline */
  color: inherit;         /* ensures it keeps the default text color */
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.band-overlay {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.band-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  flex-shrink: 0;
}

.band-info h2 {
  margin: 0 0 6px;
  color: white;
}
.band-info p {
  margin: 2px 0;
}

.band-card {
  text-decoration: none !important;
}