/* GLOBAL */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background: #1B5E20;
  color: #FFD700;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* HERO HEADER */
header {
  background-color: #1B5E20;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1571231809033-06634d0b16f3?auto=format&fit=crop&q=80&w=1920");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  margin: 0;
  color: #FFD700;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  margin: 15px 0;
  font-weight: 600;
  color: #FFD700;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-details {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid #FFD700;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 16px 40px;
  background: #FFD700;
  color: #1B5E20;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  margin: 10px;
}

.button:hover {
  transform: translateY(-3px);
  background: #ffffff;
}

/* PAGE SECTIONS */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.nav-section {
  background: #228B22;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.nav-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.info-button {
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  background: #FFD700;
  color: #1B5E20;
  transition: 0.2s;
  border-bottom: 4px solid #b89b00;
}

.info-button:hover {
  background: #fff;
  transform: scale(1.02);
}

/* COUNTDOWN TICKER */
.countdown {
  width: 100%;
  background: rgba(0,0,0,0.7);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #FFD700;
  border-bottom: 1px solid #FFD700;
  margin: 25px 0;
}

.countdown-track {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  padding-left: 100%;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-200%, 0, 0); }
}

/* BACK TO TOP BUTTON */
#backToTop {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #FFD700;
  color: #1B5E20;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 1000;
}

/* FOOTER */
footer {
  padding: 60px 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #FFD700;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-nav {
  display: none;
  background-color: #003049;
  padding: 20px;
  text-align: left;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: #FFD700;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  nav {
    display: none;
  }

  .mobile-nav.open {
    display: block;
  }
}
