/* ===================================
   Wyndham Residences - Custom Styles
   Bootstrap 5 + AOS + Swiper
   =================================== */


/* @font-face {
    font-family: 'FONTSPRING-DEMO-Voire';
    src: url('../fonts/FONTSPRINGDEMO-VoireRegular.woff2') format('woff2'), url('../fonts/FONTSPRINGDEMO-VoireRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: 'Voire Display';
    src: url('../fonts/Voire-DisplayMedium.woff2') format('woff2'), url('../fonts/Voire-DisplayMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gesta Lt';
    src: url('../fonts/Gesta-Light.eot');
    src: url('../fonts/Gesta-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Gesta-Light.woff2') format('woff2'), url('../fonts/Gesta-Light.woff') format('woff'), url('../fonts/Gesta-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gesta Md';
    src: url('../fonts/Gesta-Medium.eot');
    src: url('../fonts/Gesta-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Gesta-Medium.woff2') format('woff2'), url('../fonts/Gesta-Medium.woff') format('woff'), url('../fonts/Gesta-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* Root Variables */

:root {
    --primary-color: #007cc1;
    --text-dark: #3c3c3c;
    --bg-beige: #e3dccd;
    --bg-gold: #d4a673;
    --bg-blue: #7fb3d5;
    --transition: all 0.3s ease;
}


/* ===================================
   Cookie Consent
   =================================== */

.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(22, 40, 56, 0.97);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(110%);
    transition: transform 0.3s ease;
}

html.cookie-consent-pending .cookie-consent-banner {
    transform: translateY(0);
}

.cookie-consent-title {
    font-family: 'Voire Display', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
    color: #fff;
}

.cookie-consent-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-banner .cookie-consent-actions {
    gap: 0.5rem;
}

.cookie-consent-banner .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    border-radius: 3px;
}

.cookie-consent-banner .btn-outline-light:hover,
.cookie-consent-banner .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.cookie-consent-banner .btn-primary-custom {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    border-radius: 3px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.cookie-consent-banner .btn-primary-custom:hover,
.cookie-consent-banner .btn-primary-custom:focus {
    background-color: #006199;
    border-color: #006199;
    color: #fff;
}

.cookie-consent-preferences {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.25rem;
}

.cookie-consent-prefs-title {
    font-family: 'Gesta Md', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0;
}

.cookie-consent-pref-row {
    margin-bottom: 1rem;
}

.cookie-consent-pref-row:last-of-type {
    margin-bottom: 0;
}

.cookie-consent-banner .cookie-consent-pref-hint {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.65rem;
    margin-top: 0.2rem;
}

.cookie-consent-banner .form-check-label {
    color: #fff;
    font-size: 0.9rem;
}

.cookie-consent-banner .form-check-input {
    border-color: rgba(255, 255, 255, 0.45);
}

.cookie-consent-banner .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-consent-banner .form-check-input:disabled {
    opacity: 0.65;
}

@media (max-width: 768px) {
    .cookie-consent-title {
        font-size: 1.15rem;
    }
    .cookie-consent-text {
        font-size: 0.9rem;
    }
    .cookie-consent-banner .cookie-consent-actions .btn {
        flex: 1 1 calc(50% - 0.25rem);
        justify-content: center;
        min-width: 0;
    }
    .cookie-consent-banner .cookie-consent-actions .btn-primary-custom {
        flex: 1 1 100%;
    }
}


/* ===================================
   Global Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Gesta Lt';
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--text-dark);
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
}

section {
    position: relative;
    /* overflow: hidden;     */
}

.container-max {
    width: 100%;
    max-width: 1600px;
}


/* ===================================
   Typography
   =================================== */

.heading-primary {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    /* font-family: 'FONTSPRING-DEMO-Voire'; */
    font-family: 'Voire Display';
}

h2.heading-primary {
    font-size: clamp(2rem, 5vw, 3rem);
}

.heading-secondary {
    /* font-family: 'FONTSPRING-DEMO-Voire'; */
    font-family: 'Voire Display';
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
}

.heading-tertiary {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Gesta Md';
    margin-bottom: .5rem;
    font-size: 18px;
}

.text-light-custom {
    font-weight: 300;
    line-height: 1.8;
}

.text-dark-custom {
    color: var(--text-dark);
}


/* ===================================
   Buttons
   =================================== */

