/* ==========================================================================
   Marji V10 — pure full-bleed hero
   • Remove the cream/peachy background gradient on the hero section
   • Image fills 100% of the viewport width (edge-to-edge, no padding)
   • Drop the max-height cap so the image shows at its natural ratio
   ========================================================================== */

/* Kill the section gradient + padding */
.hero-slider {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.hero-slider .container {
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Each slide takes the full viewport width */
.hero-slide,
.hero-slide .row {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

/* The image's column also fills the slide */
.hero-slide .row > [class*="col-"]:not(.hero-slide-text),
.hero-slide-media {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 100% !important;
}

/* The image itself — full width, height auto so the aspect ratio is preserved */
.hero-slide-media img,
.hero-slide-media video {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

/* Pagination dots — keep them visible at the bottom of the image */
.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 4;
  text-align: center;
}
