html {
  scroll-behavior: smooth;
  scroll-padding: 100px;
}


body {

  background-image: url("5.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
 
  
  
  margin: 0;
  padding-bottom: 75px;
 
}

main {
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: stretch;
  align-content: center;
  
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid white;
  padding-top: 0px;
  background-color: #000000;
  background-image: linear-gradient(to right,rgb(18, 18, 18),  black, rgb(29, 29, 29));
  margin-bottom: 0px;
 
  
}


.navbar a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration:none;
  
  display: inline-block;
  transition: transform 150ms, text-decoration 150ms;
  
}


.navbar a:hover {
  transform: scale(1.15);
  text-decoration: underline;
  
}


.nav-links {
  width: 30%;
  margin: 0 100px;
  display: flex;
  gap: 6%;
  justify-content: space-between;
  padding-right: 20px;
}
h1 {
  font-family: Aktiv Grotesk Ex;
  color: white;
  text-align: center;
  margin-bottom: 20px;
 
  margin-top: 0px;
}

h2 {
  margin: 0px;
}

.gallery {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 150px;
  gap: 0px;
}


.gallery-item {
  overflow: hidden;       
  border-radius: 0px;
}

.gallery img {
  width: 700px;
  height: auto;
  object-fit: contain;
  border: 8px solid white;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}






p {
  font-family: Aktiv Grotesk Ex;
  color: white;
}

a {
  font-family: Aktiv Grotesk Ex;
  color: white;
  text-decoration: none;
}
.normallogo {
  display: inline-block;
  width: 300px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
  transition: transform 0.2s;
 
}

.normallogo:hover {
  transform: scale(1.05);
  
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-right: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.spotifyembed {
  padding: 1% 10%;
}
.musicplayers {
  flex: 1;
  width: 100%;
  
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
 

}

.track-name {
  display: block;
  font-size: 25px;
  font-family: Aktiv Grotesk Ex;
  font-weight: 100;
  font-style: italic;
  color: rgb(255, 255, 255);
  margin-bottom: 0px;
  margin-left: 4px;
  opacity: 1;
  
}
.musicplayers audio {
  justify-content: flex-start;
  width: 100%;
  padding-top: 5px;
  margin-bottom: 30px;
  
}

.musicplayertitle {
  margin-left: 5px;
  font-size: 40px;
  font-family: Aktiv Grotesk Ex;
  font-weight: 900;
  color: white;
 
}
  





.band-bio {
  
  flex: 1;
  padding: 30px;
  
  background-color: rgba(0,0,0,0.4);
 
  font-family: Aktiv Grotesk Ex;
  font-weight: bold;
  color: white;
  text-shadow: 5px 5px 5px black;
  
}



.player-row {
  display: flex;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


/* Make artwork fixed size */
.individual-song-artwork {
  width: 200px;
  height: 200px;            /* optional: keep square */
  object-fit: cover;
  border-radius: 8px;      /* optional: rounded corners */
  
}

.artwork-player {
 
  display: flex;             /* make children horizontal */
  flex-direction: row;       /* row layout */
  gap: 20px;                 /* space between artwork and text/player */
  align-items: flex-start;   /* align top edges */
  background-color: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 10px; 
  }

.track-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;                /* fill remaining horizontal space */
}

/* Container for track info and player */
.artwork-player > .track-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;                   /* take remaining horizontal space */
}

/* Move title, description, and audio inside a track-info div */
.track-name, .individual-song-description, #audio-player {
  margin-bottom: 10px;
}

.individual-song-description {
  font-size: 20px;
  font-style: italic;
  line-height: 1.4em;
  
  /* flexible height to avoid clipping */
  max-height: 200px;      /* allows tall descriptions */
  overflow-y: auto;       /* scroll if too long */
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}



