/* =========================
   RESET
========================= */

body {
  background: #000;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  transition: all 0.4s ease;
  background: transparent;
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* =========================
   LOGO NAVBAR
========================= */

.logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo {
  height: 42px;
}

/* =========================
   HERO
========================= */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* =========================
   VIDEO BACKGROUND
========================= */

.bg-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================
   OVERLAY
========================= */

.overlay {
  position: absolute;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.55);
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  position: relative;
  z-index: 2;

  height: 100vh;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 20px;
}

/* =========================
   HERO LOGO
========================= */

.hero-logo {
  width: 100%;
  max-width: 700px;
  height: auto;

  display: block;

  margin: 0 auto 25px auto;

  filter: drop-shadow(0 0 25px rgba(0,0,0,0.5));

  animation: fadeUp 1.2s ease;
}
/* =========================
   HERO TEXT
========================= */

.hero p {
  color: white;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* =========================
   BUTTONS
========================= */

.btn-warning {
  padding: 16px 38px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.btn-warning:hover {
  transform: translateY(-3px);
}

/* =========================
   COUNTDOWN SECTION
========================= */

.countdown-section {
  background: #000;
  padding: 30px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.countdown-text {
  color: white;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;

  animation: pulse 2s infinite;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

}

@keyframes pulse {

  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .hero-logo {
    max-width: 320px;
  }

  .hero p {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .btn-warning {
    width: 100%;
    max-width: 300px;
  }

  .countdown-text {
    font-size: 1rem;
  }

}