/*
 * Full-screen "Coming Soon" takeover. Covers the entire viewport and sits
 * above everything else. Chula's logo, optional date text, and countdown.
 */

.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #231f20;
  background-image: url('/images/textured_background.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}

.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px;
  text-align: center;
}

.coming-soon-overlay .coming-soon-logo {
  max-width: min(70vw, 560px);
  max-height: 50vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
  opacity: 0;
  animation: coming-soon-fade-in 600ms ease-out forwards;
}

.coming-soon-title {
  font-family: 'Atrament', sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  color: #FAF8F5;
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(0,0,0,0);
  opacity: 0;
  animation: coming-soon-fade-in 600ms ease-out 200ms forwards;
}

.coming-soon-date {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 18px);
  color: rgba(250, 248, 245, 0.7);
  letter-spacing: 0.02em;
  line-height: 1.5;
  opacity: 0;
  animation: coming-soon-fade-in 600ms ease-out 400ms forwards;
}

.coming-soon-countdown {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 4vw, 32px);
  color: #FFDF8A;
  letter-spacing: 0.12em;
  text-shadow: 0 0 20px rgba(0,0,0,0);
  opacity: 0;
  animation: coming-soon-fade-in 600ms ease-out 600ms forwards;
  min-height: 1.4em;
}

@keyframes coming-soon-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-overlay .coming-soon-logo,
  .coming-soon-title,
  .coming-soon-date,
  .coming-soon-countdown {
    animation: none;
    opacity: 1;
  }
}
