/* ===== Hero video section ===== */

.hero-video-section {
  min-height: 100vh; /* full screen */

  overflow: hidden;
}

/* Full-screen video background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay to make text readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Bring text above video + overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Title and subtitle sizes (like in screenshot) */
.hero-title {
  font-weight: 700;
  font-size: 2.4rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Big rounded blue button */
.hero-btn {
  padding: 0.9rem 2.8rem;
  font-weight: 600;
  border-radius: 999px;
}

/* Bigger title on large screens */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
}
