/* Working web scrolling for React Native Web */
html {
  font-size: 62.5%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-y: auto;
  height: 100vh;
}

#root {
  height: 100vh;
  overflow-y: auto;
}

/* Make React Native containers scrollable */
div[style*=flex] {
  overflow-y: auto !important;
  max-height: 100vh !important;
}

body {
  padding: 5rem 11rem;
  position: relative;
  overflow: hidden;
  background: #1E1E1E;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: #FEFEFE;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.5rem, 1.5vw, 2rem);
}
@media screen and (max-width: 900px) {
  body {
    padding: 2rem 5rem;
    padding-top: 8rem;
  }
}
body::before, body::after {
  content: "";
  z-index: -1;
  -webkit-filter: blur(15rem);
  filter: blur(15rem);
  position: absolute;
  opacity: 0.7;
  border-radius: 50%;
  width: 110rem;
  height: 110rem;
}
@media screen and (max-width: 900px) {
  body::before, body::after {
    width: 50rem;
    height: 50rem;
  }
}
body::before {
  bottom: -70%;
  left: -25%;
  background: radial-gradient(circle, #2A98CF 0%, transparent 70%);
}
@media screen and (max-width: 900px) {
  body::before {
    bottom: -25rem;
    left: -25rem;
  }
}
body::after {
  background: radial-gradient(circle, #CF2A98 0%, transparent 70%);
  top: -70%;
  right: -25%;
}
@media screen and (max-width: 900px) {
  body::after {
    top: -25rem;
    right: -25rem;
  }
}

.ComingSoon {
  flex: 1;
}
@media screen and (max-width: 900px) {
  .ComingSoon {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.ComingSoon .logo {
  width: 20rem;
}
.ComingSoon-content {
  width: 100%;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 900px) {
  .ComingSoon-content {
    flex-direction: column;
  }
}
.ComingSoon-content__left {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 900px) {
  .ComingSoon-content__left {
    height: 100%;
    text-align: center;
    width: 100%;
  }
}
.ComingSoon-content__left h3 {
  position: relative;
  font-size: 8rem;
  font-size: clamp(6rem, 3vw, 8rem);
  background: linear-gradient(45deg, #CF2A98, #2A98CF 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 1100px) {
  .ComingSoon-content__left h3 {
    font-size: clamp(4rem, 3vw, 6rem);
  }
}
.ComingSoon-content__left h3::after {
  font-size: clamp(6rem, 3vw, 8rem);
  letter-spacing: 0.4rem;
  content: "Coming Soon";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  text-shadow: 0 0 4px black;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .ComingSoon-content__left h3::after {
    font-size: clamp(4rem, 3vw, 6rem);
  }
}
.ComingSoon-content__left-details {
  max-width: 58rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.ComingSoon-content__left-details .contact {
  text-decoration: none;
  width: fit-content;
  position: relative;
  padding: 0.5rem 2rem;
  font-size: 2rem;
  font-weight: semi-bold;
  color: transparent;
  background: linear-gradient(270deg, #2A98CF, #CF2A98, #FEFEFE, #2A98CF);
  background-size: 600% 600%;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 0; /* allow pseudo to sit behind */
  -webkit-animation: flowingGradient 8s ease infinite;
  -moz-animation: flowingGradient 8s ease infinite;
  animation: flowingGradient 8s ease infinite;
}
@media screen and (max-width: 900px) {
  .ComingSoon-content__left-details .contact {
    justify-self: center;
    align-self: center;
  }
}
@media screen and (max-width: 700px) {
  .ComingSoon-content__left-details .contact {
    width: 100%;
  }
}
.ComingSoon-content__left-details .contact::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  padding: 2px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(270deg, #2A98CF, #CF2A98, #FEFEFE, #2A98CF);
  background-size: 600% 600%;
  -webkit-animation: flowingGradient 8s ease infinite;
  -moz-animation: flowingGradient 8s ease infinite;
  animation: flowingGradient 8s ease infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .ComingSoon-content__left-details {
    max-width: 49rem;
  }
}
@media screen and (max-width: 1000px) {
  .ComingSoon-content__left-details {
    max-width: 39rem;
  }
}
@media screen and (max-width: 900px) {
  .ComingSoon-content__left-details {
    max-width: none;
  }
}
.ComingSoon-content__right {
  height: 100%;
  width: 30%;
}
@media screen and (max-width: 900px) {
  .ComingSoon-content__right {
    height: 0;
    width: 100%;
  }
}
.ComingSoon-content__right img {
  z-index: -1;
  -webkit-filter: hue-rotate(160deg);
  filter: hue-rotate(160deg);
  position: absolute;
  right: -40rem;
  bottom: -10rem;
}
@media screen and (max-width: 900px) {
  .ComingSoon-content__right img {
    width: 70%;
    max-width: 40rem;
    right: 50%;
    bottom: -4rem;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0.25;
  }
}
.ComingSoon .planara {
  font-family: "Iceland", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
}

footer {
  padding: 1rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 900px) {
  footer {
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
  }
}
footer .planara {
  font-family: "Iceland", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes flowingGradient {
  0% {
    background-position: 0% 50%;
    border-image-source: linear-gradient(270deg, #2A98CF, #CF2A98, #2A98CF);
  }
  50% {
    background-position: 100% 50%;
    border-image-source: linear-gradient(270deg, #CF2A98 #2A98CF, #CF2A98);
  }
  100% {
    background-position: 0% 50%;
    border-image-source: linear-gradient(270deg, #2A98CF, #CF2A98, #2A98CF);
  }
}
@-moz-keyframes flowingGradient {
  0% {
    background-position: 0% 50%;
    border-image-source: linear-gradient(270deg, #2A98CF, #CF2A98, #2A98CF);
  }
  50% {
    background-position: 100% 50%;
    border-image-source: linear-gradient(270deg, #CF2A98 #2A98CF, #CF2A98);
  }
  100% {
    background-position: 0% 50%;
    border-image-source: linear-gradient(270deg, #2A98CF, #CF2A98, #2A98CF);
  }
}
@keyframes flowingGradient {
  0% {
    background-position: 0% 50%;
    border-image-source: linear-gradient(270deg, #2A98CF, #CF2A98, #2A98CF);
  }
  50% {
    background-position: 100% 50%;
    border-image-source: linear-gradient(270deg, #CF2A98 #2A98CF, #CF2A98);
  }
  100% {
    background-position: 0% 50%;
    border-image-source: linear-gradient(270deg, #2A98CF, #CF2A98, #2A98CF);
  }
}
