html {
    scroll-behavior: smooth;

    
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
    
    
  }

.nav-link {
    text-decoration: none;
    color: white;
    transition: 0.3s ease;

}

.nav-link:hover{
    scale: 1.2;
    transition: 0.3s ease;
text-shadow: 0px 0px 10px black;

}

.bandphoto {
    width: 25%; 
    height: auto; 
    display: block; 
    filter: grayscale(1) brightness(0.7);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.bandphoto:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.imagebox {
    position: relative;
    overflow: hidden;
}
/*
.imagebox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0px 0px 100px rgb(0 0 0 / 70%)    ;
    pointer-events: none;
    z-index: 2;
}
*/
.imagebox::after{
    content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
  z-index: 2;
}

#iframe1 {
    position: absolute;
    z-index: 2;
    left: 2rem;
    top: 2rem;
    width: 45%;
    height: auto;
}

#iframe2 {
    position: absolute;
    z-index: 2;
    right: 2rem;
    top: 2rem;
    width: 45%;
    height: auto;
}
  
.video-flex-container {
    position: absolute; z-index: 3; width: 100%; top: 0; 
    margin-top: 5rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    max-height: calc(665px - 10rem);
  }

  .video-wrapper {
    position: relative;
    flex: 1 1 300px;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    background: black;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  

  .section-header {
    font-size: 3rem;
    font-family: 'Rye', serif;
    color:white;
    position: absolute;
    top: 0px;
    text-align: center;
    width: 100%;
    z-index:3;
    text-shadow: 0px 10px 10px #000000;
  }


  .link-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: normal;

    
  }
  
/*


 
  .video-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    z-index: 3;
    position: relative;
  }
  
  .video-wrapper {
    flex: 1 1 300px;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    background: black;
  }
  
  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  */

  .button-flex-container {
    display: flex
    ;
    padding-top: 2rem;
    padding-bottom: 2rem;
        justify-content: center;
        gap: 2rem;
        /* padding: 2rem; */
        background-color: #060505;
        /* z-index: 2; */
        /* position: relative; */
        width: 100%;
  }
  
  .media-button {
    flex: 1 1 300px;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    font-size: 2rem;
    font-family: 'Rye', serif;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    filter: grayscale(1) brightness(0.7);
    transition: transform 0.4s ease, filter 0.4s ease;
    display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  }
  
  .media-button:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
  }
  