/*───────────── BASIC ───────────── */
html {
  scroll-behavior: smooth;
}

/*───────────── BASIC END ───────────── */

.slideshow-container1 {
  position: relative;
  max-width: 100%;
  /* take full available width */
  height: auto;
  /* auto height to keep aspect ratio */
  aspect-ratio: 16 / 5;
  /* keeps fixed ratio (16:9 like YouTube) */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  margin-bottom: 30px;
}

.slide1 {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




@media (max-width: 786px) {
  .slideshow-container1 {
    position: relative;
    max-width: 100%;         /* take full available width */
    height: auto;            /* auto height to keep aspect ratio */
    aspect-ratio: 16 / 9;    /* keeps fixed ratio (16:9 like YouTube) */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
     margin-bottom: 30px;
  }
}