.btn-primary-custom {
    --bs-btn-bg: var(--primary-color);
    --bs-btn-color: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-bg: #006199;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-color: #fff;
    --bs-btn-active-border-color: #fff;
    --bs-btn-focus-shadow-rgb: 0, 124, 193;
    background-color: var(--primary-color);
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 40px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Gesta Md';
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary-custom:hover {
    background-color: #006199;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 193, 0.3);
}


/* Keep brand styling when focused via keyboard (Tab) or activated (Space/click). */

.btn.btn-primary-custom:focus,
.btn.btn-primary-custom:focus-visible,
.btn.btn-primary-custom:focus:not(:focus-visible),
.btn.btn-primary-custom:active,
.btn.btn-primary-custom.active,
.btn.btn-primary-custom.show,
.btn.btn-primary-custom:first-child:active,
:not(.btn-check)+.btn.btn-primary-custom:active,
button.btn.btn-primary-custom:focus,
button.btn.btn-primary-custom:focus-visible,
button.btn.btn-primary-custom:focus:not(:focus-visible),
button.btn.btn-primary-custom:active,
button[type="submit"].btn.btn-primary-custom:focus,
button[type="submit"].btn.btn-primary-custom:focus-visible,
button[type="submit"].btn.btn-primary-custom:active {
    background-color: var(--primary-color) !important;
    border-color: #fff !important;
    color: #fff !important;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 124, 193, 0.35);
}

.btn.btn-primary-custom:hover:focus,
.btn.btn-primary-custom:hover:focus-visible,
button.btn.btn-primary-custom:hover:focus,
button.btn.btn-primary-custom:hover:focus-visible,
button[type="submit"].btn.btn-primary-custom:hover:focus-visible {
    background-color: #006199 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 193, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 0;
    font-family: 'Gesta Md';
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* ===================================
   Background Colors
   =================================== */

.bg-beige {
    background-color: var(--bg-beige);
}

.bg-gold {
    background-color: var(--bg-gold);
}

.bg-blue {
    background-color: var(--bg-blue);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}


/* ===================================
   Hero Section
   =================================== */

.hero-section {
    height: 100vh;
    min-height: 700px;
}

.video-background,
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    z-index: 5;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    font-family: 'Gesta Md';
}


/* Home hero content sits above the scroll indicator:
   24px indicator bottom + 60px indicator height + 100px gap */

.home-hero-content {
    padding-bottom: 150px;
}


/* Navbar */

.navbar-custom {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    z-index: 10;
    min-height: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-hamburger {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0 !important;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.custom-hamburger:focus {
    box-shadow: none;
}

.custom-hamburger-icon {
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
    background-position: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M1.5 3h13M1.5 8h13M1.5 13h7' stroke='rgba%28255,255,255,1%29' stroke-width='1.6' stroke-linecap='round'/%3e%3c/svg%3e");
}

.nav-shell {
    position: relative;
    min-height: 44px;
}

.nav-left-group {
    position: relative;
    z-index: 2;
}

.top-nav-inline {
    margin-left: 2px;
    gap: 24px;
}

.top-nav-divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.8);
    margin-right: 10px;
}

.top-nav-link {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    line-height: 1;
    opacity: 0.95;
    font-family: 'Gesta Md';
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.top-nav-link:hover {
    opacity: 1;
}

.top-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.top-nav-link:hover::before,
.top-nav-link.active::before {
    transform: scaleX(1);
}

.nav-logo-desktop {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.nav-logo-mobile {
    margin: 0;
}

.nav-logo-desktop img,
.nav-logo-mobile img {
    height: 75px !important;
    width: auto;
}

.nav-actions-desktop .btn-outline-custom,
.nav-actions-desktop .btn-primary-custom {
    padding: 8px 20px;
    font-size: .9rem;
    letter-spacing: 0.08em;
    transform: none !important;
    box-shadow: none !important;
}

.navbar-custom.navbar-scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    z-index: 1100;
    min-height: 50px;
    height: 50px;
    background: rgba(0, 124, 193, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-custom.navbar-scrolled .nav-shell {
    min-height: 50px;
}

.navbar-custom.navbar-scrolled .top-nav-divider {
    height: 18px;
}

.navbar-custom.navbar-scrolled .nav-logo-desktop img,
.navbar-custom.navbar-scrolled .nav-logo-mobile img {
    height: 36px !important;
}

.navbar-custom.navbar-scrolled .nav-actions-desktop .btn-outline-custom,
.navbar-custom.navbar-scrolled .nav-actions-desktop .btn-primary-custom {
    padding: 5px 14px;
    font-size: .75rem;
}

.nav-actions-desktop .btn-primary-custom {
    background-color: #0086cc;
}

#navbarNav.slide-panel {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 92vw);
    height: 100vh;
    overflow-y: auto;
    background: rgba(13, 32, 67, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 16px 20px;
    z-index: 1050;
    transform: translateX(-112%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
}

#navbarNav.slide-panel.show,
#navbarNav.slide-panel.collapsing {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#navbarNav.slide-panel.collapsing {
    height: 100vh !important;
    transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.slide-panel-header {
    padding: 4px 2px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
}

.slide-panel-title {
    font-size: 12px;
    letter-spacing: 0.1em;
}

.slide-panel-close {
    font-size: 34px;
    line-height: 1;
    padding: 0;
}

#navbarNav .nav-link {
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 12px 0 !important;
    position: relative;
    display: inline-block;
}

#navbarNav .nav-item+.nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

#navbarNav .nav-link:hover {
    font-weight: 500;
    font-family: 'Gesta Md';
    color: #fff;
}

#navbarNav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

#navbarNav .nav-link:hover::before,
#navbarNav .nav-link.active::before {
    transform: scaleX(1);
}


/* Booking Form */

#bookingForm {
    padding: .5rem 1.5rem;
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid white;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    max-width: 1200px;
}

.booking-label {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.booking-input,
.booking-select {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    font-family: 'Voire Display';
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.95);
}

.booking-select option {
    color: #111;
}

.booking-input:focus,
.booking-select:focus {
    box-shadow: none;
}

.booking-field img {
    max-width: 25px;
    margin-right: 10px;
    max-height: 25px;
    margin-top: 17px;
}

#bookingForm .booking-field-divider {
    position: relative;
}

#bookingForm .booking-field-divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.25);
}

#bookingForm .booking-field-divider.border-0::after {
    display: none;
}


/* search guest new dropdown */

.guests-dropdown {
    /* padding: 10px 13px 4px;
    border: solid 1px #e2e2e2; */
    border-radius: 0;
    min-width: 185px;
}

.guests-dropdown a {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-color);
}

.guests-dropdown a:hover {
    color: var(--text-color);
}

.guests-dropdown>a {
    width: 100%;
    display: block;
    font-family: 'Voire Display';
}

.guests-dropdown .dropdown-menu {
    padding: 10px 20px;
    width: 300px;
    max-width: calc(100vw - 32px);
    border: 0px;
    margin-top: 10px !important;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.08);
}

.guests-dropdown .dropdown-menu li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.guests-dropdown .dropdown-menu li:last-child {
    border: 0px;
}

.guests-dropdown .dropdown-menu li h4 {
    font-size: 1rem;
    line-height: 1rem;
}

.guests-dropdown .dropdown-menu li h4 small {
    display: block;
    color: #777;
}

.guests-dropdown .dropdown-menu li span {
    width: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guests-dropdown .dropdown-menu li span i {
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    justify-content: center;
    align-items: center;
}

.guests-dropdown .dropdown-menu li span p {
    margin: 0;
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 36px;
    height: 60px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-3px);
}

.scroll-indicator:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 3px;
}

.scroll-indicator-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
}

.scroll-indicator-wheel {
    width: 2px;
    height: 7px;
    margin-top: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    animation: scrollWheel 1.6s ease-in-out infinite;
}

.scroll-indicator-arrow {
    font-size: 14px;
    line-height: 1;
    opacity: 0.9;
    animation: scrollArrow 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }
    60% {
        transform: translateY(9px);
        opacity: 0.2;
    }
}

@keyframes scrollArrow {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }
    55% {
        transform: translateY(3px);
        opacity: 1;
    }
}

@media (max-width:768px) {
    #bookingForm .booking-field-divider::after {
        display: none;
    }
}


/* ===================================
   About Section
   =================================== */

.about-section {
    background-color: var(--bg-beige);
    min-height: 100vh;
}

#who-section {
    height: 200vh;
    position: relative;
    overflow-x: clip;
}

#who-section .stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}


/* portrait cards */

.card-img {
    position: absolute;
    left: 0;
    top: 10%;
    /* width: 740px;
    height: 820px; */
    width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
    will-change: transform, opacity;
    opacity: 0;
}

#who-section .container {
    max-width: 100%;
    z-index: 999;
}

#who-section .container>.position-relative {
    width: min(100%, 960px);
}


/* ===================================
   Images
   =================================== */

.img-border {
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hover-scale:hover {
    transform: scale(1.05);
}


/* accommodation section */


/* Home page only: clamp intro copy to ~4 lines (full text remains on /accommodation). */

.home-accommodation-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    line-height: 1.6;
}


/* Let line-clamp treat CMS paragraphs as one flowing block. */

.home-accommodation-desc> :where(p,
div) {
    display: inline;
}

.home-accommodation-desc> :where(p,
div)+ :where(p,
div)::before {
    content: ' ';
}

.accommodation-feature {
    position: relative;
}

.accommodation-feature .bg-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
}

.accommodation-feature .bg-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

.accommodation-feature .bg-slider .accommodation-bg-slide {
    position: relative;
    overflow: hidden;
    min-height: inherit;
}

.accommodation-feature .bg-slider .accommodation-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.accommodation-feature .bg-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.accommodation-feature .caption-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
}

