/* Ensure body fills screen */
html, body {
  height: 100%;
  margin: 0;
}

/* Fullscreen video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Stretch + crop proportionally */
  z-index: -2;
}

/* Dark overlay for readability */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* Prevent scrollbars */
body {
  overflow: hidden;
}
