
/* /src/assets/coming-soon.css */
@import "https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";

* {
  box-sizing: border-box;
}

.comingsoon-wrapper {
  background-image: url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?q=80&w=1631&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.comingsoon-page {
  text-align: center;
  z-index: 3;
  background-color: #161d4bcc;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 100svh;
  padding: 40px 24px;
  display: grid;
  position: relative;
}

.comingsoon-logo {
  filter: brightness(0) invert();
  width: 200px;
  height: auto;
  margin: 0 auto 32px;
}

.comingsoon-headline {
  letter-spacing: -.04em;
  color: #fff;
  margin: 0;
  font-family: Cormorant, serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.02;
}

.comingsoon-headline span {
  color: #afa78f;
}

.comingsoon-subtitle {
  color: #cbd5e1;
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.comingsoon-note {
  color: #94a3b8;
  margin-top: 36px;
  font-size: .95rem;
}

.mousebgX {
  z-index: 1;
  pointer-events: none;
  border: 0 solid #fff;
  border-width: 0 1px;
  width: 200px;
  height: 100svh;
  transition: transform .3s ease-out, opacity .2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%);
}

.mousebgY {
  z-index: 1;
  pointer-events: none;
  border: 1px solid #fff;
  border-width: 1px 0;
  width: 100%;
  height: 200px;
  transition: transform .3s ease-out, opacity .2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
}

@media (prefers-reduced-motion: no-preference) {
  body {
    animation: .8s ease-out fadeIn;
  }

  .logo {
    animation: 4s ease-in-out infinite float;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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