.accommodation-feature .caption-slider {
    width: 100%;
}


/* .accommodation-feature .swiper-wrapper {
    padding-top: 1rem;
} */

.accommodation-feature .caption-slider .swiper-slide {
    width: 40%;
    text-align: center;
    opacity: 0.4;
    transition: all 0.6s ease;
}

.accommodation-feature .caption-slider .swiper-slide-active {
    opacity: 1;
}

.accommodation-feature .caption-title {
    font-family: 'Voire Display';
    font-size: 3rem;
    line-height: 3rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.accommodation-feature .caption-sub {
    color: #fff;
    letter-spacing: 3px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 2rem;
    font-family: 'Gesta Md';
}


/* Home accommodation slider â€” center room titles (wyndham-html2 reference) */

.home-accommodation-feature .caption-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.home-accommodation-feature .caption-slider {
    pointer-events: auto;
    width: 100%;
    max-width: 100%;
}

.home-accommodation-feature .caption-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-accommodation-feature .caption-slider .swiper-slide-active {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 769px) {
    .home-accommodation-feature .caption-slider .swiper-slide {
        width: 40% !important;
        max-width: none;
        opacity: 0.4;
        visibility: visible;
        pointer-events: auto;
    }
    .home-accommodation-feature .caption-slider .swiper-slide-active {
        opacity: 1 !important;
    }
}

.home-accommodation-feature .caption-title,
.home-accommodation-feature .caption-sub {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.accommodation-feature .slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
}

.home-accommodation-feature .slider-nav {
    z-index: 15;
}

.accommodation-feature .nav-btn {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.accommodation-feature .nav-btn span {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.accommodation-feature .nav-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.accommodation-feature .nav-btn:hover span {
    color: #000;
}


/* accommodation page */

.accommodation-page .section {
    padding: 5rem 0;
}

.accommodation-page .section-sm {
    padding: 2rem 0;
}

.inner-banner {
    height: min(65vh, 600px);
    max-height: 600px;
    min-height: 300px;
}

.inner-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.inner-banner .hero-content {
    padding-top: 4.5rem;
}

.inner-banner .heading-primary {
    font-size: clamp(2rem, 5vw, 3rem);
}

.breadcrumb-section {
    background: #f6f2ed;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: .9rem;
    padding: .75rem 0;
}

.breadcrumb-section .breadcrumb {
    margin: 0 auto;
    padding: 0;
}

.breadcrumb-section a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb-section a:hover {
    color: var(--primary-color);
}

.accommodation-intro p {
    color: #333;
    line-height: 1.75;
    max-width: 1100px;
}

.accommodation-intro-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    max-height: 720px;
}

.accommodation-intro .intro-points {
    margin-top: 1.25rem;
    display: grid;
    gap: .85rem;
    max-width: 1100px;
}

.accommodation-intro .intro-points li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: #2f2f2f;
    line-height: 1.6;
}

.accommodation-intro .intro-points i {
    color: #007cc1;
    font-size: 15px;
    margin-top: 4px;
    min-width: 18px;
}

.accommodation-highlights {
    background: #fff;
}

.highlight-card {
    height: 100%;
    border: 1px solid rgba(0, 124, 193, 0.1);
    background: #f2fbff;
    border-radius: 8px;
    padding: 1rem .75rem;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #2f2f2f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 120px;
}

.highlight-card .highlight-icon {
    font-size: 46px;
    color: var(--primary-color);
    line-height: 1;
}

.highlight-card span {
    color: #5d6776;
    font-size: 16px;
    letter-spacing: .03em;
}

.apartment-card-wrap {
    margin-bottom: 4rem;
}

.apartment-card-wrap:last-child {
    margin-bottom: 0;
}

.apartment-image {
    width: 100%;
    /* aspect-ratio: 16 / 10; */
    object-fit: cover;
    min-height: 700px;
    border-radius: 1rem;
}

.apartment-type-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.apartment-type-slider .apartment-image {
    cursor: pointer;
}

.apartment-type-slider .swiper-slide {
    height: auto;
}

.apartment-type-slider .apartment-image {
    border-radius: 0;
}

.apartment-type-slider .swiper-pagination {
    bottom: 1.25rem !important;
}

.apartment-type-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.55;
}

.apartment-type-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.apartment-lightbox-modal .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.apartment-lightbox-modal .modal-dialog {
    max-width: min(1400px, calc(100vw - 1.5rem));
    margin: .75rem auto;
}

.apartment-lightbox-modal .modal-body {
    padding: 0;
}

.apartment-lightbox-modal {
    background: rgba(0, 0, 0, 0.92);
}

.apartment-lightbox-close {
    position: absolute;
    top: 3rem;
    right: .9rem;
    z-index: 6;
    width: 42px;
    height: 42px;
    min-width: 42px;
    background-color: rgba(0, 0, 0, 0.52);
    background-size: 16px;
    opacity: 1;
    border-radius: 50%;
    box-shadow: none;
    filter: invert(1);
}

.apartment-lightbox-slider {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 1.5rem);
}

.apartment-lightbox-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 1.5rem);
}

.apartment-lightbox-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 7rem);
    object-fit: contain;
}

.apartment-lightbox-slider .swiper-pagination {
    bottom: 1.1rem !important;
    z-index: 4;
}

.apartment-lightbox-slider .swiper-button-prev,
.apartment-lightbox-slider .swiper-button-next {
    width: 36px;
    height: 36px;
    margin-top: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 50%;
    z-index: 6;
    box-shadow: none;
}

.apartment-lightbox-slider .swiper-button-prev {
    left: .9rem;
    top: 50%;
}

.apartment-lightbox-slider .swiper-button-next {
    right: .9rem;
    top: 50%;
}

.apartment-lightbox-slider .swiper-button-prev::after,
.apartment-lightbox-slider .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.apartment-lightbox-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
}

.apartment-lightbox-slider .swiper-pagination-bullet-active {
    background: #fff;
}

.apartment-lightbox-counter {
    position: absolute;
    top: 2rem;
    left: 1rem;
    z-index: 6;
    color: #fff;
    font-family: 'Gesta Md';
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
}

.apartment-lightbox-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.55;
}

.apartment-lightbox-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.apartment-image.img-sm {
    min-height: auto;
}

.sub-heading {
    font-family: 'Gesta Md';
    text-transform: uppercase;
    font-size: 18px;
}

.dining-page .dining-hours-card {
    margin-top: 1.25rem;
    /* background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.08); */
    border-radius: 8px;
    padding: 0;
}

.dining-page .dining-hours-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: .85rem;
}

.dining-page .dining-hours-header li {
    list-style: none;
}

.dining-page .dining-hours-header i,
.dining-page .dining-hours-block i {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1;
    margin-top: .1rem;
}

.dining-page .dining-hours-header h5 {
    margin: 0;
    font-size: 1.8rem;
    color: #2f2f2f;
}

.dining-page .dining-hours-card p {
    color: #2f2f2f;
}

.dining-page .dining-hours-card ul {
    padding-left: 1.1rem;
    color: #4a4a4a;
}

