/* HERO dengan overlay */
.hero {
  position: relative;
  height: 100vh;
  background: url("images/hero.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.hero h1 span {
  color: gold;
}

/* ANIMASI */
.animate-fade,
.animate-slide-left,
.animate-slide-right {
  opacity: 0;
  transition: all 1s ease-out;
}

.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade {
  transform: translateY(20px);
}

.animate-slide-left {
  transform: translateX(-40px);
}

.animate-slide-right {
  transform: translateX(40px);
}
