/* ========================================
   MAHARAJAH TOURS - GALLERY PAGE
   ======================================== */

   .hero-overlay-steel {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('/assets/img/hero-gallery.jpg') center/cover no-repeat;
}
#galleryGrid img { transition: transform .3s ease, box-shadow .3s ease; }
#galleryGrid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}


/* TOUR VIDEO BOX */
.video-container {
  height: 500px; /* Adjust this value to make it taller/shorter */
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.video-container video,
.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Maintains aspect ratio with letterboxing */
  border: none;
}