/* =========================================================
   HOLIDAY SLIDESHOW – Wonderland
   Fading slideshow with static text overlay
   ========================================================= */ :root {
  --wtc-green: #485020;
  --slide-duration: 5s; /* time each image stays visible */
  --fade-duration: 1.5s; /* fade transition time */
}
#holiday-banner {
  position: relative;
  font-family: "new-spirit", serif !important;
  color: #fff;
  overflow: hidden;
  margin: 5vw auto;
}
/* Desktop / Tablet slideshow */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 2000 / 800;
  border-radius: 2vw;
  overflow: hidden;
  background-color: #485020;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--fade-duration) ease-in-out;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  object-position: center center;
  background-color: #485020;
}
.slide img.desktop {
  display: block;
}
.slide.active {
  opacity: 1;
}
/* Text overlay (desktop/tablet) */
.holiday-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 2vw;
  z-index: 2;
  box-sizing: border-box;
  font-family: "new-spirit", serif !important;
  font-weight: 500;
  text-shadow: 0 0 3px #485020, 0 0 6px #485020;
}
.holiday-text h2 {
  font-family: "new-spirit", serif !important;
  margin: 0 0 0.5em;
  font-size: 36px;
  font-weight: 500;
}
.holiday-text p {
  font-family: "new-spirit", serif !important;
  margin: 0 auto;
  max-width: 1000px;
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.8;
}
.holiday-text:hover{text-decoration: none !important;}
/* Mobile version */
@media (max-width: 1200px) {
  .slideshow {
    aspect-ratio: 2 / 1;
  }
}
/* Mobile version */
@media (max-width: 768px) {
  .slideshow {
    aspect-ratio: 5 / 4;
    border-radius: 2vw 2vw 0 0;
  }
  .slide img.desktop {
    display: none;
  }
  .slide img.mobile {
    display: block;
  }
  .holiday-text {
    font-family: "new-spirit", serif !important;
    position: relative;
    bottom: 0;
    background-color: var(--wtc-green);
    border-radius: 0 0 2vw 2vw;
    padding: 1.5em 1em;
    font-weight: 500;
  }
  .holiday-text h2 {
    font-family: "new-spirit", serif !important;
    font-size: 30px;
    font-weight: 500;
  }
  .holiday-text p {
    font-family: "new-spirit", serif !important;
    font-size: 2vw;
    font-weight: 400;
    line-height: 1.8;
  }
}