/* Scroll snap container for welcome page */
body.controller-welcome.action-index {
  overflow: hidden;
}

body.controller-welcome.action-index header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-bottom: 0;
}

body.controller-welcome.action-index footer {
  display: none;
}

body.controller-welcome.action-index main {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  max-width: none;
}

.landing-area-top {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: rgb(255,255,255);
  background: radial-gradient(circle, rgba(255, 248, 232, 0.5) 0%, rgba(255,255,255,1) 59%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10vw;
  padding-left: 10vw;
}

@keyframes slide-in-from-left {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-from-right {
  0% {
    opacity: 0;
    transform: translateX(30%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.landing-area-top-text {
  font-size: 20vmin;
  opacity: 0;
}

.landing-area-top-text:nth-child(2) {
  animation-delay: 0.3s;
}

.landing-area-top-text:nth-child(3) {
  animation-delay: 0.6s;
}

.landing-area-top-text--odd {
  color: rgb(131, 212, 0);
  animation: slide-in-from-left 0.75s ease-out forwards;
}

.landing-area-top-text--even {
  color: rgb(238, 163, 0);
  animation: slide-in-from-right 0.75s ease-out forwards;
}

.landing-area-details {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 2rem 1rem;
  background: white;
}

.landing-area_masked-image {
  border-radius: 50%;
  overflow: hidden;
}

.landing-area_masked-image img {
  width: 100%;
}
