/* 🎃 Slider Container */
.halloween-image-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: transparent;
}

/* 🎃 Track with sliding images */
.halloween-slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

/* 🎃 Each image */
.halloween-slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 📝 Caption Overlay (spooky look) */
.halloween-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 0, 0, 0.7); /* darker for Halloween */
  color: #FFA500; /* pumpkin orange */
  font-size: 1rem;
  padding: 8px 12px;
  font-weight: 700;
  font-family: Lato, sans-serif;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
  text-shadow: 1px 1px 3px black;
}

/* 📱 Responsive tweaks */
@media (max-width: 480px) {
  .halloween-caption {
    font-size: 0.85rem;
    padding: 6px 8px;
  }
}
