/* Wrapper */
.video-banner-wrapper {
  width: 100%;
  position: relative;
}

/* Fullscreen video container */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;             /* FULL SCREEN HEIGHT */
  overflow: hidden;
}

/* Video background — full bleed */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Ensures video fills container */
  object-position: center;
  z-index: -1;
}

/* Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

/* Center content */
.video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
  animation: fadeUp 1.2s ease-out both;
  animation-delay: 0.4s;
}

/* Headings */
.video-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Subhead */
.video-content p {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

/* Fallback image */
.image-banner {
  display: none !important;
}

/* Responsive text */
@media (max-width: 768px) {
  .video-content h1 {
    font-size: 1.6rem;
  }
  .video-content p {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}