@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;
  cursor: url('./assets/cursor.png') 0 0, auto;
}

/* 2. Body Styles */
body {
  background-color: black;
  color: #4A90E2;
  font-family: "Comic Sans MS", "Comic Sans MS Custom", sans-serif;
  text-align: center;
  background-image: url('assets/gifs/retro-stars-bg.gif');
  background-repeat: repeat;
  font-size: 1.2em;
}

body.holiday-mode {
  background-image: url('assets/gifs/snow-bg.gif');
}

/* Holiday mode toggle: add/remove .holiday-mode on body to show seasonal accents */
body.holiday-mode section {
  position: relative;
  padding: 60px 20px 60px 20px;
}

body.holiday-mode section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: url('assets/gifs/christmas-lights.gif') repeat-x center top;
  background-size: contain;
  pointer-events: none;
}

body.holiday-mode section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: url('assets/gifs/christmas-lights.gif') repeat-x center bottom;
  background-size: contain;
  pointer-events: none;
  transform: scaleY(-1);
}

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

.album-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px auto 10px;
}

.album-art {
  width: min(80%, 420px);
  border: 6px double lime;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.album-caption {
  color: #fffa9d;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.live-cds-note {
  font-size: 1.4em;
  color: #00ffb7;
  text-shadow: 2px 2px 0 #ff00ff, -1px -2px 0 #ffffff;
  font-weight: bold;
  margin-top: 10px;
}

/* 10. Bio & Band Photos */
.band-photos-about {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
  width: 100%;
}

.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 5px solid white;
  padding: 1vw;
  /* Uses your adaptive sizing */
  width: 40vw;
  /* Keeps your original proportions */
  box-shadow: 0 0 1vw rgba(255, 255, 255, 0.5);
  text-align: center;
  justify-content: center;
}

/* Ensures the image and questions stay in the same row */
.bio-content {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  width: 100%;
  justify-content: center;
}

.bio img {
  width: 50%;
  /* Uses your existing adaptive sizes */
  height: auto;
  border: 0.3vw solid blue;
  box-shadow: 0 0 1vw rgba(72, 72, 255, 0.5);
}

li.showdate a {
  color:rgb(72, 72, 255)
}

.bio-questions {
  list-style-type: none;
  padding-left: 2vw;
  font-size: 1.1vw;
  /* Keeps your font scaling */
  color: red;
  text-align: left;
}

.bio-questions li {
  margin-bottom: 2vh;
}

.bio-name {
  margin-top: 1vw;
  font-size: 4vh;
}

#sheridan-name {
  color: red;
  text-shadow: 0.1vw 0.1vw 0.2vw rgba(255, 0, 0, 0.5);
}

#ryan-name {
  color: #4A90E2;
  text-shadow: 0.1vw 0.1vw 0.2vw rgba(0, 0, 255, 0.5);
}

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

.signup-form {
  margin: 0 auto 30px;
  max-width: 640px;
  background-color: rgba(0, 0, 0, 0.85);
  background-image: linear-gradient(120deg, rgba(255, 0, 255, 0.35), rgba(0, 255, 255, 0.35));
  background-blend-mode: screen;
  -webkit-background-blend-mode: screen;
  border: 4px dashed yellow;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.signup-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 240px;
  padding: 12px 14px;
  font-size: 1.1em;
  border-radius: 10px;
  border: 3px solid #40a0ff;
  background: rgba(0, 0, 0, 0.7);
  color: #4A90E2;
  box-shadow: inset 0 0 10px rgba(64, 160, 255, 0.6);
}

.email-input:focus {
  outline: none;
  border-color: #ff4081;
  box-shadow: 0 0 15px #ff4081, inset 0 0 12px rgba(255, 64, 129, 0.6);
}

.signup-status {
  min-height: 22px;
  margin-top: 12px;
  font-weight: bold;
}

.signup-status.success {
  color: #8cff8c;
  text-shadow: 0 0 8px #00ff9d;
}

.signup-status.error {
  color: #ffb347;
  text-shadow: 0 0 8px #ff4081;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 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);
}

/* Music Icons styling */
.music-icons {
  margin-top: 20px;
}

.music-icons a {
  display: inline-block;
  margin: 0 25px;
}

.music-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease-in-out;
}

.music-icons a:hover img {
  transform: scale(1.2);
}

/* 15. Unordered List (Show Dates) */
ul.dates {
  display: inline-block;
  text-align: left;
  justify-items: left;
}

ul.dates li {
  font-size: 1.4em;
}

/* Media Section Grid */
.media-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2vh;
  justify-items: center;
  align-items: center;
  padding: 2vh;
  width: 100%;
}

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

/* 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: 80%;
  margin: auto;
  height: auto;
}

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

.fruit-promo-image {
  width: 20%;
  margin: 20px auto;
  border: 5px solid red;
}

/* 16. Responsive Adjustments */
@media (max-width: 768px) {
  .fruit-promo-image {
    width: 60%;
  }

  .band-photos-about {
    flex-direction: column;
    gap: 3vh;
    width: 100% !important;
    justify-items: center;
  }

  .logo {
    width: 50vw;
    /* Adjusted for smaller screens */
  }

  h2 {
    font-size: 6vw;
    /* Responsive font size */
  }

  body {
    font-size: 4vw;
    /* Responsive font size */
  }

  .bio {
    width: 100% !important;
    margin: 0 auto;
    /* Center the bio within its container */
  }

  .bio-questions {
    font-size: 4vw;
    /* Responsive font size */
  }

  .bio-content {
    flex-direction: column;
    align-items: center;
    gap: 1vw;
  }

  .bio img {
    width: 80% !important;
    /* Adjusted for smaller screens */
  }

  .media-container {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* Instagram and YouTube embed adjustments */
  .embed-container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .instagram-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
  }

  nav ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
    margin: 0;

  }
  nav a {
    font-size: 3vw;
    padding: 5px 10px;
    width: 80%;
    box-shadow: 2px 2px 0px magenta;
    /* Adjusted for smaller screens */
  }
  .signup-row {
    flex-direction: column;
  }

  .email-input {
    width: 100%;
    padding: 5px 8px;
  }

  .fun-button {
    font-size: 3vw;
    padding: 8px 15px;
    width: 80%;
    /* Adjusted for smaller screens */
  }

  .music-icons a {
    margin: 0 15px !important;
  }

  .music-icons img {
    width: 40px !important;
    height: 40px !important;
  }

}

.note {
  font-size: .9em;
  margin-top: 20px;
  color: #4A90E2;
  font-style: italic;
}

.showdate a {
  text-decoration: none;
}

.showdate a:hover {
  text-decoration: underline;
  color: red;
}
