/* ==========================================================================
   SiteHeader — Logo row + Search bar row (matching current site layout)
   No top utility bar — main header only
   ========================================================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 0 var(--color-border);
}

.site-header.header--sticky {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- Top row: Logo + Nav + Hamburger --- */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 56px;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo__img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-heading);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}
.empty-content
{
    margin-top:85px;
}
/* Navigation */
.header-nav {
    flex-shrink: 0;
    align-items: center;
    gap: var(--space-lg);
}

/* --- Desktop nav right: Left nav dropdown, Globe, Currency, Profile dropdown --- */

.header-nav-utils {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.header-util {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-body);
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--transition);
}

.header-util:hover {
  color: var(--color-text-heading);
}

.header-util--globe {
  width: 36px;
  height: 36px;
}

.header-util__icon--globe {
  color: #888;
}

.header-util--globe:hover .header-util__icon--globe {
  color: var(--color-text-heading);
}

.header-util--currency {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-heading);
  padding: 0 2px;
}

/* Standalone hamburger menu icon (desktop) */
.header-util--menu {
  width: 36px;
  height: 36px;
}

.header-util-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 18px;
}

.header-util-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #888;
  border-radius: 2px;
  transition: background var(--transition);
}

.header-util--menu:hover .header-util-menu-icon span {
  background: var(--color-text-heading);
}

/* --- Search Bar (inline between logo and nav) --- */
.header-search {
  flex: 1;
  max-width: 580px;
 /* margin: 0 var(--space-md);*/
}



/* CMS LandingPage: search fades in after #lp-hero leaves viewport.
   Flex slot stays reserved on md+ (no max-width collapse) so header height/nav position stay stable.
   Do not pair with Bootstrap .d-md-block here (display:!important fights layout). Mobile: responsive.css hides .header-search. */
@media (min-width: 768px) {
  .site-header .header-search.header-search--cms-reveal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    max-width: 580px;
    min-width: 0;
    margin: 0 var(--space-md);
    overflow: visible;
    z-index: 1001;
  }

  /* Stable row height while the search bar fades in/out */
  .site-header .header-inner:has([data-lp-cms-header-reveal]) {
    min-height: 72px;
    align-items: center;
  }
}

