/* Landing Page Styles */

/* Landing Page */
.landing {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  background: url('../images/LANDING.webp?v=2');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  transition: transform 1s ease-in-out;
}

/* Mobile landing page background */
@media (max-width: 768px) {
  .landing {
    background: url('../images/LANDING MOBILE.webp?v=2');
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    height: 100dvh; /* Ensure dynamic viewport height on mobile */
  }
}

.landing.hidden {
  transform: translateY(-100vh);
}

.landing-content {
  text-align: center;
  transition: all 0.6s ease-in-out;
}

.landing.hidden .landing-content {
  transform: translateY(-50px);
  opacity: 0;
}

.landing-logo {
  max-width: 400px;
  width: 80%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.landing-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.enter-btn {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 1rem 3rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-medium);
}

.enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

/* Body states for landing page */
body.landing-active {
  overflow-y: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
}

/* Ensure main content is visible when landing is hidden */
body:not(.landing-active) .main-content {
  position: relative;
  z-index: 1;
}

/* Focus States */
.enter-btn:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
} 