/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #fff;
  position: relative;
}

/* VIDEO BACKGROUND */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -3;
}

/* DARK OVERLAY */
.overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);
  z-index: -2;
}

/* CONTENT */
.container {
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;

  animation: fadeIn 1.6s ease;
}

/* LOGO */
.logo {
  width: 220px;
  max-width: 60vw;

  margin-bottom: 40px;

  animation: float 4s ease-in-out infinite;
}

/* TEXT */
h1 {
  max-width: 950px;

  font-size: clamp(1.1rem, 2vw, 2rem);
  line-height: 1.6;
  letter-spacing: 4px;
  font-weight: 350;
  text-transform: uppercase;

  color: #ffffff;

  text-shadow:
    0 0 10px rgba(255,255,255,0.10),
    0 0 30px rgba(255,255,255,0.08);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .logo {
    width: 170px;
    margin-bottom: 30px;
  }

  h1 {
    letter-spacing: 2px;
    line-height: 1.5;
  }
}

/* RETURN DATE */
.return-date {
  margin-top: 28px;

  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  letter-spacing: 6px;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.78);

  animation: fadeIn 2.2s ease;
}