/* ============================================================
   GLOBAL GODAM — LOADING SCREEN CSS
   ============================================================ */

#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0A0A0A;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Two halves for the split reveal */
.loading-top,
.loading-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: #0A0A0A;
  z-index: 2;
  transform-origin: top center;
}

.loading-top { top: 0; transform-origin: top center; }
.loading-bottom { bottom: 0; transform-origin: bottom center; }

/* Center content */
.loading-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  opacity: 0;
}

.loading-logo {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.loading-bar-wrap {
  width: clamp(200px, 30vw, 320px);
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: #D4A843;
  border-radius: 1px;
  transform-origin: left center;
}

.loading-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
}

/* Hidden state (applied after reveal) */
#loading-screen.hidden {
  pointer-events: none;
}
