/**
 * sailing.world branded first-load overlay (shared across surfaces).
 * Pair with sw-interstitial.js and #siteTitleOverlay in the document.
 */
@import url("https://fonts.googleapis.com/css2?family=Prosto+One&display=swap");

:root {
  --sw-interstitial-red: #c63c51;
}

.site-title-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483000;
  transition: opacity 2s ease-in-out;
  pointer-events: none;
}

.site-title-overlay.fade-out {
  opacity: 0;
}

.site-title-overlay .site-title {
  font-family: "Prosto One", cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--sw-interstitial-red);
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: swInterstitialTitleIn 1s ease-out;
}

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