/* Static frontend polyfills – icons, hero slideshow, animations */

@font-face {
  font-family: "ElegantIcons";
  src: url("/assets/fonts/ElegantIcons.woff") format("woff"),
       url("/assets/fonts/ElegantIcons.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("/assets/fonts/fa-solid-900.woff2") format("woff2"),
       url("/assets/fonts/fa-solid-900.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "flaticon_hotel";
  src: url("/assets/fonts/flaticon_hotel.woff2") format("woff2"),
       url("/assets/fonts/flaticon_hotel.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Hero slideshow – theme .cs-section-content-fullwidth handles full-bleed */

.elementor-element-7261abc6.elementor-section {
  overflow: hidden;
}

.elementor-element-7261abc6 > .elementor-background-overlay {
  z-index: 1;
}

.elementor-element-7261abc6 > .elementor-container {
  position: relative;
  z-index: 2;
}

/* Fallback only until slideshow JS mounts */
.elementor-element-7261abc6:not(.zc-slideshow-ready)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/images/0bc97cc3-slide1.webp") center/cover no-repeat;
}

.elementor-section .elementor-background-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.elementor-background-slideshow__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.elementor-background-slideshow__slide.elementor-active {
  opacity: 1;
  z-index: 1;
}

.elementor-background-slideshow__slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform-origin: center center;
  will-change: transform;
}

/* Scroll reveal (replaces elementor-invisible) */
.zc-revealed.elementor-invisible,
.zc-revealed {
  visibility: visible !important;
  animation: zc-fade-in-up 0.8s ease both;
}

@keyframes zc-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Sticky header */
.site-header.is-sticky,
.site-header.sticky,
.site-header.sticked {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body.header-sticky-active {
  padding-top: var(--zc-header-height, 90px);
}

/* CTA image hover zoom */
.cta-hover-img-zoom .cs-cta-img img,
.cta-hover-img-zoom .cs-cta-img {
  transition: transform 0.6s ease;
  overflow: hidden;
}

.cta-hover-img-zoom:hover .cs-cta-img img {
  transform: scale(1.08);
}