.dining-page .dining-hours-card li {
    margin-bottom: .25rem;
    list-style: none;
}

.dining-page .dining-hours-block {
    margin-bottom: 1.4rem;
    display: flex;
}

.dining-page .dining-card-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.35rem;
}

.dining-page .dining-card-cta-group .dining-hours-btn {
    margin-top: 0;
    margin-bottom: 0;
}

.dining-page .dining-hours-btn {
    min-width: 156px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.35rem;
}

.dining-page .dining-listing-badges {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.dining-page .listing-badge {
    color: #1f1f1f;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: .01em;
    line-height: 1;
    max-width: none;
    margin-right: 20px;
}

.dining-page .dining-listing-badges .dining-partner-logo,
.dining-page .dining-listing-badges img {
    filter: none;
    mix-blend-mode: normal;
    object-fit: contain;
    max-height: 36px;
    width: auto;
    max-width: 120px;
}

.dining-page .dining-partner-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.dining-page .dining-listing-badges img.dining-zomato-logo {
    width: 110px;
    max-width: 110px;
    max-height: none;
    height: auto;
}

.dining-page .dining-listing-badges img.dining-tripadvisor-logo {
    width: 125px;
    max-width: 125px;
    max-height: none;
    height: auto;
}

.dining-page .dining-listing-badges .listing-badge.dining-zomato-badge {
    background-color: #e23744;
    border-radius: 6px;
    padding: 6px 12px;
    max-width: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.dining-page .dining-listing-badges .dining-zomato-badge .dining-partner-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.dining-page .dining-listing-badges .dining-zomato-badge img.dining-zomato-wordmark {
    filter: brightness(0) invert(1);
    max-height: 30px;
    width: auto;
    mix-blend-mode: normal;
}

.dining-page .listing-swarm {
    color: #d49a3a;
    font-size: 1.45rem;
}

.contact-page .contact-card,
.contact-page .contact-form-wrap {
    background: #fff;
    /* border: 1px solid rgba(0, 0, 0, 0.08); */
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.contact-page .contact-card h4,
.contact-page .contact-form-wrap h4 {
    margin-bottom: 1rem;
}

.contact-page .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .65rem;
}

.contact-page .contact-list i {
    color: var(--primary-color);
    margin-top: .2rem;
}

.contact-page .contact-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-page .contact-map {
    border: 0;
    width: 100%;
    min-height: 420px;
    border-radius: 8px;
}

.contact-page .form-control {
    border-radius: 0;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    min-height: 46px;
}

.contact-page textarea.form-control {
    min-height: 140px;
}

.contact-page .contact-intro-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.contact-page .contact-intro-panel {
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.contact-page .contact-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 124, 193, 0.35);
    padding: .35rem .75rem;
    border-radius: 999px;
}

.contact-page .contact-quick .btn-outline-dark {
    border-radius: 0;
    padding: 12px 28px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .9rem;
    font-family: "Gesta Md";
}

.contact-page .contact-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.contact-page .contact-chip {
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .65rem;
    border: 1px solid rgba(0, 124, 193, 0.35);
    color: #1f4b62;
    background: #eef8ff;
}

.contact-page .contact-map-wrap {
    background: #fff;
    border-radius: 8px;
    padding: .6rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-page .contact-aside-card {
    background: #0b3b57;
    color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-page .contact-aside-card h5 {
    font-family: 'FONTSPRING-DEMO-Voire';
    font-size: 1.7rem;
}

.contact-page .contact-aside-card p {
    color: rgba(255, 255, 255, 0.88);
}

.contact-page .contact-aside-card .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    font-family: 'Gesta Md';
}

.contact-page .contact-aside-card .btn-outline-dark:hover {
    background: #fff;
    color: #0b3b57;
}

.contact-page .form-control:focus {
    border-color: rgba(0, 124, 193, 0.65);
    box-shadow: 0 0 0 0.2rem rgba(0, 124, 193, 0.14);
}

.contact-page #contact-enquiry-form button[type="submit"].btn-primary-custom:focus,
.contact-page #contact-enquiry-form button[type="submit"].btn-primary-custom:focus-visible,
.contact-page #contact-enquiry-form button[type="submit"].btn-primary-custom:active,
.careers-page form button[type="submit"].btn-primary-custom:focus,
.careers-page form button[type="submit"].btn-primary-custom:focus-visible,
.careers-page form button[type="submit"].btn-primary-custom:active {
    background-color: var(--primary-color) !important;
    border-color: #fff !important;
    color: #fff !important;
}

.careers-page #career-application-form .form-control.is-valid,
.careers-page #career-application-form .iti.is-valid .form-control {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.4.7l-4 4.6c-.43.5-.82.5-1.2.13z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.careers-page #career-application-form .form-control.is-invalid,
.careers-page #career-application-form .iti.is-invalid .form-control {
    border-color: #dc3545;
}

.careers-page #career-application-form .career-intro-counter {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.55);
    text-align: right;
}

.careers-page #career-application-form .career-intro-counter.is-at-limit {
    color: #dc3545;
    font-weight: 600;
}

.careers-page #career-application-form button.career-form-submit.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.85;
}

.careers-page #career-application-form button.career-form-submit.is-loading::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    vertical-align: -0.15em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: career-form-spin 0.65s linear infinite;
}

@keyframes career-form-spin {
    to {
        transform: rotate(360deg);
    }
}

.careers-page .careers-position-table {
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 980px;
}

.careers-page .careers-position-table th,
.careers-page .careers-position-table td {
    /* border: 1px solid #222; */
    color: #1f1f1f;
    text-align: left;
    vertical-align: middle;
    padding: 12px 10px;
}

.careers-page .careers-position-table tr:hover td {
    background: #f1f1f1;
}

.careers-page .careers-position-table thead th {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.25;
    background: #e2e2e2;
}

.careers-page .careers-position-table tbody td {
    font-size: 1rem;
    line-height: 1.2;
}

.careers-page .careers-position-table th:nth-child(1),
.careers-page .careers-position-table td:nth-child(1) {
    width: 45%;
}

.careers-page .careers-position-table th:nth-child(2),
.careers-page .careers-position-table td:nth-child(2) {
    width: 29%;
}

.careers-page .careers-position-table th:nth-child(3),
.careers-page .careers-position-table td:nth-child(3) {
    width: 26%;
}

