/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: #eee;
  background: #111;
}

a {
  color: #9adf4f;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #b8f070;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-logo:hover {
  color: #9adf4f;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ccc;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #9adf4f;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #eee;
  transition: transform 0.3s;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 500px;
  background-image: url("../images/band/band-hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: #9adf4f;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section.dark {
  max-width: none;
  background: #181818;
}

.section.dark > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: #999;
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ===== INTRO ===== */
.intro-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: #ccc;
}

.cta {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #9adf4f;
}

/* ===== VIDEOS ===== */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent white;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}



/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(154, 223, 79, 0.2);
}

.photo-featured {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.photo-featured img {
  width: 100%;
  max-width: 900px; /* controls how wide it can get */
  height: auto;
  border-radius: 8px;
}

.venues {
  text-align: center;
  color: #999;
  font-size: 0.95rem;
}

/* ===== BAND GRID ===== */
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.band-member {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s, transform 0.3s;
}

.band-member:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.member-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #333;
  transition: border-color 0.3s;
}

.band-member:hover .member-photo {
  border-color: #9adf4f;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.role {
  color: #9adf4f;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.bio {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  padding-top: 1rem;
}

.contact-info a {
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: #ccc;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #9adf4f;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #333;
  border-radius: 6px;
  background: #222;
  color: #eee;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #9adf4f;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form button {
  padding: 0.8rem 2rem;
  background: #9adf4f;
  color: #111;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: #b8f070;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid #222;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #999;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #9adf4f;
}

.divider {
  color: #444;
  margin: 0 0.3rem;
}

.small {
  opacity: 0.5;
  font-size: 0.85rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .band-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    height: 80vh;
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .member-photo {
    width: 150px;
    height: 150px;
  }
}

.show-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.show-list li {
  list-style-type: none;
}

/* ===== BACKGROUNDS: SHOWS + CONTACT ===== */

/* Make these sections full-width backgrounds (like .section.dark does),
   while keeping content constrained by your existing structure */
#shows,
#contact {
  max-width: none;
  position: relative;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background images (adjust filenames/paths to your files) */
#shows {
  background-image: url("../images/backgrounds/shows-bg.jpg");
}

#contact {
  background-image: url("../images/backgrounds/contact-bg.jpg");
}

/* Dark overlay for readability */
#shows::before,
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* tweak: 0.5 lighter, 0.75 darker */
  z-index: 0;
}

/* Keep all section content above the overlay */
#shows > *,
#contact > * {
  position: relative;
  z-index: 1;
}

/* Optional: give Contact form a slightly more solid panel on busy backgrounds */
#contact .contact-form input,
#contact .contact-form textarea {
  background: rgba(17, 17, 17, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  border-color: #9adf4f;
}

