﻿/* Custom CSS */

/* Navbar */
.band-name {
  font-family: 'Miltonian Tattoo', cursive;
}

/* Shows */
.quotes-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quote-card {
  background-color: #1a1a1a; /* Dark background for contrast */
  color: white;
  padding: 1rem;
  flex: 1 1 calc(33.333% - 1rem); /* 3 per row with spacing */
  box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
}

.quote-card p:first-of-type {
  font-family: 'Pangolin';
  font-style: italic;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.quote-card p:nth-of-type(2) {
  font-style: italic;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: 'Merienda';
  margin-bottom: 0.5rem;
  text-align: center; /* Optional: centers the name */
}

/* Mobile responsive: stack vertically */
@media (max-width: 600px) {
  .quote-card {
    flex: 1 1 100%;
  }
}

/* Band */
/* Band Intro */
.about-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 1rem;
}

#about-text {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7); /* Soft black, slightly transparent */
  font-size: 1.2rem;
  line-height: 1.6;
}

.signature {
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  margin-top: 1rem;
  color: inherit
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.band-member img {
  width: 90%;
  max-width: 300px;
}

.band-member {
  text-align: center;
}

.full-width {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Gallery */
.static-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 10px;
  width: 80%;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

@media (min-width: 1024px) {
  .static-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 600px) {
  .static-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Gallery lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 5px;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 0 20px;
  transform: translateY(-50%);
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

.close-btn:hover {
  color: #ccc;
}