.careers-page .careers-apply-link {
    color: #007cc1;
    text-decoration: none;
    font-family: 'Gesta Md';
    font-size: 1rem;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.careers-page .careers-apply-link:hover {
    color: #006199;
}

.room-amenities-section .amenity-item {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 6px;
    padding: .85rem .9rem;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #222;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
}

.room-amenities-section .amenity-icon {
    color: #007cc1;
    font-size: 15px;
}

@media (max-width:1120px) {
    .nav-logo-desktop img,
    .nav-logo-mobile img {
        height: 45px !important;
        width: auto;
    }
    .top-nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    #who-section {
        height: auto;
    }
    #who-section .stage {
        position: relative;
        top: auto;
        height: auto;
        min-height: auto;
        padding: 4rem 0;
        overflow: hidden;
    }
    #who-section .card-img {
        display: none;
    }
    #who-section .container {
        min-height: auto !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #who-section .container>.position-relative {
        padding: 0 !important;
    }
    #who-section h2 br {
        display: none;
    }
    .accommodation-page .section {
        padding: 2.25rem 0;
    }
    .inner-banner {
        height: min(46vh, 400px);
        min-height: 240px;
    }
    .apartment-card-wrap {
        margin-bottom: 2.5rem;
        border-bottom: 1px solid #e2e2e2;
        padding-bottom: 1rem;
    }
    .dining-page .dining-hours-card {
        padding: 1rem;
    }
    .dining-page .dining-hours-header h5 {
        font-size: 1.45rem;
    }
    .dining-page .listing-badge {
        font-size: 1.45rem;
    }
    .dining-page .dining-listing-badges img.dining-zomato-logo {
        width: 96px;
        max-width: 96px;
    }
    .dining-page .dining-listing-badges img.dining-tripadvisor-logo {
        width: 108px;
        max-width: 108px;
    }
    .dining-page .listing-swarm {
        font-size: 1.2rem;
    }
    .contact-page .contact-intro-panel {
        padding: 1.25rem 0;
    }
    .contact-page .contact-map {
        min-height: 320px;
    }
    .careers-page .careers-position-table {
        min-width: 760px;
    }
    .careers-page .careers-position-table thead th {
        font-size: 1.2rem;
    }
    .careers-page .careers-position-table tbody td,
    .careers-page .careers-apply-link {
        font-size: 1.04rem;
    }
    .room-amenities-section .amenity-item {
        line-height: 1rem;
        text-align: left;
    }
}

@media (max-width:768px) {
    .apartment-image {
        min-height: 300px;
    }
    .apartment-type-slider .swiper-pagination {
        bottom: .9rem !important;
    }
    .apartment-lightbox-modal .modal-body {
        padding: .75rem;
    }
    .apartment-lightbox-close {
        top: 2rem;
        right: .75rem;
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    .apartment-lightbox-slider .swiper-slide {
        padding: 2.75rem 1rem;
        min-height: min(72vh, 700px);
    }
    .apartment-lightbox-slider .swiper-button-prev,
    .apartment-lightbox-slider .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    .apartment-lightbox-slider .swiper-button-prev {
        left: .5rem;
    }
    .apartment-lightbox-slider .swiper-button-next {
        right: .5rem;
    }
}

@media (max-width: 576px) {
    #who-section .stage {
        padding: 3rem 0;
    }
    #who-section p {
        font-size: 1rem;
        line-height: 1.75;
    }
}


/* activity section */

#activities {
    height: auto;
    background: #d7a75b;
    position: relative;
    overflow-x: clip;
}

.activities-section {
    padding: 4rem 0;
}


/* sticky viewport */

.activities-section .stage {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.activities-section .row {
    --activities-content-width: clamp(460px, 38vw, 560px);
    position: relative;
    display: grid;
    grid-template-columns: var(--activities-content-width) minmax(0, 1fr);
    min-height: 100%;
    align-items: center;
    transition: grid-template-columns .55s cubic-bezier(.22, .61, .36, 1);
}


/* text */

.activities-section .content {
    padding-right: 4rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    transition: opacity .16s ease, visibility 0s linear .16s;
}

.activities-section .content-copy {
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transition: opacity .16s ease, visibility 0s linear 0s;
}

.activities-section .content-copy > * {
    min-width: 0;
}

.activities-section .content-copy #title,
.activities-section .content-copy .btn {
    opacity: 1;
    visibility: visible;
    transition: opacity .16s ease, visibility 0s linear 0s;
}

.activities-section .content-copy #kicker,
.activities-section .content-copy #desc {
    opacity: 1;
    visibility: visible;
    transition: opacity .16s ease, visibility 0s linear 0s;
}

.activities-section .content small {
    font-size: 18px;
    letter-spacing: 2px;
    font-family: 'Gesta Md';
    text-transform: uppercase;
}

.activities-section .content h2 {
    font-size: 44px;
    line-height: 1.1;
}

@media(max-width:1500px) {
    .activities-section .content {
        padding-right: 3rem;
        transition: opacity .24s ease .24s, visibility 0s linear .24s;
    }
    .container-max {
        width: 100%;
        max-width: 1330px;
    }
}


/* gallery */

.activities-section .gallery {
    display: flex;
    height: 420px;
    margin-top: 0 !important;
    transition: height .5s ease;
    cursor: pointer;
}


/* each image */

.activities-section .panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex .6s cubic-bezier(.22, .61, .36, 1);
    cursor: pointer;
}

.activities-section .panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .4s ease;
}

.activities-section .panel:focus-visible {
    outline: 3px solid #0f6bbd;
    outline-offset: 2px;
}

.activities-section .panel::after {
    content: attr(data-title);
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}


/* active */

.activities-section .panel.active {
    flex: 4.5;
}

.activities-section .panel.active::after {
    opacity: 1;
    transform: translateY(0);
}

.activities-section .panel:not(.active) img {
    filter: saturate(.8) brightness(.8);
}

.activities-section .row>.content {
    width: var(--activities-content-width);
    max-width: var(--activities-content-width);
    min-width: 0;
    overflow: visible;
    transition: padding-right .55s cubic-bezier(.22, .61, .36, 1);
}

.activities-section .row>.col-lg-8 {
    width: auto;
    max-width: none;
    padding-top: 0 !important;
    min-width: 0;
}

.activities-section.is-expanded .content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .08s ease, visibility 0s linear .08s;
}

.activities-section.is-expanded .row {
    grid-template-columns: 0 minmax(0, 1fr);
}

.activities-section.is-expanded .row>.content {
    padding-right: 0;
}

.activities-section.is-expanded .row>.col-lg-8 {
    width: 100%;
}


/* .activities-section.is-expanded .gallery {
    height: 500px;
} */

@media(max-width:1100px) {
    .activities-section .row>.content {
        width: auto;
        max-width: 100%;
        min-width: unset;
    }
}

@media(max-width:768px) {
    #activities {
        height: auto;
    }
    .activities-section {
        padding: 3rem 0;
    }
    .activities-section .stage {
        position: relative;
        top: auto;
        height: auto;
        overflow: visible;
        display: block;
    }
    .activities-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .activities-section .content {
        padding-right: 0;
        margin-bottom: 2rem;
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
    .activities-section .content-copy {
        opacity: 1 !important;
        visibility: visible !important;
    }
    .activities-section .row {
        display: block;
        transition: none;
    }
    .activities-section .row>.content {
        width: auto;
        max-width: 100%;
    }
    .activities-section .row>.col-lg-8 {
        width: auto;
        max-width: 100%;
    }
    .activities-section .gallery,
    .activities-section.is-expanded .gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        height: auto;
    }
    .activities-section .panel,
    .activities-section .panel.active {
        flex: none;
        min-height: 220px;
        border-radius: 14px;
    }
    .activities-section .panel::after,
    .activities-section .panel.active::after {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 16px;
        line-height: 1.25;
        opacity: 1;
        transform: none;
    }
    .activities-section.is-expanded .content {
        filter: none;
        opacity: 1;
        transform: none;
    }
    .activities-section.is-expanded .row>.content {
        width: auto;
        max-width: 100%;
        padding-right: 0;
        overflow: visible;
    }
    .activities-section.is-expanded .row>.col-lg-8 {
        width: auto;
        max-width: 100%;
    }
}


