
@font-face {
  font-family: 'Chromosome Light';
  src: url('chromosome-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
    font-family: 'Chromosome Light', Arial, sans-serif;
    color: white;
    background-color:black;
    overflow-x: hidden;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
nav {
    background-color: black;
}
nav ul {
    list-style: none;
    padding: 10px;
    margin: 0;
    display: flex;
    justify-content: space-around;
}
nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px;
}
nav ul li a.active {
    font-weight: bold;
}

.sand {
    background-image: url(sand.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    color: 
}

.shows-bg {
    background-image: url('shows-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x: hidden;
    color: white;
}

.shop-bg {
background-image: url('sand.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x: hidden;
    color: white;
}

.music-bg {
    background-color: #0000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.social-bg {
    background-image: url('gradient.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

#shop {
  position: relative;
  background-image: url("sand.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.shop-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}


.shop-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.closet-button {
  margin-top: 20px;
  font-family: 'Chromosome Light', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  border: 2px solid white;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.closet-button:hover {
  background-color: white;
  color: black;
}

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .social-icons img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }
  
  .social-icons img {
    width: 100px;
    height: auto;
    filter: invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
    filter: invert(0.6);
  }

  .request-banner {
    background-color: white;
    text-align: center;
    padding: 35px 0;
    margin-top: 60px;
  }
  
  .request-button {
    font-family: 'chromosome-light', sans-serif;
    background-color: black;
    color: white;
    padding: 14px 28px;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .request-button:hover {
    background-color: #333;
  }
  
  #social {
    min-height: 60vh;
  }
  @media (max-width: 768px) {
    #shop,
    #music,
    #shows {
      height: 80vh; 
    }
  
    #social {
      min-height: 40vh;
    }
  
    .request-banner {
      padding: 20px 0;
      margin-top: 40px;
    }
  
    .request-button {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  
    .social-icons img {
      width: 70px;
    }
    @media (max-width: 768px) {
      .home {
        min-height: 100vh;
        padding-bottom: 0;
        background-size: cover;
        background-position: center;
      }
    
      .home h1 {
        margin-bottom: 1em;
      }
    
      .home .enter-button {
        margin-bottom: 0;
      }
    }
    #music {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 0 20px; /*used to be 50*/
    }
    }
    @media (max-width: 768px) {
      #music iframe {
        width: 90vw;
        height: 315px;
        max-width: 100%;
      }
    
      #music {
        padding: 20px 0;
        gap: 20px;
      }
    }
    @media (max-width: 768px) {
      #music iframe {
        width: 90vw;
        height: 280px;
        max-width: 100%;
        margin-bottom: 20px; /* prevents overlapping */
      }
    
      #music {
        padding-bottom: 60px; /* gives enough space below embeds */
      }
    
      #shows {
        margin-top: 40px; /* prevents shows from jumping up under embeds */
      }
    }
    /* Hide and show based on screen size */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .mobile-only img {
    width: 50px;
    height: auto;
  }
}
/* Force players to stay in original position for desktop */
.music-content.desktop-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Hide the players and show buttons only on mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .mobile-only img {
    width: 100px;
    height: auto;
    filter: invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .mobile-only img:hover {
    transform: scale(1.1);
    filter: invert(0.6);
  }

  /* Ensure mobile layout doesn't push into next section */
  #music {
    padding-bottom: 40px;
  }

  #shows {
    margin-top: 40px;
  }
}

.music-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.music-buttons img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
  filter: none !important;
}

.music-buttons img:hover {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .music-embeds {
    display: none;
  }

  .music-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
    display: flex;
  }


/* Buttons only show on mobile */
.music-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.music-buttons img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.music-buttons img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

/* Desktop music players show by default */
.music-players {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 0 auto;
  max-width: 1000px;
  padding: 20px;
}

/* Mobile overrides */
@media (max-width: 768px) {
  .music-players {
    display: none;
  }

  .music-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
    display: flex;
  }
}
/* Hide music buttons on desktop by default */
.music-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  display: none;
}

