/* Video styles for wilderness look */
.hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: scale(1.05); /* Slight zoom for immersive effect */
  filter: brightness(0.8) saturate(1.2); /* Enhance wilderness colors */
}

.hero-static {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; /* Above video but below overlay */
  filter: brightness(1.2) contrast(1.1) saturate(1.3); /* Enhanced image visibility */
  opacity: 0.95; /* Ensure image is fully visible */
  display: none; /* Hidden by default, shown by JS when video fails */
}
