@font-face {
    font-family: 'Comic Sans MS Custom';
    src: url('./Comic Sans MS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 1. Global Reset and Box-Sizing */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }
  
  /* 2. Body Styles */
  body {
    background-color: black;
    color: blue;
    font-family: "Comic Sans MS", "Comic Sans MS Custom", sans-serif;
    text-align: center;
    background-image: url('https://web.archive.org/web/20090831030452/http://geocities.com/music9494/-001.gif');
    background-repeat: repeat;
  }
  
  /* 3. Header & Animation */
  header {
    background: linear-gradient(to right, #ff0000, #0000ff);
    padding: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 5px ridge yellow;
    animation: flashColors 2s infinite alternate;
  }
  
  @keyframes flashColors {
    0% {
      filter: hue-rotate(0deg);
    }
    100% {
      filter: hue-rotate(360deg);
    }
  }
  
  /* 4. Logo */
  .logo {
    width: 20vw;
  }

  .online-gif {
    display: block;
    width: auto;
    height: 5vh;
    max-width: 30%;
    margin: -3vh 0 0;
}

.online-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 10px;
  margin: 0 auto 0;
}

.spinning-globe {
  width: auto; /* Adjust if needed */
  height: 4vh;
  max-width: 10%;
  margin: -2.5vh 0 0;
}
  
  /* 5. Marquee Container & Link */
  .marquee-container {
    overflow: hidden;
    width: 100%;
    background: black;
    padding: 10px 0;
    border-top: 3px dashed red;
    border-bottom: 3px dashed blue;
    position: relative;
  }
  
  .marquee-link {
    font-size: 1.2em;
    color: yellow;
    font-weight: bold;
    text-shadow: 2px 2px 4px red;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .marquee-link img {
    margin: 0 10px;
  }
  
  /* 6. Navigation */
  nav ul {
    list-style: none;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    border: 3px dashed cyan;
    flex-wrap: wrap;
  }
  
  nav ul li {
    display: inline;
  }
  
  nav a {
    text-decoration: none;
    font-size: 1.5em;
    color: white;
    padding: 10px 20px;
    background: linear-gradient(to right, red, blue);
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 4px 4px 0px magenta;
  }
  
  nav a:hover {
    background: limegreen;
    color: black;
    transform: scale(1.1);
    box-shadow: 6px 6px 0px yellow;
  }
  
  /* 7. Headings (for Sections) */
  h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: red;
    font-family: "Comic Sans MS", "Comic Sans MS Custom", sans-serif;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
  }
  
  /* 8. Section Styles */
  section {
    margin: 20px;
    padding: 20px;
    border: 5px groove hotpink;
    background: rgba(0, 0, 0, 0.8);
  }
  
  /* 9. Additional Helper for GIF Row */
  .gif-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
  }

  .gif-row img {
    max-width: 30%;
    height: auto;
  }
  
  /* 10. Bio & Band Photos */
  .band-photos-about {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .bio {
    width: 30%;
    border: 5px solid white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    display: grid;
  }
  
  .bio img {
    width: 100%;
    height: auto;
  }
  
  /* 11. Scroller GIF */
  .scrollergif {
    width: 100%;
    height: auto;
  }

  .bannergif {
    height: 5vh;
    width: auto;
  }
  
  /* 12. Fun Button */
  .fun-button {
    display: inline-block;
    padding: 12px 20px;
    background: #40a0ff;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    margin: 10px;
    transition: 0.3s;
    font-family: "Comic Sans MS", "Comic Sans MS Custom", sans-serif;
    box-shadow: 0px 0px 10px #40a0ff;
  }
  
  .fun-button:hover {
    background: #ff4081;
    box-shadow: 0px 0px 15px #ff4081;
  }
  
  /* 13. Contact Section */
  #contact p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  #contact .contact-links {
    margin-top: 20px;
  }
  
  /* 14. Social Icons */
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    display: inline-block;
    margin: 0 15px;
  }
  
  .social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
  }
  
  .social-icons a:hover img {
    transform: scale(1.2);
  }
  
  /* 15. Unordered List (Show Dates) */
  ul {
    display: inline-block;
    text-align: left;
    justify-items: left;
  }
  
  ul li {
    font-size: 1.4em;
  }
  
  /* 16. Responsive Adjustments */
  @media (max-width: 600px) {
    h2 {
      font-size: 2em;
    }
  
    nav a {
      font-size: 1.2em;
      padding: 8px 16px;
    }
  
    .fun-button {
      font-size: 1em;
      padding: 10px 15px;
    }
  
    .bio {
      width: 80%;
    }
  
    .logo {
      width: 45vw;
    }
  }
  
  /* Media Section Grid */
.media-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  padding: 20px;
  width: 100%;
}

/* Embedded Videos */
.embed-container {
  width: 100%;
  max-width: 80%;
}

/* Ensure iframe fits the container */
.embed-container iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.instagram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: auto;
  height: auto;
}

.instagram-media {
  width: 100% !important;
  max-width: 500px !important;
  min-width: 320px !important;
  height: auto;
  aspect-ratio: 4 / 6 !important;
  display: block;
}