/* Dining Section styles */

.savor-section {
    padding: 6rem 0;
}

.savor-slider .swiper-slide {
    height: auto;
    display: flex;
}

.savor-slider .swiper-slide .gallery-item {
    width: 100%;
}

.savor-slider .gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.savor-slider .gallery-item img {
    display: block;
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.savor-slider .gallery-item .overlay {
    position: absolute;
    height: 100px;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.75rem 1.125rem;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.savor-slider .gallery-item .overlay h5 {
    width: 100%;
    margin: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Gesta Md', sans-serif;
    font-size: clamp(0.75rem, 1.6vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.25;
}

.savor-slider .swiper-pagination-bullets {
    display: none;
}

@media (max-width:768px) {
    .savor-section {
        padding: 3rem 0;
    }
}


/* location section styles */

#zoomSection {
    height: 300vh;
    position: relative;
    background: #79a7c7;
    overflow-x: clip;
}


/* sticky viewport */

.location-section .stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    --zoom-overlay-opacity: 0;
}

.location-section .stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: var(--zoom-overlay-opacity);
    pointer-events: none;
    transition: opacity 0.15s linear;
    z-index: 1;
}


/* IMAGE */

.location-section .zoom-media {
    position: absolute;
    left: 10%;
    top: 50%;
    width: 420px;
    transform: translateY(-50%);
    will-change: transform;
}

.location-section .zoom-media img {
    width: 100%;
    height: auto;
    display: block;
}


/* TEXT */

.location-section .content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: right;
}

.location-section .content small {
    letter-spacing: 2px;
    font-size: 18px;
    font-family: 'Gesta Md';
}


/* events section */


/* Offers & Events â€” luxury spacing scale */

.offers-events-section {
    margin-top: -1.25rem;
    padding-top: clamp(2.5rem, 4vw, 3.75rem);
    padding-bottom: clamp(3.75rem, 5vw, 5rem);
}

.offers-events-section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.offers-events-section .offers-events-title,
.offers-events-section .offers-events-heading {
    margin-top: 0;
    margin-bottom: clamp(2rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    max-width: 100%;
}

.offers-events-section .offers-slider-wrap {
    position: relative;
    margin-top: 0;
}

.offers-events-section .offers-slider.swiper {
    height: auto;
    padding-bottom: 0;
}

.offers-events-section .offers-slider .swiper-wrapper {
    align-items: stretch;
}

.offers-events-section .offers-slider .swiper-slide {
    height: auto;
    display: flex;
}

.offers-events-section .offer-slide-inner {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    padding: clamp(2rem, 3vw, 3.75rem) clamp(1.25rem, 2.5vw, 3.125rem);
    padding-bottom: clamp(2.75rem, 3.5vw, 3.5rem);
}

.offers-events-section .offer-slide-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
}

.offers-events-section .offer-slide-row>[class*="col-"] {
    margin-bottom: 0 !important;
}

.offers-events-section .offer-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 1rem;
    width: 100%;
}

.offers-events-section .offer-slide-content .sub-heading,
.offers-events-section .offer-slide-content .offer-slide-title,
.offers-events-section .offer-slide-content .heading-primary,
.offers-events-section .offer-slide-content .offer-slide-description,
.offers-events-section .offer-slide-content .offer-slide-description p,
.offers-events-section .offer-slide-content .offer-slide-cta,
.offers-events-section .offer-slide-content .btn {
    margin: 0;
}


/* Match reference design: CTA is content-width (padding 10px 40px), not full column */

.offers-events-section .offer-slide-content .offer-slide-cta,
.offers-events-section .offer-slide-content a.btn.btn-primary-custom,
.offers-events-section .offer-slide-content button.btn.btn-primary-custom {
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    flex: 0 0 auto;
    display: inline-block;
}

.offers-events-section .offer-slide-media {
    display: flex;
    align-items: center;
    align-self: center;
}

.offers-events-section .offer-slide-media img {
    width: 100%;
    max-height: min(500px, 52vh);
    object-fit: cover;
}

.offers-events-section .offers-slider-wrap .offers-prev,
.offers-events-section .offers-slider-wrap .offers-next {
    top: 50%;
    transform: translateY(-50%);
}

.offers-events-section .offers-slider-wrap .offers-prev:hover,
.offers-events-section .offers-slider-wrap .offers-next:hover {
    transform: translateY(-50%) scale(1.05);
}

.offers-events-section .offers-slider .swiper-pagination {
    bottom: 1.375rem !important;
}

@media (min-width: 992px) {
    .offers-events-section {
        margin-top: -1.25rem;
        padding-top: clamp(3.75rem, 5vw, 5rem);
    }
    .offers-events-section .offers-events-title,
    .offers-events-section .offers-events-heading {
        margin-bottom: 2.5rem;
    }
    .offers-events-section .offer-slide-inner {
        padding: 0 50px 52px;
    }
}

@media (min-width: 1440px) {
    .offers-events-section .offers-events-title,
    .offers-events-section .offers-events-heading {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .offers-events-section {
        margin-top: 0;
        padding-top: clamp(2rem, 5vw, 2.5rem);
        padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
    }
    .offers-events-section .offers-events-title,
    .offers-events-section .offers-events-heading {
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
    }
    .offers-events-section .offer-slide-inner {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.25rem);
        padding-bottom: clamp(2.25rem, 5vw, 2.5rem);
    }
    .offers-events-section .offer-slide-content {
        gap: 0.875rem;
    }
    .offers-events-section .offers-slider .swiper-pagination {
        bottom: 1rem !important;
    }
}

@media (max-width: 480px) {
    .offers-events-section .offer-slide-inner {
        padding: 1.5rem 1rem 2.25rem;
    }
}

.offers-section {
    background: #404041;
    position: relative;
}

.offers-slider-wrap,
.savor-slider-wrap {
    position: relative;
    overflow-x: clip;
}

.offers-slider .offer-slide-inner {
    background: #404041;
}

.offer-slide-inner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}


/* Nonâ€“offers-events sliders keep legacy image cap only */

.offers-events-section .offer-slide-inner img {
    max-height: min(500px, 52vh);
}

