/* hero.css */
.hero-section {
  position: relative;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #123E2C, #FCFBC5, #123E2C, #FCFBC5);
  background-size: 600% 600%;
  animation: heroGradient 12s ease infinite;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-overlay h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: textPop 1.2s ease-out;
}

.hero-overlay p {
  font-size: 1.3rem;
  margin: 0 auto;
  letter-spacing: 1px;
  animation: textFade 2s ease forwards;
}

@keyframes heroGradient {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}

@keyframes textPop {
  0% { transform:translateY(20px); opacity:0; }
  100% { transform:translateY(0); opacity:1; }
}

@keyframes textFade {
  0% { opacity:0; }
  100% { opacity:1; }
}
