/* ==========================================================================
   dreamtime2026 — header, slide-in sidebar and footer

   Structure only. All colours, fonts and sizes come from layout options via
   partials/dynamicCss.tpl, so this file is shared unchanged by every
   Dreamtime property. Breakpoints follow the client Divi theme: 767/980/1366.
   ========================================================================== */

body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4em;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.2em;
}

.container, .site-footer__bottom-container, .site-footer__topInner {
    margin: 0 auto;
    max-width: 1280px;
    /* padding: 0 5%; */
    width: 90%;
}

/* --------------------------------------------------------------- Buttons */

.ss__btn {
    border: 1px solid currentcolor;
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 300ms ease, color 300ms ease;
    white-space: nowrap;
}

/* Arrow slides out to the right of the label on hover. Collapsing max-width
   rather than toggling display keeps it animatable, and the icon stays out of
   the layout while hidden so the button sits at its natural width. */
.site-header .btn--book i {
    display: inline-block;
    margin-left: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 300ms ease, opacity 300ms ease, margin-left 300ms ease;
    vertical-align: middle;
}

.site-header .btn--book:hover i,
.site-header .btn--book:focus-visible i {
    max-width: 1.5em;
    opacity: 1;
    text-decoration: none;
}

/* ---------------------------------------------------------------- Header */

.site-header {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color 300ms ease;
    z-index: 10000;
    transition-duration: 300ms;
    transition-timing-function: ease;
    transition-delay: 0ms;
    transition-property: all;
}

.site-header.is-scrolled {
    position: sticky;
}

.site-header__inner {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
    padding-top: 10px;
    padding-bottom: 15px;
}

.site-header__logo {
    display: block;
    flex: 0 0 auto;
}

/* Widths per breakpoint mirror the client site, capped at 240px as the Divi
   header logo is. Height is capped per site by the Logo Max Height option. */
.site-header__logo img {
    display: block;
    height: auto;
    max-width: min(22.5vw, 240px);
    /* transition-duration: 300ms;
    transition-timing-function: ease;
    transition-delay: 0ms;
    transition-property: all; */
}

@media only screen and (max-width: 766px) {
    .site-header__logo img {
        max-width: 240px;
    }
}

@media only screen and (max-width: 530px) {
    .site-header__logo img {
        max-width: min(45vw, 240px);
    }
}

.site-header.is-scrolled .site-header__logo img {
    max-width: 200px;
}



