/* Zero-Delay Luxury HTML/CSS Splash for Ghoomeri Web */
.splash-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background: radial-gradient(circle at center, #F6F4EF 0%, #FFFFFF 70%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.splash-wrapper.fade-out {
  opacity: 0 !important;
  pointer-events: none !important;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.splash-monogram {
  margin-bottom: 20px;
  animation: monogramSpin 2s ease-out forwards;
}

.splash-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 8px;
  color: #111111;
  margin: 0 0 12px 0;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: #767676;
  margin: 0 0 28px 0;
  animation: fadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-progress {
  width: 140px;
  height: 1.5px;
  background-color: #E8E5DF;
  overflow: hidden;
  position: relative;
}

.splash-progress-bar {
  width: 40%;
  height: 100%;
  background-color: #C5A880;
  position: absolute;
  left: 0;
  animation: shimmer 1.5s infinite ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes monogramSpin {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1.0);
  }
}

@keyframes shimmer {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}
