/* Desktop (default) */
.custom-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

/* Mobile view fix: show full video width, allow height to scroll */
@media only screen and (max-width: 768px) {
  .custom-video-bg {
    width: 100vw;
    height: auto;
    object-fit: contain;     /* Shows full video without cropping */
    object-position: top left;
    position: absolute;
  }
}