@media only screen and (max-width: 480px) {
    .site-header__logo img {
        width: 480px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 980px) {
    .site-header__logo img {
        width: 980px;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1280px) {
    .site-header__logo img {
        width: 1280px;
    }
}

@media only screen and (min-width: 1281px) {
    .site-header__logo img {
        width: 1801px;
    }
}

.site-header__right {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
}

.site-header__actions {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.site-header__stars {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -3px;
    margin-right: 4px;
}

.site-header__phone {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    transition-duration: 300ms;
    transition-timing-function: ease;
    transition-delay: 0ms;
    transition-property: all;
}

.site-header.is-scrolled .site-header__phone {
    font-size: 22px;
}

.sidebar__nav {
    max-height: 100vh !important;
    overflow-y: auto;
    flex-grow: 1;
}

.site-header__navRow {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.site-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__item a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 300ms ease;
    padding: 0 15px;
}

.site-header__toggle {
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 30px;
    justify-content: center;
    padding: 0;
    width: 28px;
}

.site-header__toggle img {
    width: 30px;
    height: 30px;
}

/* ---------------------------------------------------- Header slideshow */

.header-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.header-slide__overlay {
    inset: 0;
    position: absolute;
}

/* --------------------------------------------------------------- Sidebar */

.sidebar-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity 300ms ease;
    z-index: 99998;
}

.sidebar-overlay.is-visible {
    opacity: 1;
}

.sidebar {
    border-radius: 12px 0 0 12px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px;
    max-width: calc(100vw - 115px);
    overflow-y: auto;
    padding: 30px 35px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(110%);
    transition: transform 300ms ease;
    width: 237px;
    z-index: 99999;
    min-width: min(calc(100vw - 40px), 307px);
}

.sidebar.is-open {
    transform: translateX(0);
}

.sidebar__close {
    align-self: flex-end;
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
    padding: 0;
    position: absolute;
    top: 28px;
}

.sidebar__close:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(90deg);
}

.sidebar__heading {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 21px;
    margin: 0;
    padding-bottom: 7px;
    padding-top: 5px;
}

.sidebar__list,
.sidebar__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar__item {
    position: relative;
}

/* Parents lay out as a row so the chevron sits beside the label rather than
   pinned to the far right. Leaf items stay block so their link keeps the full
   row as a tap target. The submenu takes its own line via the 100% basis. */
.sidebar__item--parent {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.sidebar__item--parent>.sidebar__submenu {
    flex: 0 0 100%;
}

.sidebar__item>a {
    display: block;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 0px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 300ms ease;
}

.sidebar__item .sidebar__expand span {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 0px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 300ms ease;
}

header a:hover, footer a:hover, .sidebar__nav a:hover,
header a:focus, footer a:focus, .sidebar__nav a:focus {
    text-decoration: none;
    outline: none;
}

.sidebar__expand {
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    padding: 10px 0px;
    transition: transform 300ms ease;
}

.sidebar__submenu {
    display: none;
    padding: 0 0 6px 15px;
    border-left: solid 1px rgba(255,255,255,0.15);
}

.sidebar__item.is-expanded .sidebar__submenu {
    display: block;
}

.sidebar__submenu a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    text-decoration: none;
    transition: color 300ms ease;
}

.sidebar__book {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    padding: 8px 30px;
}

.sidebar__contactTitle {
    font-size: 18px;
    margin: 0 0 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar__contact p {
    font-size: 13px;
    line-height: 1.5em;
    margin: 0 0 8px;
}

.sidebar__contact a {
    text-decoration: none;
}

.sidebar__contact a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 766px) {
    .sidebar.is-open {
        right: unset;
        left: 0;
        max-width: calc(100vw - 40px);
    }
}


/* 767px–770px */
@media (min-width: 767px) and (max-width: 770px) {
    .sidebar.is-open {
        right: 154px !important;
    }
}

/* 771px–829px: 154px → 107px */
@media (min-width: 771px) and (max-width: 829px) {
    .sidebar.is-open {
        right: calc(778.776px - 81.0345vw) !important;
    }
}

/* 830px–925px: 107px → 36px */
@media (min-width: 830px) and (max-width: 925px) {
    .sidebar.is-open {
        right: calc(720.115px - 73.9583vw) !important;
    }
}

/* 926px–935px */
@media (min-width: 926px) and (max-width: 935px) {
    .sidebar.is-open {
        right: 36px !important;
    }
}

/* --------------------------------------------------------- Social icons */

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
}

.social a {
    align-items: center;
    border-radius: 50%;
    display: flex;
    font-size: 20px;
    height: 36px;
    justify-content: center;
    text-decoration: none;
    transition: background-color 300ms ease;
    width: 36px;
}

/* --------------------------------------------------------------- Content */

.site-content {
    padding: 40px 0;
}

/* ---------------------------------------------------------------- Footer */

.site-footer__top {
    padding: 55px 0 45px;
}

.site-footer__topInner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.site-footer__brand {
    flex: 0 0 230px;
    gap: 11px;
    display: flex;
    flex-direction: column;
}

.site-footer__logo {
    display: block;
    margin-bottom: 20px;
}

.site-footer__logo img {
    display: block;
    height: auto;
    width: auto;
}

.site-footer__brand p {
    font-size: 14px;
    line-height: 1.5em;
    margin: 0 0 8px;
}

.site-footer__brand a {
    text-decoration: none;
}

.site-footer__brand a:hover {
    text-decoration: underline;
}

/* Awards block: images uploaded through the Awards Content layout option. */
.site-footer__awards {
    flex: 1 1 480px;
}

.site-footer__awardsTitle {
    font-size: 26px;
    line-height: 1.5em;
    margin: 0 0 45px;
    text-align: center;
}

.site-footer__awardsContent {
    text-align: center;
}

