/* ============================================================
   RENTAL SALON LOTUS - loading.css
   ============================================================ */

/* ── Loading Screen ───────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  background-color: #3FA8D0; /* fallback while canvas renders */
  opacity: 1;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

#loading-screen.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Canvas ───────────────────────────────────────────────── */
canvas#bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Loader UI ────────────────────────────────────────────── */
.loader-ui {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: ui-fadein 0.8s ease 0.2s both;
  white-space: nowrap;
}

@keyframes ui-fadein {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── Tagline (top) ────────────────────────────────────────── */
.loader-ui__tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}

/* ── Logo ─────────────────────────────────────────────────── */
.loader-ui__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 9vw, 72px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.28em;
  line-height: 1;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(255, 255, 255, 0.15);
  margin-bottom: 2px;
}

/* ── Sub tagline (bottom) ─────────────────────────────────── */
.loader-ui__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.26em;
  line-height: 1;
  margin-bottom: 16px;
}

/* ── Progress Bar ─────────────────────────────────────────── */
.loader-ui__progress-wrap {
  width: 130px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.loader-ui__progress-bar {
  height: 100%;
  width: 0%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 99px;
  transition: width 0.05s linear;
}

/* ── Responsive adjustments ───────────────────────────────── */
@media (max-width: 767px) {
  .loader-ui {
    bottom: 40px;
  }

  .loader-ui__tagline {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .loader-ui__sub {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .loader-ui__progress-wrap {
    width: 100px;
  }
}
