.hero {
  height: 100vh;
  background: url('../assets/bg2.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 3rem;
  text-align: center;
  border-radius: 10px;
}

.btn-orange {
  background-color: #ff6600;
  color: #fff;
  border: none;
}
.btn-orange:hover {
  background-color: #e65c00; /* darker orange on hover */
  color: #fff;
}


.animated-banner {
  height: 20vh; /* quarter the height of hero */
  background: linear-gradient(135deg, #1a0801, #ffb347); /* orange gradient */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#banner-text {
  font-size: 2rem;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