.site-footer__awardsContent img {
    display: inline-block;
    height: auto;
    margin: 0 8px 8px;
    max-height: 90px;
    max-width: 100%;
    vertical-align: middle;
}

/* ---- Bottom strip: badges column plus three group-property columns ---- */

.site-footer__bottom {
    padding: 55px 0 25px;
}

.site-footer__cols {
    display: grid;
    gap: 100px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer__colTitle {
    font-size: 19px;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0 0 10px;
}

.site-footer__links {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.site-footer__links a {
    font-size: 14px;
    line-height: 1.8em;
    text-decoration: none;
}

.site-footer__links a:hover {
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.site-footer__badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__badges img {
    display: block;
    height: auto;
    max-width: 100%;
}

.site-footer__dtrLogo img {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.site-footer__sslBadge img {
    margin-top: 30px !important;
    max-width: 150px;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    height: auto;
}

.site-footer__sslText {
    font-size: 11px;
    line-height: 1.2em;
    margin: 0 auto 0 auto;
    max-width: 180px;
    text-align: center;
}

/* ---- Legal line: copyright, inline policy links, agency credit ---- */

.site-footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
}

.site-footer__copy,
.site-footer__credit {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.site-footer__copy a,
.site-footer__credit a {
    text-decoration: underline;
}

/* ------------------------------------------------------- Fixed book bar */

.mobile-book {
    bottom: 0;
    display: none;
    font-weight: 700;
    left: 0;
    letter-spacing: 1px;
    padding: 16px;
    position: fixed;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 900;
}

body.sidebar-open {
    overflow: hidden;
}

.bookingPanel__outer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -45px 60px 0 60px;
    padding: 0;
}

.bookingPanel {
    background: #e4e2dd;
    width: 100%;
    max-width: 1280px;
    padding: 17px;
}

.bookingPanel__outer, .bookingPanel, .LDSSearch {
    border-radius: 15px;
}

.bookingPanel #LDSSearch {
    max-width: 1280px !important;
}

/* ----------------------------------------------------------- Breakpoints */

@media only screen and (max-width: 1366px) {
    .site-nav__list {
        /* gap: 20px; */
    }

    .site-footer__cols {
        gap: 40px;
    }
}

@media only screen and (max-width: 980px) {
    .site-header__actions {
        display: none;
    }

    .site-nav__item a {
        font-size: 12px;
        letter-spacing: 0;
    }

    .site-header__phone {
        font-size: 20px;
    }

    .site-footer__cols {
        gap: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__badges {
        margin-bottom: 40px;
    }

    .bookingPanel__outer {
        margin: -45px 40px 0 40px;
    }
}

@media only screen and (max-width: 1220px) {
    .bookingPanel__outer {
        margin: -260px 40px 0 40px;
    }
}

@media only screen and (max-width: 767px) {

    /* Phones drop the inline nav, phone and button in favour of the
       hamburger plus the fixed book bar, matching the client site. */
    .site-header__actions,
    .site-nav {
        display: none;
    }

    .site-header__right {
        align-items: flex-end;
        flex: 0 0 auto;
    }

    .sidebar {
        border-radius: 0;
        width: 100%;
    }

    .site-footer__topInner {
        text-align: center;
    }

    .site-footer__brand {
        flex: 1 1 100%;
    }

    .site-footer__logo {
        margin-left: auto;
        margin-right: auto;
    }

    .social {
        justify-content: center;
    }

    .site-footer__cols {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer__awards {
        text-align: center;
    }

    .site-footer__sslText {
        max-width: none;
    }

    .site-footer__bottom {
        padding-bottom: 85px;
        /* clear the fixed book bar */
    }

    .mobile-book {
        display: block;
    }

    .bookingPanel__outer {
        margin: -260px 30px 0 30px;
    }
}

@media only screen and (max-width: 550px) {
    .bookingPanel__outer {
        margin: -260px 25px 0 25px;
    }
}


@media only screen and (max-width: 440px) {
    .bookingPanel__outer {
        margin: -260px 20px 0 20px;
    }
}


.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.fa-solid.fa-g {
    font-size: 21px;
}

.fancybox-overlay {
    z-index: 10000;
}