/* White Pass Research - minimal full-screen video landing page */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: #0b1420; /* shown while the video loads */
  color: #f4f7fa;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  overflow: hidden;
}

/* Full-screen looping background video */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: #0b1420 url("assets/img/poster.jpg") center / cover no-repeat;
}

/* Centered title with top spacing */
.content {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  padding: clamp(5rem, 22vh, 14rem) clamp(1rem, 5vw, 3rem) 2rem;
  text-align: center;
}

.title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(2rem, 7vw, 5.5rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4f7fa;
  /* Thin dark stroke plus a soft shadow keeps the text readable on bright snow */
  -webkit-text-stroke: 0.02em rgba(10, 25, 45, 0.55);
  paint-order: stroke fill;
  text-shadow:
    0 0 0.05em rgba(10, 25, 45, 0.6),
    0 0.06em 0.25em rgba(0, 0, 0, 0.55),
    0 0.15em 0.9em rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

@media (max-width: 480px) {
  .title {
    letter-spacing: 0.05em;
  }
}
