.hero-banner {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111; /* fallback background */
}

.banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slideshow-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}
