
@keyframes hue-shift {
  0% {
    filter: hue-rotate(0deg);
  }
  30% {
    filter: hue-rotate(80deg);
  }
  50% {
    filter: hue-rotate(120deg);
  }
  70% {
    filter: hue-rotate(80deg);
  }
  100% {
    filter: hue-rotate(0deg); /* Same as 0deg for smooth looping */
  }
}

/* Keyframe for hue-rotate animation */
@keyframes hueChange {
  0% {
    filter: hue-rotate(30deg);
  }
  25% {
    filter: hue-rotate(90deg); /* 25% of the time, rotate to 90deg */
  }
  50% {
    filter: hue-rotate(130deg); /* 50% of the time, rotate to 150deg */
  }
  75% {
    filter: hue-rotate(210deg); /* 75% of the time, rotate to 210deg */
  }
  100% {
    filter: hue-rotate(30deg); /* Finish at 30deg again */
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
  }
  50% {
    transform: translateY(var(--translateY)) translateX(var(--translateX)) scale(1);
  }
  100% {
    transform: translateY(0) translateX(0) scale(0.8);
  }
}

@keyframes flicker {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  background: #032050;
  /*background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,35,119,1) 0%, rgba(2,238,234,1) 100%);*/
}

.site__container {
  height: 100vh;
  width: 100vw;
  background-image: url('/assets/images/site-bg-mobile.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*  animation: hue-shift 100s infinite linear; */ 
  /* filter: hue-rotate(0deg); */
}

.site__container--schedule {
  justify-content: flex-start;
}


@media screen and (min-width: 450px) {
  body {
    background-color: #032050;
  }
  .site__container {
    background-image: url('/assets/images/site-bg.jpg');
    background-size: contain;
    background-color: #032050;
  }
  
}

.player__container {
  position: relative;
  z-index: 2;
}


.site__container--schedule .player__container {
  padding-top: 75px;
}

.ethereal-glow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  animation: float 8s infinite ease-in-out, flicker 3s infinite alternate;
}

.site__nav {
  position: absolute;
  z-index: 3;
  top: 0;
  background-color: #23252F;
  width: 100vw;
  left: 0;
  padding: 15px 15px;
}

.site__nav-list,
.site__nav-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site__nav-list {
  display: flex;
  justify-content: center;
}

.site__nav-item {
  padding: 4px 15px;
  border-right: 1px solid #8DED85;
}

.site__nav-item:last-child {
  border-right: none;
}

.site__nav-link {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #8DED85;
}

.site__nav-link--selected {
  color: #3ffdf3;
}