.tracklist {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tracklist button {
  background: none;
  border: none;
  color: white;
  font-family: Aktiv Grotesk Ex;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.tracklist button.active {
  opacity: 1;
  font-weight: bold;
  transform: translateX(6px);
}

.tracklist button:hover {
  opacity: 1;
  transform: translateX(6px);
}


/* ===== Next Song Button Styling ===== */
#next-track {
  background-color: rgba(255, 255, 255, 0.1); /* subtle translucent */
  border: 2px solid white;                    /* clean white border */
  color: white;
  font-family: 'Aktiv Grotesk Ex', sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover effect */
#next-track:hover {
  background-color: white;
  color: rgb(29, 1, 31); /* invert text for contrast */
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

/* Active / clicking effect */
#next-track:active {
  transform: scale(0.95);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

.blogcontainer {
  margin-top: 120px;
  padding: 1% 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.photocontainer {
  padding: 1% 10%;
}

.photos {
  
  
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;

}

.individualphoto {
  padding: 20px;
  background-color: rgb(255, 255, 255);
  border: 8px solid rgb(0, 0, 0);

  flex: 0 0 auto;
}

.photos img {
  
  width: auto;
  height: 600px;
  
  
  padding: 0px;
  margin: 0px;
}



.blog {
  max-width: 100%;
  width: 100%;
  
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 1% 5%;
 
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid white;
  
  
  outline: none;
   
}

.blogtitle {
  font-family: Aktiv Grotesk Ex;
  font-weight: lighter;
  font-style: italic;
  font-size: 50px;
  color: white;
  margin-left: 20px;
  text-align: left;
  margin-top: 20px;
}


.blog h2 {
  font-family: Aktiv Grotesk Ex;
  font-size: 50px;
  color: white;
  text-align: center;
  background-color: rgb(0, 0, 0);
}

.blog-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  
  
  
}

.blog-post-preview {
  font-family: Aktiv Grotesk Ex;
  background-color: rgb(21, 21, 21);
  padding: 20px;
  border: 1px solid white;
  
  margin: 8px;
  cursor: pointer;
  transition: background-color 0.15s;
  
  outline: none;
}

.blog-post-preview:hover {
  background-color: rgba(0, 0, 0, 1);
  
}

.blog-post-preview h3 {
  color: white;
  margin: 0 0 10px 0;
  font-size: 30px;
}

.blog-post-preview p {
  color: #ccc;
  margin: 0;
  overflow: visible;
  word-wrap: break-word;
}

.post-date {
  display: block;
  font-size: 14px;
  color: #999;
  font-weight: normal;
  margin-top: 5px;
}

.blog-post-date {
  font-family: Aktiv Grotesk Ex;
  font-size: 16px;
  color: #999;
  font-style: italic;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
}

.blog-post {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 30px;
  outline: none;
  color: white;
  border: solid white 2px;
  border-radius: 20px;
}

.blog-post h1, .blog-post h2, .blog-post h3 {
  color: white;

}

.blog-post p {
  color: #ddd;
  line-height: 1.6;
}

.blog-post a {
  font-size: large;
  color: #0066ff;
  text-decoration: underline;
}

.back-button {
  background-color: transparent;
  color: white;

  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 20px;
}








footer {
  
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: black;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid white;
  margin: 0px 0px 0px 0px;
  z-index: 100;
}

.passcode-container {
  margin-right: 40px;
  display: flex;
  gap: 10px;
}
.socialsbar {
  display: flex;
  margin-left: 20px;
  gap: 2em;
  
}


.instagramlogo, .youtubelogo, .tiktoklogo, .facebooklogo, .spotifylogo {
    filter: invert();
    display: inline-block;
    width: 40px;
    height: 40px;
    
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 50px;
    transition: all .2s;
    text-indent: -9999px;
}
.instagramlogo:hover, .youtubelogo:hover, .tiktoklogo:hover, .facebooklogo:hover, .spotifylogo:hover {
  
  transform: scale(1.2);
}

.instagramlogo {
    background-image: url("socialicons/icons8-instagram-100.png");
}

.youtubelogo {
    background-image: url("socialicons/icons8-youtube-100.png");
}

.tiktoklogo {
    background-image: url("socialicons/icons8-tiktok-100.png");
}

.facebooklogo {
    background-image: url("socialicons/icons8-facebook-100.png");
}

.spotifylogo {
    background-image: url("socialicons/icons8-spotify-96.png");
}




.merchcontainer {
  padding: 1% 10%;
  

  
}

.merchbox {
  
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  border: 2px solid white;
  padding: 20px;

  
  
  
  
}

.merchtitle {
  margin-left: 30px;
  margin-top: 10px;
  font-size: 3rem;
  font-style: italic;
  text-align: left;

}

.merchlist {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
  
}

.merchitem {
  padding: 30px;
  border: 2px solid white;
  
  background-color: black;
  
}

.merchitem:hover {
  opacity: 0.8;
}

.merchimage {
  max-width: 500px;
  
}

.merchdescription {
  font-weight: bold;
  font-size: 1.5rem;
}

.merchprice {
  font-weight: bolder;
  font-size: 2rem;
}

.event-list-container {
  padding: 1% 10%;
}

.event-list {
  display: flex;
  align-items: center;
  
}
.event-name-location {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  flex: 1;
  
  
  
  gap: 8px;
}

.event-location {
  margin:0;
}
.event-entry {
  display: flex;
  flex-direction: row;
  
  justify-content: space-between;
  
  
  
  margin: 0px;
  background-color: black;
  border-top: 2px solid white;
  width: 100%;
  padding: 20px;
  text-decoration: none !important;
  font-size: 20px;

}

.event-name {
  
  text-decoration: none !important;
  margin: 0;
}

.event-date {
  margin:0px;
}
  
.tickets-btn {
  font-size: 25px;
  background-color: rgb(222, 144, 0);
  background-image: linear-gradient(to right, rgb(255, 51, 0), rgb(255, 98, 0));
  text-align: center;
  padding: 20px;
  border-radius: 500px;
  text-decoration: none !important;
  margin: 0px;
  border: 2px solid white;
  align-content: center;
  
  
}
 
.tickets-btn:hover {
  opacity: 0.8;
}

.tour {
  background-color: black;
  padding: 30px;
  border: 2px solid white;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-align: left;
}

.tourtitle {
  font-size: 2rem;
  font-style: italic;
  text-align: left;
}
@media (max-width: 1200px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .normallogo {
    margin: 0px 0px;
    max-width: 60%;
  }
  
  .nav-links {
    width: 100%;
    margin: 0px 0;
    justify-content: space-around;
    flex-wrap: wrap;
    
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .musicplayers {
    padding: 20px;
  }
  
  .player-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .artwork-player {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .track-info {
    margin-top: 15px;
  }

  .socialsbar {
    gap: 1rem;
    margin-left: 0px;
  }

  footer {
    flex-direction: column;
    padding-right: 20px;
    gap: 15px;
  }

  .passcode-container {
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-left: 0px;
    margin-right: 10px;
  }

  .blogcontainer {
    padding: 1% 5%;
  }

  .blog {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .blogtitle {
    font-size: 30px;
    margin-left: 10px;
  }

  .blog h2 {
    font-size: 30px;
  }

  .event-list-container {
    padding: 1% 5%;
  }

  .event-list {
    flex-direction: column;
  }

  .event-entry {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .tour {
    padding: 15px;
  }

  .tickets-btn {
    font-size: 18px;
    padding: 12px 20px;
    width: auto;
    align-self: center;
  }

  .merchimage {
    max-width: 200px;
  }

  .gallery img {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .normallogo {
    width: 200px;
    margin: 15px;
  }

  .navbar a {
    font-size: 16px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    height: auto;
    background-color: #000000;
    background-image: linear-gradient(to right, rgb(18, 18, 18), black, rgb(29, 29, 29));
    flex-direction: column;
    padding: 20px 30px;
    gap: 15px;
    display: none;
    border: 2px solid white;
  }

  .nav-links.active {
    display: flex !important;
  }

  .hamburger {
    display: flex !important;
  }

  .blogtitle {
    font-size: 24px;
  }

  .blog h2 {
    font-size: 22px;
  }

  .photocontainer {
    padding: 1% 5%;
  }

  .photos img {
    height: 250px;
  }

  .spotifyembed {
    padding: 1% 5%;
  }

  .merchimage {
    max-width: 150px;
  }

  .gallery img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .normallogo {
    width: 150px;
    margin: 10px;
  }

  .navbar a {
    font-size: 14px;
  }

  .nav-links {
    gap: 2%;
  }

  .blogtitle {
    font-size: 20px;
  }

  .blog h2 {
    font-size: 18px;
  }

  .photocontainer {
    padding: 1% 3%;
  }

  .photos img {
    height: 200px;
  }

  .spotifyembed {
    padding: 1% 3%;
  }

  .merchimage {
    max-width: 120px;
  }

  .gallery img {
    width: 120px;
  }

  p {
    font-size: 14px;
  }

  a {
    font-size: 14px;
  }
}