/* Show music buttons and style them like the social logos on mobile */
@media (max-width: 768px) {
  .music-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .music-buttons img {
    width: 100px;
    height: auto;
    filter: invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .music-buttons img:hover {
    transform: scale(1.1);
    filter: invert(0.6);
  }
}

section {
  padding: 0;
  margin: 0;
  width: 100%;
}

.music-bg,
.shop-bg,
.shows-bg,
.social-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  width: 100%;
}

}
@media screen and (max-width: 768px) {
  #music .music-links img {
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .music-buttons img {
    width: 60px !important;
    height: auto !important;
    margin: 0 10px;
  }

  .music-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
   /* gap: 1rem; */
  }
}
 

.section-title {
  text-align: left !important; 
  padding-left: 0px;
  font-size: 36px;
  margin-left: 0px;
  text-align: left;
  text-transform: lowercase;

  
}

@media screen and (max-width: 768px) {
  #music .section-title {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  #music { 
    display: block !important;
  }
}
/* Desktop: keep players to a fixed card width so the row can center */
@media (min-width: 769px) {
  #music .music-players {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;        /* room for 2–3 across */
    padding: 20px;
  }

  /* Stop the global iframe rule from forcing full width */
  #music .music-players iframe {
    width: 560px;             /* pick a consistent desktop width */
    max-width: 560px;
    min-width: 769px;
    height: 315px;            /* 16:9 YouTube-style; adjust if you prefer */
    flex: 0 0 560px;          /* each player is a fixed card */
    margin: 0;                /* flex gap handles spacing */
  }
}
/* Ensure Music has the same mobile gutter as Shop */
@media (max-width: 768px) {
  #music {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #music .section-title {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
  }
}
@media (min-width: 769px) {
  #music .music-players { justify-content: center; gap: 24px; }

  /* Spotify */
  #music .music-players iframe[src*="open.spotify.com"]{
    width: 600px; max-width: 600px; height: 152px; flex: 0 0 600px;
  }

  }

  /* YouTube (16:9) */
  #music .music-players iframe[src*="youtube.com"]{
    width: 560px; max-width: 560px; aspect-ratio: 16/9; height: auto; flex: 0 0 560px;
  }
  .home-presave {
    position: absolute;
    bottom: 100px;        /* distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .presave-button {
    font-family: 'Chromosome Light', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    border: 2px solid white;
    padding: 12px 24px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
  }
  
  .presave-button:hover {
    background-color: white;
    color: black;
  }

  @media (max-width: 768px) {
    .home-presave {
      bottom: 300px;  /* higher on mobile */
    }
  }
  /* 1) Keep padding from pushing sections wider than the viewport */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* 2) Stop sections from being 100% + padding wide */
section { width: auto; }  /* overrides earlier width:100% */

/* 3) Kill the 100vw drift on bg sections */
.shows-bg,
.shop-bg,
.social-bg { width: 100%; }

/* 4) Make the hero image not leave any inline gap */
#home img { display: block; width: 100%; height: auto; }

@media (max-width: 768px) {
  #music {
    min-height: auto !important;   /* no forced full-screen height */
    padding: 40px 20px 20px !important; /* tighten spacing */
  }

  #music iframe {
    height: 200px !important;  /* smaller embeds if you want */
  }

  #music .music-buttons {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
/* Stack "presave" over "10/3" and center both */
.presave-button {
  display: inline-flex;              /* stackable & centerable */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;                          /* space between lines */
  line-height: 1.1;                  /* tighter than default */
  padding: 14px 28px;                /* a bit taller for two lines */
  text-decoration: none;             /* no underline */
}

/* Top line */
.presave-button .btn-top {
  text-transform: uppercase;         /* keep your all-caps look */
  font-size: 20px;
}

/* Date line */
.presave-button .btn-sub {
  text-transform: none;              /* keep numbers as-is */
  font-size: 16px;                   /* slightly smaller than title */
  opacity: 0.95;
}
.presave-text {
  font-family: 'Chromosome Light', sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 12px;  /* space between text and button */
  text-align: center;
}