.offers-slider-wrap .offers-prev,
.offers-slider-wrap .offers-next,
.savor-slider-wrap .offers-prev,
.savor-slider-wrap .offers-next {
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.offers-slider-wrap .offers-prev:after,
.offers-slider-wrap .offers-next::after,
.savor-slider-wrap .offers-prev:after,
.savor-slider-wrap .offers-next::after {
    font-size: 16px;
}

.offers-slider-wrap.savor-slider-wrap .offers-prev:after,
.offers-slider-wrap.savor-slider-wrap .offers-next::after {
    /* Smaller arrow glyph for Offers-style slider buttons */
    font-size: 13px;
}

.offers-slider-wrap .offers-prev,
.savor-slider-wrap .offers-prev {
    left: -46px;
}

.offers-slider-wrap .offers-next,
.savor-slider-wrap .offers-next {
    right: -46px;
}

.savor-slider-wrap .offers-prev,
.savor-slider-wrap .offers-next {
    width: 45px;
    height: 45px;
    color: #000;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    border: 0;
    box-shadow: none;
    z-index: 3;
    transition: all 0.4s ease;
}

.savor-slider-wrap .offers-prev {
    left: 18px;
}

.savor-slider-wrap .offers-next {
    right: 18px;
}

.savor-slider-wrap .offers-prev:hover,
.savor-slider-wrap .offers-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.savor-slider-wrap .offers-prev:hover::after,
.savor-slider-wrap .offers-next:hover::after {
    color: #000;
}

.offers-slider .swiper-pagination {
    bottom: 12px !important;
}

.offers-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.offers-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 1200px) {
    .offers-slider-wrap .offers-prev,
    .savor-slider-wrap .offers-prev {
        left: 8px;
    }
    .offers-slider-wrap .offers-next,
    .savor-slider-wrap .offers-next {
        right: 8px;
    }
    .savor-slider-wrap .offers-prev {
        left: 12px;
    }
    .savor-slider-wrap .offers-next {
        right: 12px;
    }
    .offers-slider-wrap.savor-slider-wrap .offers-prev,
    .offers-slider-wrap.savor-slider-wrap .offers-next {
        /* Keep Offers arrows inside without overlapping margin */
        width: 32px;
        height: 32px;
    }
    .offers-slider-wrap.savor-slider-wrap .offers-prev {
        left: 4px;
    }
    .offers-slider-wrap.savor-slider-wrap .offers-next {
        right: 4px;
    }
    .offers-slider-wrap.savor-slider-wrap .offers-prev:after,
    .offers-slider-wrap.savor-slider-wrap .offers-next::after {
        font-size: 12px;
    }
}


/* Offers slider uses both classes; keep arrows away from section edges */

.offers-slider-wrap.savor-slider-wrap .offers-prev,
.offers-slider-wrap.savor-slider-wrap .offers-next {
    width: 36px;
    height: 36px;
}

.offers-slider-wrap.savor-slider-wrap .offers-prev {
    left: 6px;
}

.offers-slider-wrap.savor-slider-wrap .offers-next {
    right: 6px;
}

.offers-slider-wrap.savor-slider-wrap .offers-prev:hover,
.offers-slider-wrap.savor-slider-wrap .offers-next:hover {
    transform: translateY(-50%) scale(1.05);
}


/* Follow us section */

.insta-section {
    background: #F0DCC9;
    padding: 4rem 0;
}

.insta-section .follow-intro {
    max-width: 42rem;
}


/* Instagram mosaic: 1 tall column + 3 columns of 2 stacked images (Figma) */

.insta-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.insta-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    background: #e8d4c4;
    min-height: 0;
}

.insta-gallery__item:not(.insta-gallery__item--1) {
    aspect-ratio: 4 / 3;
}

.insta-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.insta-gallery__item:hover img,
.insta-gallery__item:focus-visible img {
    transform: scale(1.08);
}

.insta-gallery__item:focus-visible {
    outline: 2px solid var(--primary-color, #003366);
    outline-offset: 2px;
}

.insta-gallery__item--1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.insta-gallery__item--2 {
    grid-column: 2;
    grid-row: 1;
}

.insta-gallery__item--3 {
    grid-column: 2;
    grid-row: 2;
}

.insta-gallery__item--4 {
    grid-column: 3;
    grid-row: 1;
}

.insta-gallery__item--5 {
    grid-column: 3;
    grid-row: 2;
}

.insta-gallery__item--6 {
    grid-column: 4;
    grid-row: 1;
}

.insta-gallery__item--7 {
    grid-column: 4;
    grid-row: 2;
}

@media (max-width: 991.98px) {
    .insta-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        grid-auto-rows: minmax(140px, 22vw);
    }
    .insta-gallery__item:not(.insta-gallery__item--1) {
        aspect-ratio: 4 / 3;
    }
    .insta-gallery__item--1,
    .insta-gallery__item--2,
    .insta-gallery__item--3,
    .insta-gallery__item--4,
    .insta-gallery__item--5,
    .insta-gallery__item--6,
    .insta-gallery__item--7 {
        grid-column: auto;
        grid-row: auto;
    }
    .insta-gallery__item--1 {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 9;
        min-height: min(52vw, 320px);
    }
}

