/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0; /* top:0, right:0, bottom:0, left:0 */
  background: rgba(0, 0, 0, 0.5); /* same as Tailwind bg-black/50 */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay h1 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .hero-overlay h1 {
    font-size: 3.5rem;
  }
}