/*@media (max-width: 767px) {
    .guests-popover {
        top: calc(100% + -38vh) !important;
    }
}*/

    .site-header .header-search.header-search--cms-reveal .search-form {
        width: 100%;
        transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-header .header-search.header-search--cms-reveal:not(.header-search--cms-visible) .search-form {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
    }

    .site-header .header-search.header-search--cms-reveal.header-search--cms-visible .search-form {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .search-form {
        width: 100%;
    }

    .search-form__fields {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 999px;
        padding: 4px 4px 4px 8px;
        transition: all var(--transition-slow);
    }

        .search-form__fields:focus-within {
            border-color: rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.7);
        }

    /* Individual search field */
    .search-field {
        padding: 5px 12px;
        flex: 1;
        min-width: 0;
    }

    .search-field--location {
        flex: 1.5;
    }

    .search-field--guests {
        flex: 1;
    }

    .search-field--has-popover {
        position: relative;
    }

    .guests-popover {
        position: absolute;
        top: calc(100% + 2px);
        right: 0;
        width: 340px;
        max-width: calc(100vw - 24px);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
        padding: 14px;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        left:0px;
        /* iOS Safari: keep scroll-into-view / manual scroll clear of bottom toolbar + home indicator */
        scroll-margin-bottom: max(16px, env(safe-area-inset-bottom, 0px));
    }

        .guests-popover.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .guests-popover__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 6px;
    }

        .guests-popover__row + .guests-popover__row {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

    .guests-row__title {
        font-family: var(--font-family);
        font-size: 14px;
        font-weight: 500;
        color: var(--color-text-heading);
        line-height: 1.2;
    }

    .guests-row__meta {
        font-family: var(--font-family);
        font-size: 12px;
        font-weight: 300;
        color: var(--color-text-muted);
        margin-top: 2px;
    }

    .guests-stepper {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .guests-stepper__btn {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.16);
        background: transparent;
        color: var(--color-text-heading);
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        transition: border-color var(--transition), background var(--transition), opacity var(--transition);
        user-select: none;
    }

        .guests-stepper__btn:hover {
            border-color: rgba(0, 0, 0, 0.28);
            background: rgba(0, 0, 0, 0.03);
        }

        .guests-stepper__btn:focus-visible {
            outline: 2px solid var(--color-gold);
            outline-offset: 2px;
        }

        .guests-stepper__btn:disabled {
            opacity: 0.35;
            cursor: default;
        }

    .guests-stepper__count {
        min-width: 18px;
        text-align: center;
        font-family: var(--font-family);
        font-size: 14px;
        font-weight: 400;
        color: var(--color-text-heading);
    }

    .search-field__label {
        display: block;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--color-text-heading);
        margin-bottom: 1px;
        cursor: pointer;
    }

    .search-field__input {
        display: block;
        width: 100%;
        border: none;
        background: transparent;
        font-family: var(--font-family);
        font-size: 13px;
        color: var(--color-text-body);
        outline: none;
        padding: 0;
        line-height: 1.3;
    }

        .search-field__input::placeholder {
            color: var(--color-text-muted);
        }

    /* Divider between fields */
    .search-field__divider {
        width: 1px;
        height: 24px;
        background: rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
    }

    /* Search submit button — muted to not compete with primary CTA */
    .search-form__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 34px;
        padding: 0 14px;
        border: none;
        border-radius: 999px;
        background: var(--color-gold);
        color: var(--color-white);
        font-family: var(--font-family);
        font-size: 13px;
        font-weight: 400;
        cursor: pointer;
        flex-shrink: 0;
        opacity: 0.8;
        transition: opacity var(--transition-slow);
    }

        .search-form__btn:hover {
            opacity: 1;
        }

        .search-form__btn:focus-visible {
            outline: 2px solid var(--color-text-heading);
            outline-offset: 2px;
            opacity: 1;
        }

        .search-form__btn svg {
            flex-shrink: 0;
        }



    /* Mobile Menu Toggle — shown only below 768px via d-flex d-md-none */
    .header-menu-toggle {
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
    }

    .hamburger-icon,
    .hamburger-icon::before,
    .hamburger-icon::after {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--color-text-heading);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-icon {
        position: relative;
    }

        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            position: absolute;
            left: 0;
        }

        .hamburger-icon::before {
            top: -7px;
        }

        .hamburger-icon::after {
            top: 7px;
        }

    /* Navigation menu offcanvas (slide from right — same for mobile and desktop). Full viewport height. */
    .nav-menu-offcanvas.offcanvas-end {
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        max-height: 95vh;
        top: 0;
        bottom: 0;
        border-left: 1px solid var(--color-border);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
        overflow: scroll;
    }

    .nav-menu-offcanvas .offcanvas-body {
        padding: var(--space-xl);
        display: flex;
        flex-direction: column;
    }

    .nav-menu-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .nav-menu-list li {
            border-bottom: 1px solid var(--color-border);
        }

        .nav-menu-list a {
            display: block;
            font-size: 18px;
            font-weight: 400;
            color: var(--color-text-heading);
            padding: var(--space-md) 0;
            text-decoration: none;
            transition: color var(--transition);
        }

            .nav-menu-list a:hover {
                color: var(--color-gold);
            }

        /* Nav menu list — dropdowns (match Destinations-style spacing and typography) */
        .nav-menu-list li.dropdown {
            position: relative;
        }

        .nav-menu-list .dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            padding-right: 0;
            position: relative;
            min-height: 44px;
        }

            .nav-menu-list .dropdown-toggle::after {
                content: '';
                flex-shrink: 0;
                border: solid currentColor;
                border-width: 0 2px 2px 0;
                width: 8px;
                height: 8px;
                display: inline-block;
                transform: rotate(45deg);
                transition: transform var(--transition);
                margin-left: auto;
            }

        .nav-menu-list .dropdown.show .dropdown-toggle::after {
            transform: rotate(-135deg);
        }

        .nav-menu-list .dropdown-menu {
            position: static;
            float: none;
            margin: 0;
            padding: 0;
            border: none;
            border-radius: 0;
            box-shadow: none;
            background: transparent;
            display: none;
            list-style: none;
        }

        .nav-menu-list .dropdown.show .dropdown-menu {
            display: block;
        }

        .nav-menu-list .dropdown-menu li {
            border-bottom: none;
            border-left: 2px solid var(--color-border);
            margin-bottom: 2px;
        }

        .nav-menu-list .dropdown-menu .dropdown-item {
            font-size: 16px;
            font-weight: 400;
            color: var(--color-text-heading);
            padding: var(--space-sm) 0 var(--space-sm) var(--space-sm);
            text-decoration: none;
            transition: color var(--transition);
            display: block;
            background: transparent;
            border: none;
            border-radius: 0;
            text-align: left;
            width: 100%;
        }

            .nav-menu-list .dropdown-menu .dropdown-item:hover {
                color: var(--color-gold);
                background: transparent;
            }

    /* Nav menu footer (Login, Signup) — at bottom of slide-out menu */
    .nav-menu-footer {
        margin-top: auto;
        padding-top: var(--space-xl);
        border-top: 1px solid var(--color-border);
    }

    .nav-menu-footer__label {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--color-text-muted);
        margin: 0 0 var(--space-sm);
    }

    .nav-menu-footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .nav-menu-footer-list li {
            margin-bottom: 2px;
        }

        .nav-menu-footer-list a {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: var(--color-text-heading);
            padding: var(--space-xs) 0;
            text-decoration: none;
            transition: color var(--transition);
        }

            .nav-menu-footer-list a:hover {
                color: var(--color-gold);
            }

    .daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
        font-size: 14px !important;
    }

    /* Header (and shared) checkout picker: visual marker for chosen check-in day */
    .daterangepicker td.lp-checkout-cal-checkin {
        /* box-shadow: inset 0 0 0 2px var(--color-gold-gold, #b1916f);
    border-radius: 4px;*/
        background-color: #357ebd !important;
        border-color: transparent !important;
        color: #fff !important;
        opacity: 0.5 !important;
    }

        .daterangepicker td.lp-checkout-cal-checkin.off,
        .daterangepicker td.lp-checkout-cal-checkin.disabled {
            opacity: 1;
        }