@charset "UTF-8";
/*----------------------------------------------*\
    GLOBAL
	======

	@package yaybrigade

\*----------------------------------------------*/
/*----------------------------------------------*\
    COMPONENTS
	==========

	@package yaybrigade

\*----------------------------------------------*/
/* 
 *
 * / Breakpoints
------------------------------------------------*/
/* 368px, bigger phones */
/* 560px */
/* 800px */
/* 1008px, tablet vertical */
/* 1200px */
/* 1440px, desktop */
/* 
 *
 * ANCHOR Global  
------------------------------------------------*/
body {
  font-family: "menco", sans-serif;
  background-color: black;
}

.wrapper {
  background-color: black;
  width: 100%;
  height: 100vh; /* fallback */
  height: 100dvh; /* 100% of the viewport height, accounting for mobile browser UI */
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  overflow: hidden;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.scrolled-to-bottom .wrapper {
  opacity: 0.2;
}

.current {
  position: fixed;
  top: 0;
  bottom: 0;
  border-right: 1px solid var(--white);
  -webkit-transform: translateX(-0.5px);
          transform: translateX(-0.5px);
  -webkit-animation: pulsateOpacity 2s infinite;
          animation: pulsateOpacity 2s infinite;
}
.scrolled-to-bottom .current {
  opacity: 0 !important;
}
@-webkit-keyframes pulsateOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulsateOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

/* 
 *
 * ANCHOR Location Selector  
------------------------------------------------*/
.location-selector {
  position: fixed;
  top: var(--size-100);
  left: var(--size-090);
  z-index: 700;
  -webkit-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
}
.scrolled-to-bottom .location-selector {
  opacity: 0 !important;
}
.location-selector select {
  padding: var(--size-050) var(--size-300);
  border-radius: var(--size-500);
  font-size: var(--size-100);
  background-color: var(--transparent-white);
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  color: var(--white);
  border: none;
  font-family: "menco", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  cursor: pointer;
}
.location-selector option {
  color: black;
}

/* 
 *
 * ANCHOR Options Menu
------------------------------------------------*/
.options {
  /* toggle switches */
  /* toggle-on */
  /* toggle label */
}
.options__toggle {
  position: fixed;
  display: grid;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  cursor: pointer;
  width: var(--size-500);
  height: var(--size-500);
  border-radius: 50%;
  background-color: var(--transparent-white);
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  top: var(--size-100);
  right: var(--size-090);
  overflow: hidden;
  -webkit-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
}
.options__toggle::before { /* SVG */
  content: "";
  width: var(--size-300);
  height: var(--size-300);
  border-radius: 50%;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}
.options--active .options__toggle::before {
  rotate: -22.5deg;
  -webkit-box-shadow: 0 0px 3px rgba(255, 255, 255, 0.6), 0 0 3px rgba(255, 255, 255, 0.6);
          box-shadow: 0 0px 3px rgba(255, 255, 255, 0.6), 0 0 3px rgba(255, 255, 255, 0.6);
}
.scrolled-to-bottom .options__toggle {
  opacity: 0 !important;
}
.options__menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: var(--size-100);
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: fixed;
  top: var(--size-300);
  right: var(--size-900);
}
@media screen and (max-width: 35rem) {
  .options__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
            justify-content: flex-end;
    top: var(--size-900);
    right: var(--size-100);
  }
}
.options .switch {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  gap: var(--size-010);
}
.options .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.options .slider {
  position: relative;
  width: var(--size-500);
  height: var(--size-200);
  background-color: var(--twilight);
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  border-radius: var(--size-400);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.options .slider::before {
  content: "";
  position: absolute;
  width: calc(var(--size-200) * 1.4);
  height: calc(var(--size-200) * 1.4);
  top: calc(var(--size-200) * -0.2);
  left: calc(var(--size-200) * -0.3);
  background-color: var(--transparent-white);
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.options input:checked + .slider {
  background-color: var(--white);
  -webkit-box-shadow: 0 0 6px rgba(255, 255, 255, 0.5), 0 0 6px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 6px rgba(255, 255, 255, 0.5), 0 0 6px rgba(255, 255, 255, 0.5);
}
.options input:checked + .slider::before {
  -webkit-transform: translateX(calc(var(--size-090) + var(--size-200) * 0.3));
          transform: translateX(calc(var(--size-090) + var(--size-200) * 0.3));
}
.options .switch__label {
  color: var(--white);
  font-family: "menco", sans-serif;
  font-size: var(--size-090);
  text-transform: uppercase;
}

/* 
 *
 * ANCHOR Hours
------------------------------------------------*/
.hour {
  position: relative;
  /* hour line markers */
  /* hour number */
  /* hour perspiration */
}
.hour::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0vh;
  height: 1vh;
  translate: -0.5px 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transition: height 0.5s ease-in-out, background 1s linear;
  transition: height 0.5s ease-in-out, background 1s linear;
}
.show-hours .hour::after {
  height: 85vh !important;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 1px, transparent 1px, transparent 6px);
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.hour:nth-child(6):after, .hour:nth-child(18):after { /* 6am, 6pm */
  height: 2.5vh;
}
.hour:nth-child(12):after { /* Noon */
  height: 4vh;
}
.hour:last-child:after { /* Don't show last one since it's off screen */
  display: none;
}
.hour__number {
  font-size: var(--size-060);
  position: absolute;
  bottom: 86vh;
  color: rgba(255, 255, 255, 0.6);
  translate: -50% 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 35rem) {
  .hour__number {
    font-size: var(--size-080);
  }
}
.show-hours .hour__number {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease 0.4s;
  transition: opacity 0.5s ease 0.4s;
}
.hour:first-child .hour__number {
  display: none; /* don't show 0 since it doesn't have a line */
}
.hour__perspiration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

/* 
 *
 * ANCHOR Moon & Sun
------------------------------------------------*/
.moon {
  position: absolute;
  width: 1.5vh;
  height: 1.5vh;
  border-radius: 50%;
  translate: -50% 100%;
  line-height: 0.6;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
@media screen and (min-width: 35rem) {
  .moon {
    width: 2vh;
    height: 2vh;
  }
}
.show-moon .moon {
  opacity: 1;
}
.moon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  translate: -50% -50%;
}
.moon--new {
  /* 0 — completely dark */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waxing-crescent-1 {
  /* thin crescent */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waxing-crescent-2 {
  /* larger crescent */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--first-quarter {
  /* right half lit */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waxing-gibbous-1 {
  /* more than half, growing */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waxing-gibbous-2 {
  /* almost full */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--full {
  /* fully illuminated */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waning-gibbous-1 {
  /* just past full */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waning-gibbous-2 {
  /* shrinking but > half */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--last-quarter {
  /* left half lit */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waning-crescent-1 {
  /* larger crescent, shrinking */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}
.moon--waning-crescent-2 {
  /* thin crescent before new */
  background-image: radial-gradient(circle at 20% 50%, transparent 50%, var(--white) 50%);
}

.sun {
  position: absolute;
  width: 1.5vh;
  height: 1.5vh;
  border-radius: 50%;
  background-image: radial-gradient(circle at top right, var(--yellow), var(--orange));
  -webkit-box-shadow: 0 0 5px var(--orange), 0 0 5px var(--orange);
          box-shadow: 0 0 5px var(--orange), 0 0 5px var(--orange);
  translate: calc(-50% - 1px) 100%;
  line-height: 0.6;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (min-width: 35rem) {
  .sun {
    width: 2vh;
    height: 2vh;
  }
}
.show-sun .sun {
  opacity: 1;
}

/* 
 *
 * ANCHOR Splash Page
------------------------------------------------*/
.splash-page {
  background-color: black;
  -webkit-animation: undulateBGcolor 6s ease-in-out infinite;
          animation: undulateBGcolor 6s ease-in-out infinite;
  display: grid;
  place-items: center;
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.splash-page--show {
  opacity: 1;
  pointer-events: all;
}
.splash-page button {
  font-size: var(--size-100);
  font-family: "menco", sans-serif;
  margin-top: var(--size-200);
  padding: var(--size-050) var(--size-300) var(--size-060);
  border-radius: var(--size-500);
  background-color: var(--transparent-white);
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  color: var(--white);
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.splash-page__wrapper {
  text-align: center;
}
@-webkit-keyframes undulateBGcolor {
  0% {
    background-color: black;
  }
  50% {
    background-color: #1A66FF;
  }
  100% {
    background-color: black;
  }
}
@keyframes undulateBGcolor {
  0% {
    background-color: black;
  }
  50% {
    background-color: #1A66FF;
  }
  100% {
    background-color: black;
  }
}

/* 
 *
 * ANCHOR Loading Page
------------------------------------------------*/
.loading {
  background-color: black;
  display: grid;
  place-items: center;
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out 0.2s;
  transition: opacity 1s ease-in-out 0.2s;
  z-index: 800;
}
.loading--show {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

/* 
 *
 * ANCHOR Toast Message
------------------------------------------------*/
.toast-message {
  font-size: var(--size-100);
  width: 90vw;
  max-width: 50ch;
  position: fixed;
  bottom: var(--size-200);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--transparent-white);
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  color: var(--white);
  padding: var(--size-100) var(--size-300);
  border-radius: var(--size-500);
  font-family: "menco", sans-serif;
  pointer-events: none;
  z-index: 900;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.toast-message--show {
  opacity: 1;
  pointer-events: auto;
  -webkit-animation: slideInFromBelow 0.5s ease-out;
          animation: slideInFromBelow 0.5s ease-out;
}
@-webkit-keyframes slideInFromBelow {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slideInFromBelow {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* 
 *
 * ANCHOR Footer
------------------------------------------------*/
.footer {
  padding-top: 5vh;
  padding-bottom: 5vh;
}
.footer p {
  color: var(--white);
  font-size: var(--size-090);
  line-height: 1.45;
  max-width: 40ch;
  margin: 0 auto;
  text-align: center;
}
.footer__text-intro {
  margin-bottom: var(--size-080);
}
.footer__heart {
  font-size: 0.8em;
}