/* Base Styling */
.hero-section {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay (black to transparent gradient) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(255, 255, 255, 0));
  z-index: 1;
}

/* Content Layer */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-title {
  font-size: 6.0rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #aeaeae;
}

.hero-tagline {
  font-size: 2.2rem;
  font-style: italic;
  font-family: 'Georgia', serif;
  margin-bottom: 2rem;
}

/* Call-to-action Button */
.hero-btn {
  background: #fff;
  color: #000;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .hero-section {
    height: 480px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-tagline {
    font-size: 0.9rem;
  }
  .hero-section {
    height: 380px;
  }
}

/* Hero Animation Base */
.hero-content > * {
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Staggered Animation */
.hero-title {
  animation: fadeSlideUp 0.9s ease-out 0.2s forwards;
}

.hero-subtitle {
  animation: fadeSlideUp 0.9s ease-out 0.5s forwards;
}

.hero-tagline {
  animation: fadeSlideUp 0.9s ease-out 0.8s forwards;
}

.hero-btn {
  animation: buttonPop 0.6s ease-out 1.2s forwards;
}