@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap");

.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgb(31, 38, 73);
  z-index: 9999;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.preloader-lock {
  overflow: hidden;
}

.bg {
  background: url("./hero-image-1111.png") no-repeat center center / cover;
  position: absolute;
  top: -40px;
  left: -40px;
  width: calc(100vw + 80px);
  height: calc(100vh + 80px);
  filter: blur(30px);
  transform: scale(1.02);
  z-index: -1;
}

.loading-text {
  width: 200px;
  max-width: min(72vw, 420px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 100;
  line-height: 1.05;
  color: var(--orange);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition:
    opacity 0.12s linear,
    width 0.12s linear;
}
