:root {
  --border-color: #324124;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #e0e0d0;
}

#landing img {
  width: 100%;
  display: block;
  margin: 0;
  border: none;
}

.listen-links,
.social-links {
  text-align: center;
  background-color: #000;
  padding: 1rem;
}

.listen-links a,
.social-links a {
  margin: 0 1rem;
  display: inline-block;
}

.listen-links img,
.social-links img {
  width: 35px;
  height: 35px;
  filter: saturate(70%) brightness(90%) contrast(100%) sepia(40%);
  /* filter: brightness(0) saturate(100%) invert(92%) sepia(59%) saturate(371%) hue-rotate(49deg) brightness(88%) contrast(89%); */
}

#landing h2 {
  text-align: center;
  padding: 1rem 0 0.5rem;
}

#landing h2.visit-heading {
  padding-bottom: 0;
}

#gallery,
#live,
#members {
  background-color: #111;
  padding: 2rem;
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gallery img {
  max-width: 200px;
  height: auto;
  min-height: 80px;
  min-width: 100px;
  flex: 0 1 auto;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 10px;
  object-fit: contain;
}

.gallery img:hover {
  transform: scale(1.05);
}

.show-list,
.show-list li {
  margin: 0;
  padding: 0;
}

#shows,
#past-shows {
  background-color: #111;
  padding: 3rem 0;
  text-align: center;
}

#shows h3,
#past-shows h3 {
  margin-bottom: 0.5rem;
}

.section-inner {
  width: min(90vw, 600px);
  max-width: 600px;
  margin: 0 auto;
}

.show-category {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  margin: 0.75rem auto;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  text-align: left;
}

.show-category h3 {
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: #c0d19b;
  text-align: center;
}

.show-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  width: 100%;
}

.show-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.show-item:last-child {
  border-bottom: none;
}

.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.show-date {
  font-weight: bold;
}

.show-location {
  font-size: 0.95rem;
}

.show-link {
  color: #c0ff90;
  text-decoration: none;
  font-weight: 600;
  margin-left: auto;
}

.show-info {
  color: #dfeecf;
  font-size: 0.95rem;
  white-space: pre-wrap;
  margin-left: 0.25rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.member {
  margin: 2rem auto;
  max-width: 600px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
}

.member h3 {
  margin-top: 0;
}

.member-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.member-photo:hover {
  transform: scale(1.02);
}

.members-group {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 10px;
  border: 2px solid var(--border-color);
}

#prevBtn,
#nextBtn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  font-size: 0.9rem;
}

footer a {
  color: #888;
  text-decoration: none;
}

@media (max-width: 600px) {
  .gallery img,
  .listen-links img,
  .social-links img {
    width: 25px;
    height: 25px;
  }
  #shows,
  #past-shows {
    padding: 2rem 0;
  }
  .show-category {
    padding: 1.25rem;
  }
}
