﻿
@font-face {
    font-family: 'Dream Avenue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../../fonts/Dream-Avenue.ttf') format('truetype');
}

* {scroll-margin-top: 100px;}

.fs_9{font-size:9px}
.fs_10{font-size:10px}
.fs_11{font-size:11px}
.fs_12{font-size:12px}
.fs_13{font-size:13px}
.fs_14{font-size:14px}
.fs_15{font-size:15px}
.fs_16{font-size:16px}
.fs_18{font-size:18px}

/* INNER PAGES START CODE */
/* Responsive tuning for Rooms carousel cards */
#roomsPanelRooms #roomsCarouselTrack .rooms-carousel-slide,
#roomsPanelSuites #suitesCarouselTrack .rooms-carousel-slide {
    min-height: 170px;
}

    #roomsPanelRooms #roomsCarouselTrack .rooms-carousel-slide h3,
    #roomsPanelSuites #suitesCarouselTrack .rooms-carousel-slide h3 {
        font-size: 1.0625rem;
        line-height: 1.2;
    }

@media (min-width: 640px) {

    #roomsPanelRooms #roomsCarouselTrack .rooms-carousel-slide,
    #roomsPanelSuites #suitesCarouselTrack .rooms-carousel-slide {
        min-height: 205px;
    }

        #roomsPanelRooms #roomsCarouselTrack .rooms-carousel-slide h3,
        #roomsPanelSuites #suitesCarouselTrack .rooms-carousel-slide h3 {
            font-size: 1.1875rem;
        }
}

@media (min-width: 1024px) {

    #roomsPanelRooms #roomsCarouselTrack .rooms-carousel-slide,
    #roomsPanelSuites #suitesCarouselTrack .rooms-carousel-slide {
        min-height: 235px;
    }

        #roomsPanelRooms #roomsCarouselTrack .rooms-carousel-slide h3,
        #roomsPanelSuites #suitesCarouselTrack .rooms-carousel-slide h3 {
            font-size: 1.3125rem;
        }
}

/* Header nav: persistent active state (click + scroll) */
#siteHeader nav[aria-label="Primary"] a.header-nav-active,
#siteHeader nav[aria-label="Mobile"] a.header-nav-active {
    background-image: linear-gradient(to bottom right, rgba(148, 179, 217, 0.28), rgba(148, 179, 217, 0.45));
    color: #355a73;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(148, 179, 217, 0.45), 0 2px 8px rgba(53, 90, 115, 0.12);
}

/* Header mobile nav: offcanvas drawer */
.mobile-nav-offcanvas {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms ease, visibility 0s linear 280ms;
}

.mobile-nav-offcanvas__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(12, 18, 28, 0.42);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.mobile-nav-offcanvas__panel {
    position: relative;
    margin-left: auto;
    display: flex;
    height: 100%;
    width: min(22rem, 86vw);
    flex-direction: column;
    border-left: 1px solid rgba(148, 179, 217, 0.25);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -14px 0 36px rgba(53, 90, 115, 0.18);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.mobile-nav-offcanvas--open {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.mobile-nav-offcanvas--open .mobile-nav-offcanvas__panel {
    transform: translateX(0);
}

/* Hero banner headings: same stack as Tailwind theme.fontFamily.display (reliable if CDN order varies) */
#banner h1,
#banner h2 {
    font-family: 'Dream Avenue', 'Montserrat', system-ui, sans-serif;
}

/* Hero banner: slide width = one “frame” of #bannerSliderRoot (works before/without JS) */
#bannerSliderRoot {
    width: 100%;
    container-type: inline-size;
    container-name: banner-slider;
}

#bannerSliderTrack {
    display: flex;
    height: 100%;
    will-change: transform;
}

.banner-slide {
    position: relative;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    flex: 0 0 100cqw;
    width: 100cqw;
    box-sizing: border-box;
}

.banner-content-fade-down {
    opacity: 0;
    transform: translateY(-18px);
}

.banner-slide.is-active .banner-content-fade-down {
    animation: bannerFadeDown 780ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bannerFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .banner-content-fade-down {
        opacity: 1;
        transform: none;
    }

    .banner-slide.is-active .banner-content-fade-down {
        animation: none;
    }
}

@supports not (width: 1cqw) {
    .banner-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }
}

/* Banner carousel dots: readable on any slide */
#bannerSliderDots .banner-slider-dot {
    box-sizing: border-box;
    min-height: 12px;
    min-width: 12px;
}

    #bannerSliderDots .banner-slider-dot[aria-selected="true"] {
        min-width: 2.5rem;
    }

/* INNER PAGES END CODE */