@media (max-width: 575.98px) {
    .insta-gallery {
        gap: 0.5rem;
        grid-auto-rows: minmax(120px, 42vw);
    }
    .insta-gallery__item--1 {
        min-height: min(70vw, 280px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .insta-gallery__item img {
        transition: none;
    }
    .insta-gallery__item:hover img,
    .insta-gallery__item:focus-visible img {
        transform: none;
    }
}


/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer h6 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: #d9edf7;
    text-decoration: none;
    font-size: 13px;
}

.footer a:hover {
    color: #ffffff;
}

.footer .list-unstyled a {
    text-transform: uppercase;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: #fff;
    padding-left: 0;
    border-radius: 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
}

.newsletter-input:focus {
    background: transparent;
    box-shadow: none;
    border-color: #ffffff;
    color: #fff;
}

.newsletter-btn {
    border: none;
    background: transparent;
    color: #fff;
    padding-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
}

.footer-logo {
    max-width: 200px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    color: #1678A6;
    margin-left: 8px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
}

.social-icons a:first-child {
    margin-left: 0;
}

.social-icons a .social-tripadvisor-icon {
    display: block;
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    font-size: 14px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
}

.social-icons a:hover {
    background: var(--primary-color);
    border: solid 1px #fff;
    color: #fff;
}

.footer .fa-circle {
    font-size: 4px;
}


/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1300px) {
    body {
        font-size: 14px;
    }
    .container-max {
        max-width: 1200px;
    }
    .heading-primary {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    .top-nav-inline {
        gap: 18px;
    }
    .top-nav-link {
        font-size: .9rem;
    }
}


/* Tablets */

@media (max-width: 992px) {
    .hero-section {
        min-height: 600px;
    }
    .apartment-card {
        height: 350px;
    }
    .booking-form-container {
        padding: 20px;
    }
    .navbar-custom {
        background: linear-gradient( to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
        padding: 0.5rem;
    }
    .nav-shell {
        min-height: 52px;
    }
    .mobile-nav-actions .btn {
        font-size: 12px;
        letter-spacing: 0.05em;
    }
}


/* Mobile Phones */

@media (max-width: 768px) {
    body.accommodation-page:not(.offers-page) .booking-form-container {
        display: none;
    }
    .hero-section {
        min-height: 500px;
    }
    .home-hero-content {
        padding-bottom: 110px;
    }
    .apartment-card {
        height: 300px;
    }
    #bookingForm {
        padding: 0.25rem 0.75rem;
    }
    #navbarNav.slide-panel {
        width: min(320px, calc(100vw - 18px));
        padding: 14px 14px 16px;
    }
    .booking-form-container {
        margin-top: 0.75rem !important;
        padding: 10px;
        max-width: 92%;
    }
    .booking-form-container .col-12 {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .booking-form-container .col-12:last-child {
        border-bottom: none;
    }
    .booking-field {
        padding: 0.65rem 0.35rem !important;
    }
    .booking-label {
        font-size: 11px;
        letter-spacing: 0.08em;
    }
    .booking-input,
    .booking-select,
    .guests-dropdown>a {
        font-size: 15px;
    }
    .booking-field img {
        max-width: 18px;
        max-height: 18px;
        margin-right: 8px;
        margin-top: 20px;
    }
    .booking-form-container .btn-primary-custom {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
    .accommodation-feature .bg-slider {
        min-height: 430px;
    }
    .accommodation-feature .caption-slider {
        overflow: hidden;
    }
    .accommodation-feature .caption-slider .swiper-slide {
        width: 100%;
        opacity: 0;
    }
    .accommodation-feature .caption-slider .swiper-slide-active {
        opacity: 1;
    }
    .home-accommodation-feature .caption-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .home-accommodation-feature .caption-slider .swiper-slide {
        width: 100% !important;
        max-width: 100%;
    }
    .home-accommodation-feature .caption-title {
        font-size: clamp(1.5rem, 6.5vw, 2.25rem);
        letter-spacing: 0.06em;
        line-height: 1.12;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .home-accommodation-feature .caption-sub {
        font-size: clamp(0.8125rem, 2.8vw, 1rem);
        letter-spacing: 0.18em;
        margin-top: 1rem;
    }
    .accommodation-feature .slider-nav {
        padding: 0 20px;
        bottom: 25px;
    }
    .accommodation-feature .nav-btn {
        width: 45px;
        height: 45px;
    }
    .guests-dropdown {
        min-width: 0;
        width: 100%;
    }
    .guests-dropdown>a {
        white-space: normal;
    }
    .guests-dropdown .dropdown-menu {
        width: min(300px, calc(100vw - 32px));
        left: 0 !important;
        right: auto !important;
        transform: none !important;
    }
    #zoomSection {
        height: auto;
    }
    .location-section .stage {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 3rem 0;
    }
    .location-section .zoom-media {
        position: relative;
        left: auto;
        top: auto;
        width: min(100%, 320px);
        margin: 0 auto 2rem;
        transform: none !important;
    }
    .location-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .location-section .content {
        text-align: center;
    }
    .location-section .content h2 {
        word-spacing: 0.5rem;
    }
    /* .location-section .content h2 br {
        display: none;
    } */
    .offers-slider-wrap,
    .savor-slider-wrap {
        overflow: hidden;
    }
    .offers-slider-wrap .offers-prev,
    .savor-slider-wrap .offers-prev {
        left: 8px;
    }
    .offers-slider-wrap .offers-next,
    .savor-slider-wrap .offers-next {
        right: 8px;
    }
    .offers-slider-wrap .offers-prev,
    .offers-slider-wrap .offers-next {
        top: 23%;
    }
    .offers-events-section .offers-slider-wrap .offers-prev,
    .offers-events-section .offers-slider-wrap .offers-next {
        top: 50%;
        transform: translateY(-50%);
    }
    .offer-slide-inner .sub-heading {
        margin-top: .75rem;
    }
    .offers-events-section .offer-slide-inner .sub-heading {
        margin-top: 0;
    }
}


/* Small Mobile */

@media (max-width: 576px) {
    .hero-section {
        min-height: 450px;
    }
    .home-hero-content {
        padding-bottom: 95px;
    }
    .heading-primary {
        font-size: 1.75rem;
    }
    .heading-secondary {
        font-size: 1.5rem;
    }
    .heading-tertiary {
        font-size: 0.9rem;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 30px;
        font-size: 0.875rem;
    }
    .apartment-card {
        height: 250px;
    }
    .booking-form-container {
        max-width: 94%;
        padding: 8px;
    }
    .booking-field {
        padding: 0.55rem 0.25rem !important;
    }
    .booking-input,
    .booking-select,
    .guests-dropdown>a {
        font-size: 14px;
    }
    .booking-label {
        font-size: 10px;
    }
    .booking-form-container .btn-primary-custom {
        padding: 9px 14px;
        font-size: 0.75rem;
    }
}


/* ===================================
   Utility Classes
   =================================== */

.min-vh-100 {
    min-height: 100vh;
}

.min-vh-80 {
    min-height: 80vh;
}

.min-vh-70 {
    min-height: 70vh;
}

.min-vh-60 {
    min-height: 60vh;
}


/* ===================================
   Print Styles
   =================================== */

@media print {
    .navbar,
    .footer-section,
    .scroll-indicator {
        display: none !important;
    }
    .video-background,
    .hero-background,
    .video-overlay {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
}


/* ===================================
   Loading Animation
   =================================== */

.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* ===================================
   Newsletter / form toast (#toast)
   Scoped to #toast so Bootstrap .toast does not override layout.
   =================================== */

#toast.toast.hidden {
    display: none !important;
    pointer-events: none;
}

#toast.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
    bottom: auto;
    margin: 0;
    padding: 14px 16px;
    min-width: min(280px, calc(100vw - 32px));
    max-width: min(400px, calc(100vw - 32px));
    width: auto;
    background: #ffffff;
    color: #212529;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    font-family: Montserrat, system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#toast.toast .toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

#toast.toast .toast-icon {
    display: none;
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 1px;
}

#toast.toast.success .toast-icon {
    display: inline;
    color: #2e7d32;
}

#toast.toast.error .toast-icon {
    display: none;
}

#toast.toast .toast-message {
    margin: 0;
    flex: 1;
    min-width: 0;
    color: #212529;
}

#toast.toast .toast-close {
    margin-left: auto;
    align-self: center;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    padding: 4px 2px 4px 10px;
    flex-shrink: 0;
    opacity: 1;
}

#toast.toast .toast-close:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

#toast.toast.show {
    opacity: 1;
    transform: translateY(0);
}

#toast.toast.success {
    background: #ffffff;
    border-left: 3px solid #2e7d32;
}

#toast.toast.error {
    background: #ffffff;
    border-left: 3px solid var(--primary-color);
}


/* Inline message under footer newsletter form (on blue footer background) */

.footer .newsletter-feedback {
    display: block;
    line-height: 1.45;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.22);
}

.footer .newsletter-feedback.is-success {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-left: 3px solid #b8f5b0;
}

.footer .newsletter-feedback.is-error {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.28);
    border-left: 3px solid #ffc9c9;
}

.footer .newsletter-feedback.is-info {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-left: 3px solid #ffffff;
}

@media (max-width: 575.98px) {
    #toast.toast {
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        min-width: 0;
    }
}
