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;
 
}

body.epk {
  background-image: none;
  background-color: black;
  
}

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

main.epk {
  margin-top: 3vh;
  padding: 1% 5%;
  display: flex;
  flex-direction: column;
  justify-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));
  
 
  
}


.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 50px;
  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;
  /* keep right-aligned and centered whenever it becomes visible */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.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");
}


.mailinglistcontainer {
  padding: 1% 10%;
  max-width: 100%;
  box-sizing: border-box;
  border: 2px solid white;
  background-color: black;
  margin-top: 20px;
  
}

.mailinglistcontainer iframe {
  max-height: 600px;
  min-height: 400px;
  display: block;
}

.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;

  
  
  
  
}

.hook {
  
  font-family: Aktiv Grotesk Ex;
  font-style: italic;
  color: white;
  font-size: clamp(1.5rem, 3rem, 5rem);
  
  text-align: center;
  margin-top: 100px;
  margin-bottom: 0px;
  
}

.hook2 {
  
  font-family: Aktiv Grotesk Ex;
  
  color: white;
  font-size: clamp(1.3rem, 2.7rem, 4rem);
  
  text-align: center;
  margin-top: 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;
}

.epkgallery, .epkgallery2 {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  
  flex-wrap: nowrap;
  gap: 0px;
  padding: 1em;
  justify-content: center;
}


.epkgallery img {
  flex: 1 1 0;
  min-width: 0;        /* VERY important */
  max-width: 100%;
  width: auto;
  height: auto;

  
  border: 4px solid white;
}

.epkgallery2 img {
  flex: 1 1 0;
  min-width: 0;        /* VERY important */
  max-width: 20%;
  width: auto;

  
  border: 4px solid white;
}

.epk-youtube-embeds {
  display: flex;
  flex-direction: row;
  gap: 20px;
  
  flex-wrap: nowrap;
}

.youtube {
  flex: 1;                
  aspect-ratio: 16 / 9; 
}

.youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}



.microdescription h3 {
  
  font-family: Aktiv Grotesk Ex;
  color: white;
  margin: 0px;
  padding: 0px;
}

.epkbox {
  border: 2px solid white;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px;
}

.biobox {
  padding: 0% 20%;
}

.epkbio {
  display: flex;
  flex-direction: column;
  
  align-items: center;
}

.epkbio p {
  text-align: center;
  font-size: clamp(2rem, 2rem, 4rem);
}

.epkbio h3 {
  font-family: Aktiv Grotesk Ex;
  color: white;
  text-align: center;
  font-size: clamp(1.5rem, 2.5rem, 3.5rem);   
  margin-top: 0px;
  margin-bottom: 0px;
  
}
.epkbio ol {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.epkbio li {
  padding: 0;
  font-family: Aktiv Grotesk Ex;
  color: white;
  margin-bottom: 10px;
  text-align: center;
  
  list-style-type: disc;
  font-size: clamp(0.7rem, 1.5rem, 2rem);
}



.logosection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: rgb(50, 50, 50);
  border: 2px solid white;
  padding: 20px;
}

.logosection img {
  width: 50%;
}


@media (max-width: 1200px) {
  
  .epkbio p {
    font-size: 20px;
  }
  
  

  
  .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: auto;
    right: 0;
    width: auto;
    max-width: 220px;
    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;
    margin-left: 0; /* ensure it's aligned right by absolute positioning */
  }

  .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) {
  /* General mobile optimizations */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  body.epk {
    padding-bottom: 100px;
    overflow-x: hidden;
  }

  main.epk {
    margin-top: 30px;
    padding: 1% 4%;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
  }

  a {
    font-size: 14px;
  }

  /* Navigation optimizations */
  .normallogo {
    width: 150px;
    margin: 10px;
  }

  .navbar {
    position: relative;
    padding-top: 5px;
  }

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

  .nav-links {
    gap: 2%;
    left: auto;
    right: 0;
    width: auto;
    max-width: 220px;
  }

  .hamburger {
    margin-left: 0;
  }

  /* EPK-specific mobile styles */
  .hook {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .hook2 {
    font-size: 1rem;
    margin-top: 8px;
    margin-bottom: 25px;
  }

  /* YouTube embeds - stack vertically on mobile */
  .epk-youtube-embeds {
    flex-direction: column;
    gap: 15px;
  }

  .youtube {
    flex: 1;
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  /* Bio section - improve spacing */
  .epkbio {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .biobox {
    padding: 0 15px;
    margin-bottom: 25px;
    box-sizing: border-box;
  }

  .epkbio p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .epkbio h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .epkbio li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .epkbio ol {
    padding: 0;
    margin: 0;
  }

  /* EPK boxes - better padding */
  .epkbox {
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid white;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .epkbox h3 {
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .epkbox ol {
    padding-left: 20px;
    margin: 0;
  }

  .epkbox li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-family: Aktiv Grotesk Ex;
    color: white;
  }

  /* Gallery images - better sizing for mobile */
  .epkgallery, .epkgallery2 {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0.5em;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }

  .epkgallery img {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
    border: 3px solid white;
    margin-bottom: 10px;
  }

  .epkgallery2 img {
    flex: 1 1 48%;
    max-width: 100%;
    height: auto;
    border: 3px solid white;
  }

  /* Footer improvements */
  .socialsbar {
    gap: 1rem;
    margin-left: 0px;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
  }

  footer {
    flex-direction: column;
    padding: 15px 10px;
    padding-top: 20px;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }

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

  /* Mailing list mobile styles */
  .mailinglistcontainer {
    padding: 1% 3%;
    
    width: 100%;
    box-sizing: border-box;
  }

  .mailinglistcontainer iframe {
    max-height: 500px;
    min-height: 350px;
    width: 100%;
  }

  /* Blog section */
  .blogtitle {
    font-size: 20px;
    margin-left: 10px;
    overflow-x: hidden;
  }

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

  .blogcontainer {
    padding: 1% 3%;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    margin-top: 30px;
  }

  /* Photo section */
  .photocontainer {
    padding: 1% 3%;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }

  .photos img {
    height: 200px;
  }

  .spotifyembed {
    padding: 1% 3%;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }

  /* Merch section */
  .merchimage {
    max-width: 120px;
  }

  .gallery img {
    width: 120px;
  }

  .merchlist {
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
    width: 100%;
  }

  .merchitem {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .merchtitle {
    font-size: 1.5rem;
    margin-left: 15px;
  }

  /* Event list improvements */
  .event-list-container {
    padding: 1% 3%;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }

  .event-entry {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    font-size: 16px;
    box-sizing: border-box;
  }

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

  /* Tour section */
  .tour {
    padding: 15px;
    word-wrap: break-word;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }

  .tourtitle {
    font-size: 1.3rem;
  }
}