/* ==========================================
   CURTAIN SPLASH SCREEN
   Royal Bronze Theme
   ========================================== */

.curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #2C3E50;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: curtainSlideUp 0.6s ease-in-out 2s forwards;
  pointer-events: none;
}

.curtain-overlay.hide { display: none; }

body.curtain-active { overflow: hidden; }

.curtain-text { text-align: center; }

/* Words — Cormorant Garamond */
.curtain-word {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: var(--weight-h1);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B08D57;
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.curtain-word:nth-child(1) { animation: wordReveal 0.4s ease-out 0.2s forwards; }
.curtain-word:nth-child(2) { animation: wordReveal 0.4s ease-out 0.7s forwards; }
.curtain-word:nth-child(3) { animation: wordReveal 0.4s ease-out 1.2s forwards; }

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

@keyframes curtainSlideUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

@media (max-width: 768px) { .curtain-word { font-size: 2.5rem; } }
@media (max-width: 480px) { .curtain-word { font-size: 2rem; letter-spacing: 0.05em; } }