/* =====================================================
   style.css — Thunder Mentalist (Light Theme)
   ===================================================== */

/* ---------- General Resets ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ---------- Body & Typography ---------- */
body {
  /* Light background */
  background-color: #FAFAFA;
  /* Dark text for contrast */
  color: #2E2E2E;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

/* Heading fonts (if you imported Oswald or Montserrat in index.html) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0.5rem;
}

/* Links */
a {
  color: #FF217C; /* accent color */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #C70F62; /* darker accent on hover */
}

/* ---------- Header ---------- */
.site-header {
  background-color: #FFFFFF;  /* white background */
  border-bottom: 1px solid #E0E0E0;
  text-align: center;
  padding: 1rem 0;
}

.logo-container {
  margin: 0 auto;
  display: inline-block;
}

.site-logo {
  max-width: 180px;
  height: auto;
}

/* ---------- Filters (Genre Buttons) ---------- */
.filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #FFFFFF; 
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding: 1rem 0;
}

.filter-button {
  background-color: #F4F4F4;
  border: none;
  color: #2E2E2E;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
  background-color: #FF217C; /* Vibrant accent color */
  color: #FFFFFF;
}

/* ---------- Carousel ---------- */
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  background-color: #FAFAFA;
}

.carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar if desired for a cleaner look */
}

/* Each band slide */
.band-slide {
  min-width: 300px;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

/* Band image inside the carousel card */
.band-slide img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

/* Band Info Text */
.band-info {
  margin-top: 0.5rem;
  text-align: center;
}

.band-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2E2E2E;
}

.band-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Links within band info */
.band-info a {
  margin-right: 1rem;
  font-weight: 600;
}

.band-info a:last-child {
  margin-right: 0;
}

/* ---------- Tour Banner ---------- */
.tour-banner {
  background-color: #FF217C; /* accent color */
  color: #FFFFFF;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.85rem;
  font-weight: bold;
}

/* ---------- Media Queries ---------- */
/* Adjust as needed for responsiveness */
@media (max-width: 600px) {
  .site-logo {
    max-width: 140px;
  }

  .band-slide {
    min-width: 85%; /* so each slide is wide on mobile */
  }
  
  .band-info h2 {
    font-size: 1.3rem;
  }
}
