/* 1. Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* 2. Fixed, full‑viewport background via pseudo-element */
body {
  background: none !important;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: url('images/black_textured_background.png') center center/cover no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* HERO VIDEO - FIXED FULL WIDTH */
.hero-video {
  position: relative;
  width: 100vw;
  height: 100vh; /* Increased from 60vh to 70vh for more height */
  min-height: 400px; /* Minimum height for smaller screens */
  max-height: 800px; /* Maximum height to prevent it from getting too tall on very large screens */
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  z-index: 1;
}

/* Video wrapper for better control */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Iframe styling - FORCE TRUE BACKGROUND BEHAVIOR */
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Force minimum dimensions to ensure full coverage */
  width: 100%;/*calc(100vw + 400px);*/
  height: 100%;/*calc(100vh + 200px);*/
  min-height: 100vh;
  border: 0;
  pointer-events: none;
}

/* Ensure no container restrictions */
.hero-video,
.hero-video iframe {
  max-width: none !important;
}

@media (max-width: 1400px) {
  .hero-video {
  position: relative;
  width: 100vw;
  height: 70vh;
}

  .hero-video iframe {
    /* pin to top‑center of the container */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* force full container height, let width overflow and be clipped */
    height: 100%;
    width: 250%;
    min-width: 100vw;

    /* your other rules can stay if you like */
    border: 0;
    pointer-events: none;
  }
}

@media (max-width: 900px) {
  .hero-video {
  position: relative;
  width: 100vw;
  height: 70vh;
}

  .hero-video iframe {
    /* pin to top‑center of the container */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* force full container height, let width overflow and be clipped */
    height: 100%;
    width: 250%;
    min-width: 100vw;

    /* your other rules can stay if you like */
    border: 0;
    pointer-events: none;
  }
}

/* 3. Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 30, 0.7) 0%,
    rgba(30, 30, 30, 0)   100%
  );
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 1000;
}
/* on scroll */
.navbar.scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

/* 4. Logo */
.logo {
  height: 70px;
}

/* hide the dark logo by default */
.logo--dark {
  display: none;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}
.logo-link img {
  vertical-align: middle;
}

/* once the navbar is scrolled… */
.navbar.scrolled .logo--light {
  display: none;   /* hide white logo */
}
.navbar.scrolled .logo--dark {
  display: block;  /* show black logo */
}

