/* Minimalist, responsive band website styles */
:root {
  --accent: #222;
  --bg: #fff;
  --text: #222;
  --muted: #888;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  /* Subtle, modern background: soft radial gradient */
  background: radial-gradient(circle at 60% 20%, #f3f6fb 0%, #e9eaf3 40%, #e3e3e3 100%);
  color: var(--text);
  line-height: 1.6;
}
header.hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem 1rem;
  background: var(--accent);
  color: #fff;
}
.band-logo {
  max-width: 320px;
  width: 60vw;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.15));
}
.tagline {
  font-size: 1.2rem;
  color: #eee;
  margin-top: 0.5rem;
}
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #f7f7f7;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}
nav a:hover {
  color: var(--muted);
}
section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}
h1, h2 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5em;
}
h2 {
  margin-top: 0;
  font-size: 2rem;
  letter-spacing: -1px;
}
h3, h4, h5, h6 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 0.5em;
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.media-grid img, .media-grid video {
  width: 100%;
  border-radius: var(--radius);
  background: #eee;
}
audio {
  width: 100%;
}
#event-list {
  list-style: none;
  padding: 0;
}
#event-list li {
  background: #f2f2f2;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  color: var(--accent);
}
footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  background: var(--accent);
}

/* Carousel and lightbox styles */
.carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 700px; /* Match the about section's max-width */
}
.carousel-main img {
  width: 100%;
  max-width: 700px;
  border-radius: var(--radius);
  cursor: pointer;
  background: #eee;
}
.carousel-thumbnails-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin-top: 0.5rem;
  position: relative;
}
.carousel-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding: 0.25rem 0;
}
.carousel-thumbnails::-webkit-scrollbar {
  display: none;
}
.carousel-thumb {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s, border 0.2s;
  flex-shrink: 0;
}
.carousel-thumb.active,
.carousel-thumb:hover {
  opacity: 1;
  border: 2px solid var(--accent);
}
.carousel-arrow {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 0.2rem;
  z-index: 1;
  transition: background 0.2s;
}
.carousel-arrow:focus,
.carousel-arrow:hover {
  background: var(--accent);
}
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox-close {
  top: 2rem;
  right: 2rem;
}
.lightbox-prev {
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
}

/* Audio player playlist */
.audio-player {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.audio-player audio {
  width: 100%;
  max-width: 400px;
}
.audio-playlist {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 400px;
}
.audio-track {
  padding: 0.7rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.3rem;
  background: #f7f7f7;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.audio-track.active, .audio-track:hover {
  background: var(--accent);
  color: #fff;
}
.audio-embed {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.audio-embed iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 8px;
  background: #000;
}
.video-embed {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.video-embed iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 8px;
  background: #000;
}
@media (max-width: 700px) {
  .audio-embed iframe, .video-embed iframe {
    min-height: 220px;
  }
}

/* Media section layout */
.media-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.media-area {
  width: 100%;
}
@media (min-width: 900px) {
  .media-sections {
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media (min-width: 700px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .band-logo {
    max-width: 200px;
    width: 90vw;
  }
  .carousel-main img {
    max-width: 98vw;
  }
  .carousel-thumbnails-wrapper {
    max-width: 98vw;
  }
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.icon-facebook {
  width: 32px;
  height: 32px;
  transition: transform 0.2s;
}
.social-icons a:hover .icon-facebook {
  transform: scale(1.12);
  filter: brightness(1.1);
}
