/* ==============================
   CONSTANT STREAM
   Lobby v1
   ============================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;

  font-family: "Courier New", Courier, monospace;

  color: #463d59;

  background:
    linear-gradient(
      180deg,
      #9edfff 0%,
      #cbbcff 30%,
      #ffbddd 60%,
      #ffe2ad 100%
    );

  background-attachment: fixed;
}


/* floating background objects */

.sky-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
  pointer-events: none;
}

.shape-one {
  width: 400px;
  height: 400px;
  background: #fff7c7;
  top: -120px;
  right: -100px;
}

.shape-two {
  width: 260px;
  height: 260px;
  background: #a9ffd6;
  bottom: 8%;
  left: -100px;
}

.shape-three {
  width: 120px;
  height: 120px;
  background: #ff8fcf;
  top: 55%;
  right: 8%;

  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-25px);
  }

}


/* general sections */

section {
  position: relative;
  z-index: 2;
}


/* entrance */

.entrance {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 8vw;
}

.signal {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 25px;

  animation: blink 2s infinite;
}

@keyframes blink {

  0%, 80%, 100% {
    opacity: 1;
  }

  90% {
    opacity: 0.25;
  }

}

h1 {
  margin: 0;

  font-family: Georgia, serif;

  font-size: clamp(70px, 13vw, 180px);

  line-height: 0.72;

  letter-spacing: -7px;

  color: #fffbea;

  text-shadow:
    5px 5px 0 #ff88bf,
    10px 10px 0 #8caaff;
}

.subtitle {
  margin-top: 40px;
  letter-spacing: 5px;
  font-size: 13px;
}

.arrival {
  margin-top: 100px;
  font-size: 20px;
  line-height: 1.2;
}

.scroll-hint {
  position: absolute;
  bottom: 35px;
  right: 8vw;

  text-align: center;

  animation: bob 2s ease-in-out infinite;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 2px;
}

@keyframes bob {

  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

}


/* lobby */

.lobby {
  min-height: 120vh;

  padding: 120px 8vw;

  background: rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(8px);
}

.tiny-label {
  font-size: 10px;
  letter-spacing: 5px;
}

h2 {
  font-family: Georgia, serif;

  font-size: clamp(55px, 9vw, 120px);

  margin: 10px 0 20px;

  color: #fffbea;

  text-shadow: 4px 4px 0 #8caaff;
}

.lobby-text {
  font-size: 18px;
  margin-bottom: 80px;
}


/* doors */

.doors {
  max-width: 900px;
}

.door {
  display: grid;

  grid-template-columns: 70px 1fr;
  grid-template-rows: auto auto;

  padding: 25px 10px;

  border-bottom: 1px solid rgba(70, 61, 89, 0.25);

  color: #463d59;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    padding 0.25s ease;
}

.door:hover {
  transform: translateX(18px);

  background: rgba(255, 255, 255, 0.28);

  padding-left: 25px;
}

.number {
  grid-row: 1 / 3;

  font-size: 12px;

  padding-top: 8px;

  opacity: 0.55;
}

.door-name {
  font-family: Georgia, serif;

  font-size: clamp(25px, 4vw, 45px);

  color: #fffbea;

  text-shadow: 2px 2px 0 #ff88bf;
}

.door-note {
  margin-top: 5px;

  font-size: 11px;

  letter-spacing: 2px;
}


/* bottom */

.bottom-room {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 80px 20px;
}

.dont-touch {
  display: inline-block;

  margin-top: 50px;

  padding: 18px 30px;

  border: 1px solid #463d59;

  color: #463d59;

  text-decoration: none;

  transition: 0.25s;
}

.dont-touch:hover {
  background: #463d59;
  color: #ffe3f2;

  transform: rotate(-2deg) scale(1.08);
}

.footer-signal {
  position: absolute;

  bottom: 30px;
  left: 30px;

  text-align: left;

  font-size: 9px;

  line-height: 1.8;

  letter-spacing: 3px;

  opacity: 0.5;
}