/* 5. Desktop nav links */
.navbar nav .nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
.navbar nav .nav-list a {
  font-family: 'Chicle', cursive;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar nav .nav-list a:hover {
  color: #C42026;
}
/* link colors when scrolled */
.navbar.scrolled nav .nav-list a {
  color: #1e1e1e;
}
.navbar.scrolled nav .nav-list a:hover {
  color: #C42026;
}

/* 6. Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
}
.nav-toggle span {
  display: block;
  width: 32px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
}
.navbar.scrolled .nav-toggle span {
  background: #1e1e1e;
}

/* 7. Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav-list a {
  font-family: 'Chicle', cursive;
  font-size: 2.5rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-nav-list a:hover,
.mobile-nav-list a:active,
.mobile-nav-list a:focus {
  color: #C42026;
}

/* 8. Social footer */
.social-footer {
  position: static;     /* let it flow naturally */
  width: 100%;          /* optional, can be omitted for static */
  padding: 2.2rem 0;      /* 2rem top & bottom padding */
  margin-top: 2rem;     /* extra gap above the footer */
  text-align: center;
  background: none;     /* keep it transparent */
}
.social-list {
  display: inline-flex;
  gap: 1.5rem;
  list-style: none;
}
.social-list a i {
  font-size: 2rem;
  color: #fff;
  transition: color 0.2s ease;
}
.social-list i.fa-facebook-f:hover { color: #1877F2; }
.social-list i.fa-instagram:hover  { color: #E4405F; }
.social-list i.fa-spotify:hover    { color: #1DB954; }
.social-list i.fa-youtube:hover    { color: #FF0000; }

/* 9. Main wrapper: true 900px container */
.site-main {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0 4rem;    /* reduced top padding since video is now at top */
  position: relative;
}

/* 10. Band intro section */
.band-intro {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;        /* horizontal gutter */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.band-photo {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.band-info {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.band-info h2,
.band-info p {
  font-family: 'Chicle', cursive;
}
.band-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #C42026;
}
.band-info p {
  font-weight: 300;
  line-height: 1.6;
  color: #333;
}

/* 11. Stream Us section */
.stream-us {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
}
.stream-us h2 {
  font-family: 'Chicle', cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
}
.spotify-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.spotify-card iframe {
  width: 100%;
  height: 352px;
  border: none;
  display: block;
}

/* — WATCH US — */
.watch-us {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
}

.watch-us h2 {
  font-family: 'Chicle', cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* match the “card” look of your Spotify embed */
.watch-us .video-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  aspect-ratio: 16 / 9;
}

.watch-us .video-container iframe {
  width: 100%;
  /* adjust height as needed (e.g. 500px) */
  height: 100%;
  border: none;
  display: block;
}

/* — CONTACT US — */
.contact-us {
  text-align: center;
  padding: 4rem 2rem;
}

.contact-us h2 {
  font-family: 'Chicle', cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* the dark, semi‑transparent "card" */
.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 2rem;
}

.contact-card p {
  font-family: 'Cal Sans', sans-serif;
  color: #1e1e1e;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Make mailto/tel links white inside the contact card */
.contact-card a {
  color: #1e1e1e;
  text-decoration: none;      /* or underline if you prefer */
}

.contact-card a:hover,
.contact-card a:focus {
  color: #C42026;
  text-decoration: underline; /* optional hover cue */
}

/* 12. Responsive tweaks */
@media (max-width: 992px) {
  .navbar { padding: 1rem; }
  .navbar nav { display: none; }
  .nav-toggle { display: flex; }
  .social-footer { bottom: 1rem; }
}

@media (max-width: 700px) {
  .logo { height: 50px; }
}

@media (max-width: 600px) {
  .band-intro,
  .stream-us {
    padding: 0 1rem;
  }
  .stream-us h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
  .watch-us h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .contact-us {
    padding: 2rem 1rem;
  }
  .contact-us h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .contact-card p {
    font-size: 1rem;
  }
}


/* — GIGS PAGE — */
.gigs-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: left;
}

.gigs-section h2 {
  font-family: 'Chicle', cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.gigs-list {
  display: grid;
  row-gap: 1rem;
}

.gigs-list .gig-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.gig-date,
.gig-venue,
.gig-time {
  font-family: 'Cal Sans', sans-serif;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
}

.gig-date {
  font-weight: 700;
}

.gig-date  { text-align: left; }
.gig-venue { text-align: center; }
.gig-time  { text-align: right; }

.gigs-list .gig-venue a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.gigs-list .gig-venue a:hover,
.gigs-list .gig-venue a:focus {
  color: #C42026;
}

@media (max-width: 700px) {
  /* tighten up the row gaps */
  .gigs-list {
    row-gap: 0.5rem;
  }

  /* each gig becomes a single centered column */
  .gigs-list .gig-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    /* keep your padding & border */
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  /* smaller, centered text for all three “columns” */
  .gig-date,
  .gig-venue,
  .gig-time {
    font-size: 1rem;
    text-align: center;
    /* date is already bold via .gig-date { font-weight:700 } */
  }

  /* give a little breathing room before the time */
  .gig-time {
    margin-top: 0.25rem;
  }
}

/* — CONTACT FORM section — */
.contact-form-section {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
}

.contact-form-section h2 {
  font-family: 'Chicle', cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* white “bubble” box */
.form-container {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* each form row */
.form-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 1.25rem;
  text-align: left;
}

/* field labels */
.form-row label {
  font-family: 'Cal Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

/* required asterisk */
.required {
  color: #C42026;
}

/* inputs & textarea */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  font-family: 'Cal Sans', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: #C42026;
}

/* attach row: label + file input + count inline */
.attach-row {
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
/* make your label look like a button */
.attach-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e1e1e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Cal Sans', sans-serif;
  transition: background 0.2s ease;
}
.attach-row label:hover,
.attach-row label:focus {
  background: #C42026;
}
.attach-row input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* file‑count text */
.file-count {
  font-family: 'Cal Sans', sans-serif;
  color: #555;
  font-size: 0.875rem;
}

/* submit button */
.btn-send {
  font-family: 'Cal Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  background: #1e1e1e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: block;
  margin: 1rem auto 0;
}
.btn-send:hover {
  background: #C42026;
}

/* responsive */
@media (max-width: 500px) {
  .form-container {
    padding: 1.5rem;
  }
  .btn-send {
    width: 100%;
  }
}

/* — ABOUT US SECTION — */
.about-us {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
}
.section-title {
  font-family: 'Chicle', cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
}
.about-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.band-photo {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}
.about-text {
  font-family: 'Cal Sans', sans-serif;
  color: #1e1e1e;
  font-size: 1rem;
  line-height: 1.25;
  max-width: 800px;
  text-align: left;
}
@media (max-width: 700px) {
  .about-card {
    padding: 1.5rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .about-text {
    font-size: 1rem;
  }
  .members-header {
    font-size: 2.5rem;
  }
}
