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

.hero-img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-overlay {
  z-index: 2;
  padding: 0 20px;
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  color: var(--gold);
  animation: fadeZoomIn 2s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--light-gray);
  animation: fadeZoomIn 3s ease forwards;
  opacity: 0;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--dark-gray);
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-zoom {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoomIn 1.8s ease forwards;
}

.fade-zoom.delay-1 {
  animation-delay: 0.8s;
}

.confetti {
  position: absolute;
  top: -10px;
  width: 10px;
  height: 10px;
  background-color: var(--gold);
  opacity: 0.7;
  border-radius: 50%;
  animation-name: fallConfetti;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes fallConfetti {
  to {
    transform: translateY(120vh) rotate(360deg);
  }
}

.btn-gold {
  color: #d4af37;
  backdrop-filter: blur(4px);
  padding: 10px;
}

