.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Video di belakang */
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: start;
  text-align: center;
  color: white;
  padding: 20px 96px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

@media (max-width: 767px) {
  .hero-overlay {
    padding: 1.25rem;
    text-align: start;
  }
}
