﻿/* Root Variables */
:root {
    --primary: #2E7D32;
    --secondary: #1C5020;
    --light-red: #F4F4F4;
    --white: #fff;
    --text-black: #333333;
    --light-grey: #A4A4A4;
    --light-border: #D2D2D2;
    --grey: #606060;
}

/* common css */
body {
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-black);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    transform: scale(1.4);
    cursor: pointer;
    margin-inline-start: 0.35rem;
}

/* Search bar (home banner + find cabin): keep every control the same size */
#searchForm .form-control,
#searchForm .form-select,
#searchForm .btn {
    min-height: 42px;
    font-size: 0.95rem;
    line-height: 1.4;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

#searchForm .form-label {
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}

/* Larger jQuery UI datepicker calendar (home search + detail quote form) */
.ui-datepicker {
    font-size: 1.05rem;
    width: 21rem;
    padding: 0.5rem;
    z-index: 9999 !important;
}

.ui-datepicker .ui-datepicker-title {
    line-height: 1.9;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    padding: 0.25em;
    font-size: 0.95em;
}

.ui-datepicker th {
    padding: 0.5em 0.3em;
}

.ui-datepicker td a,
.ui-datepicker td span {
    padding: 0.55em;
    text-align: center;
}

/* Price "pill" markers on the search-results map */
.leaflet-div-icon.price-pin {
    background: transparent;
    border: none;
    width: 0;
    height: 0;
}

.price-pin .price-pin-inner {
    position: absolute;
    transform: translate(-50%, -100%);
    white-space: nowrap;
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.price-pin-active .price-pin-inner {
    background: var(--primary);
    color: #fff;
    z-index: 1000;
}

.card-logo {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

    .card-logo.active {
        opacity: 1;
    }

.btn-primary {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        background-color: var(--secondary) !important;
        color: var(--white) !important;
        border-color: var(--secondary) !important;
    }

.btn-outline-primary {
    color: var(--primary) !important;
    background-color: transparent !important;
    border-color: var(--primary) !important;
}

    .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
        background-color: var(--secondary) !important;
        color: var(--white) !important;
        border-color: var(--secondary) !important;
    }

.btn-white {
    color: var(--primary);
    background-color: var(--white);
}

    .btn-white:hover, .btn-white:focus, .btn-white:active {
        color: var(--secondary);
        background-color: var(--bs-dark-bg-subtle) !important;
    }

.btn-outline-secondary {
    background-color: transparent !important;
    border-color: var(--light-border) !important;
    color: var(--grey) !important;
}

    .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.active {
        background-color: transparent !important;
        border-color: var(--primary) !important;
        color: var(--primary) !important;
    }

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light-red {
    background-color: var(--light-red);
}

.bg-grey {
    background-color: var(--grey);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-black {
    color: var(--text-black) !important;
}

.text-grey {
    color: var(--grey);
}

.text-shadow {
    text-shadow: 0px 4px 4px #000000;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-grey {
    border-color: var(--light-border) !important;
}

.border-dark {
    border-color: var(--text-black) !important;
}

.circle-40px {
    width: 40px;
    height: 40px;
}

.circle-36px {
    width: 36px;
    height: 36px;
}

.circle-14px {
    width: 14px;
    height: 14px;
}

.circle-5px {
    width: 5px;
    height: 5px;
}

.h-318px {
    height: 318px;
}

.h-660px {
    height: 660px;
}

.fs-14px {
    font-size: 0.875rem;
}

.fs-12px {
    font-size: 12px;
}

.end-15px {
    right: 15px;
}

.top-37px {
    top: 37px;
}

.top-51px {
    top: 51px;
}

.top-88px {
    top: 88px;
}

.top-96px {
    top: 96px;
}

.top-7px {
    top: 7px;
}

.custom-box-shadow {
    box-shadow: 0px 4px 15px 0px #00000026;
}

.shadow-inner {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.background-blur {
    backdrop-filter: blur(8.939899444580078px);
    background: rgba(255, 255, 255, 0.8);
}

.border.active {
    border-color: var(--primary) !important;
    color: var(--primary);
}

.dropdown-toggle.arrow-none::after {
    display: none;
}

.mt-n72px {
    margin-top: -72px;
}

.rounded-top-start-3 {
    border-top-left-radius: 10px;
}

.pb-80px {
    padding-bottom: 80px !important;
}

.cursor-pointer {
    cursor: pointer;
}

.text-elips {
    display: -webkit-box;
    height: 48px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* .letter-spacing-0-1{letter-spacing: 0px;} */

.list-style-1 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 50%;
}

.list-style-2 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background-color: var(--primary);
    border-radius: 50%;
}

.bg-center-cover-no-repeat {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* modal-css */
.btn-close {
    background: url('/media/close-iocn.svg');
    background-position: center !important;
    background-size: 28px 28px !important;
    background-repeat: no-repeat !important;
    width: 28px;
    height: 28px;
    opacity: 1;
}

    .btn-close:hover {
        opacity: 1;
    }

/* header css */
.navbar .navbar-brand img {
    width: 160px;
}

.btn-lg {
    font-size: 1rem;
    padding: 5px 15px;
}

.offcanvas.offcanvas-navabr .offcanvas-start {
    width: 285px;
}

/* Header typography.
   The nav previously used Bootstrap's .fs-5 (1.25rem) while the body is 1rem, which
   made the header read as a separate, older component sitting on top of the page.
   Sizing it to the body — with a slightly heavier weight so it still reads as
   navigation — is what ties the two together. */
.navbar .nav-link {
    color: var(--text-black);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Phone number, and any other text in the right-hand cluster. */
.navbar .header-actions {
    font-size: 1rem;
}

.navbar .header-actions .btn {
    font-size: 1rem;
    font-weight: 600;
}

/* Guest Login / My Account sits as a text link beside the CTA rather than a bare
   icon button, so the right-hand cluster reads as one group. */
.navbar .header-actions #authIconBtn {
    font-size: 1rem;
    font-weight: 600;
}

    .navbar .header-actions #authIconBtn:hover {
        color: var(--primary) !important;
    }

/* Book a Cabin is the one primary action in the header. */
.navbar .header-actions .btn-primary {
    letter-spacing: 0.02em;
    white-space: nowrap;
}

    .navbar .nav-link:hover, .navbar .nav-link.active {
        color: var(--primary) !important;
    }

.navbar-toggler-icon {
    background-image: url(/media/humburger-menu-icon.svg);
}

.navbar .dropdown-toggle::after {
    background-image: url(/media/dropdown-icon.svg);
    width: 24px;
    height: 24px;
    background-position: 5px 1px;
    border: none;
    margin: 0;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.navbar .dropdown-toggle.show::after {
    transform: rotateX(180deg);
}

.navbar .dropdown-menu {
    box-shadow: 0px 4px 15px 0px #00000024;
    width: max-content;
    margin-top: 25px !important;
}

.search-btn {
    width: 40px;
    height: 40px;
    color: var(--primary);
    border: 1px solid var(--primary) !important;
}

/* banner css */
.main {
    /* Offset for the fixed header. --dbb-header-h is measured at runtime (Tenant.js);
       the literal is only a fallback for before that runs / if JS is unavailable. */
    padding-top: var(--dbb-header-h, 89px);
}

.banner-section video {
    height: 248px;
}

/* sldier css */
.owl-theme .owl-nav {
    margin: 0;
}

.owl-carousel .owl-item img {
    width: auto;
    height: auto;
}

.owl-theme .owl-nav button {
    border: 1px solid var(--light-border) !important;
    background-color: var(--white) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .owl-theme .owl-nav button span {
        color: var(--primary);
        line-height: 1;
    }

.owl-second-nav .owl-nav button {
    margin: 0 !important;
    border: none !important;
    background-color: transparent !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    top: auto !important;
    bottom: -8px !important;
}

    .owl-second-nav .owl-nav button span {
        color: var(--white);
        line-height: normal;
    }

.owl-second-nav .owl-nav .owl-prev {
    left: -9px !important;
}

.owl-second-nav .owl-nav .owl-next {
    left: 58px !important;
    right: auto !important;
}

.customer-review-slider.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.slider-style-1.owl-carousel .owl-nav button {
    top: 50% !important;
    background-color: var(--primary) !important;
    width: 48px !important;
    height: 48px !important;
    border: none !important;
}

    .slider-style-1.owl-carousel .owl-nav button span {
        color: var(--white);
        line-height: 3rem;
    }

.slider-style-1.owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider-style-1.owl-carousel .owl-item img {
        width: 100%;
    }

.slider-style-1.owl-theme .owl-nav .owl-prev {
    left: 10px !important;
}

.slider-style-1.owl-theme .owl-nav .owl-next {
    right: 10px !important;
}

.slider-style-2.owl-carousel .owl-nav button {
    width:60px;
    height:60px;
}

.slider-style-2.owl-theme .owl-nav .owl-prev {
    left: -3% !important;
}

.slider-style-2.owl-theme .owl-nav .owl-next {
    right: -3% !important;
}
.slider-style-2.owl-theme .owl-nav button span{font-size:3rem; line-height:2rem;}
/* tabs css */
.tab-content > .active:focus-visible {
    outline: 0 none;
}

.nav-tabs .nav-item .nav-link {
    color: var(--light-grey);
}

    .nav-tabs .nav-item .nav-link:hover, .nav-tabs .nav-item .nav-link.active {
        color: var(--primary);
    }

.nav-pills .nav-item .nav-link {
    border: 1px solid var(--light-border);
    color: var(--grey);
    background-color: var(--white);
}

    .nav-pills .nav-item .nav-link:hover, .nav-pills .nav-item .nav-link.active {
        color: var(--white);
        border: none;
        border: 1px solid var(--primary);
        background-color: var(--primary);
    }

/* accordian css */
.accordion-button:not(.collapsed) {
    color: var(--primary);
}

.accordion-button::after {
    background-image: url(/media/plus-icon.svg);
    background-position: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(/media/minus-icon.svg);
}

/* rental-collection css */
.overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.14%, rgba(0, 0, 0, 0.8) 76.69%);
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.light-overlay {
    background: rgba(0, 0, 0, 0.45);
}

/* all-cabins-section */
.all-cabins-slider .owl-theme .owl-nav button {
    margin: 8px 0;
    width: 36px;
    height: 36px;
    top: 65% !important;
}

    .all-cabins-slider .owl-theme .owl-nav button span {
        font-size: 1.875rem;
        line-height: 1.875rem;
    }

.all-cabins-slider .owl-theme .owl-nav .owl-prev {
    left: 8px;
}

.all-cabins-slider .owl-theme .owl-nav .owl-next {
    right: 8px;
}


@media (max-width: 576px) {
    .fs-sm-16px {
        font-size: 1rem !important;
    }
}

#videomodal .modal-body > * {
    width: 100%;
}

@media (min-width: 380px) {
    .owl-theme .owl-nav button {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
    }

        .owl-theme .owl-nav button span {
            font-size: 2rem;
            line-height: normal;
        }

    .owl-theme .owl-nav .owl-prev {
        left: 12px;
    }

    .owl-theme .owl-nav .owl-next {
        right: 30px;
    }

    .promo-card {
        max-width: 330px;
        width: 100%;
    }

    .owl-second-nav .owl-nav button {
        bottom: -14px !important;
    }
}

@media (min-width: 475px) {
}

@media (min-width: 576px) {
    .navbar .navbar-brand img {
        width: auto;
    }

    .text-sm-shadow {
        text-shadow: 0px 4px 4px #000000;
    }

    .search-btn {
        width: 48px;
        height: 48px;
    }

    .circle-sm-48px {
        width: 48px;
        height: 48px;
    }

    .main {
        padding-top: var(--dbb-header-h, 99px);
    }

    .owl-theme .owl-nav .owl-prev {
        left: 30px;
    }

    .owl-theme .owl-nav .owl-next {
        right: 30px;
    }

    .promo-card {
        max-width: 460px;
    }

    .top-sm-96px {
        top: 96px !important;
    }
}

@media (min-width: 768px) {
    .fw-800 {
        font-weight: 800;
    }

    .banner-section video {
        height: 450px;
    }

    .owl-theme .owl-nav button {
        top: 45%;
        width: 65px;
        height: 65px;
    }

    .owl-theme .owl-nav .owl-prev {
        left: 45px;
    }

    .owl-theme .owl-nav .owl-next {
        right: 45px;
    }

    .promo-card {
        max-width: 660px;
    }

    .btn-md {
        font-size: 1.125rem;
        padding: 0.60rem 1.633rem;
    }

    .btn-close {
        width: 48px;
        height: 48px;
        background-size: 48px 48px !important;
    }
}

@media (max-width: 991.98px) {
    .custom-tab.tab-content > .tab-pane {
        display: block;
        opacity: 1;
    }

    .custom-tab.tab-content .tab-pane.accordion-item {
        border: 0;
    }
}

@media (min-width: 992px) {

    .bg-lg-primary {
        background-color: var(--primary);
    }

    .text-lg-white {
        color: var(--white);
    }

    .border-lg-end {
        border-right: 1.5px solid;
    }

    .owl-second-nav .owl-nav button {
        bottom: -12px !important;
    }

    .border-lg {
        border: 1px solid var(--light-grey) !important;
    }
    /* .rounded-lg-4{border-radius: 20px;} */
    .rounded-lg-3 {
        border-radius: 10px;
    }

    .btn-lg {
        font-size: 1.25rem;
        padding: 0.70rem 1.633rem;
    }

    .customer-review-slider.owl-theme .owl-dots .owl-dot span {
        width: 14px;
        height: 14px;
    }

    .pb-80px {
        padding-bottom: 20px !important;
    }

    .bg-lg-primary {
        background-color: var(--primary);
    }

    .w-lg-auto {
        width: auto !important;
    }

    .btn-lg-white {
        color: var(--primary) !important;
        background-color: var(--white) !important;
    }

        .btn-lg-white:hover, .btn-lg-white:focus, .btn-lg-white:active {
            color: var(--secondary) !important;
            background-color: var(--bs-dark-bg-subtle) !important;
        }

    .custom-lg-modal .modal {
        display: block !important;
        position: static !important;
        z-index: auto !important;
        background: transparent !important;
        opacity: 1 !important;
    }

    .custom-lg-modal .modal-dialog {
        margin: 0;
        max-width: 100%;
        transform: none !important;
        margin: 0;
    }

    .custom-lg-modal .modal-content {
        border: none;
        box-shadow: none;
    }

    .custom-lg-modal .modal-backdrop {
        display: none !important;
        background-color: transparent !important;
    }

    .custom-lg-modal .btn-close.d-xl-none {
        display: none;
    }
}

@media (max-width: 1399.98px) {
    .navbar .nav-link {
        font-size: 1rem;
        font-weight: 600;
        border-bottom: 1px solid #E8E8E8;
    }

        .navbar .nav-link:hover, .navbar .nav-link.active {
            font-size: 1rem;
            color: var(--primary);
        }

    .navbar .dropdown-menu {
        box-shadow: none;
        margin-top: 0 !important;
        width: auto;
    }

        .navbar .dropdown-menu li {
            padding-bottom: 8px !important;
        }

    .navbar .dropdown-menu-end li {
        padding-bottom: 0 !important;
    }

    .navbar .dropdown-menu .list-style-1 li {
        padding-left: 10px !important;
    }

    .navbar .dropdown-menu li::before {
        display: none;
    }
}

@media (min-width: 1200px) {

    .bg-light-xl-red {
        background-color: var(--light-red);
    }

    .bg-xl-transparent {
        background-color: transparent !important;
    }

    .bg-xl-primary {
        background-color: var(--primary);
    }

    .text-xl-white {
        color: var(--white);
    }

    .btn-xl-white {
        color: var(--primary) !important;
        background-color: var(--white) !important;
    }

        .btn-xl-white:hover, .btn-xl-white:focus, .btn-xl-white:active {
            color: var(--secondary) !important;
            background-color: var(--bs-dark-bg-subtle) !important;
        }

    .border-xl-start {
        border-left: 1px solid var(--light-border) !important;
    }

    .border-xl-end {
        border-right: 1px solid var(--light-grey);
    }

    .border-xl {
        border: 1px solid var(--light-border) !important;
    }

    .rounded-xl-1 {
        border-radius: 0.25rem !important;
    }

    .fw-xl-semibold {
        font-weight: 600 !important;
    }

    .position-xl-static {
        position: static !important;
    }

    .position-xl-absolute {
        position: absolute !important;
    }

    .translate-middle-xl-x {
        transform: translateX(-50%) !important;
    }

    .translate-middle-xl-y {
        transform: translateY(-50%) !important;
    }

    .bg-transparent {
        background-color: transparent !important;
    }

    .w-725px {
        width: 725px;
    }

    .text-xl-nowrap {
        white-space: nowrap !important;
    }

    .rounded-xl-4 {
        border-radius: 1rem !important;
    }

    .mt-n72px {
        margin-top: 0px;
    }

    body {
        font-size: 1.125rem !important;
    }
    /* 18px */
    h1, .h1 {
        font-size: 3.75rem;
    }
    /* 60px */
    h2, .h2 {
        font-size: 3.125rem;
    }
    /* 50px */
    h3, .h3 {
        font-size: 2.25rem;
    }
    /* 36px */
    h4, .h4 {
        font-size: 1.625rem;
    }
    /* 26px */

    .modal-lg {
        width: 654px !important;
    }

    .search-btn {
        border: none !important;
        color: inherit;
        width: auto;
        height: auto;
    }

    .banner-section {
        height: 100%;
        max-height: calc(100vh - 96px);
    }

        .banner-section video {
            height: 860px;
        }

    .owl-theme .owl-nav button {
        width: 85px;
        height: 85px;
    }

        .owl-theme .owl-nav button span {
            font-size: 3rem;
        }

    .owl-theme .owl-nav .owl-prev {
        left: 55px;
    }

    .owl-theme .owl-nav .owl-next {
        right: 55px;
    }

    .owl-second-nav .owl-nav button {
        bottom: -17px !important;
    }

    .slider-w-h-auto {
        width: 1026px;
        height: 667px;
        object-fit: cover;
    }

    .custom-modal .modal {
        display: block !important;
        position: static !important;
        z-index: auto !important;
        background: transparent !important;
        opacity: 1 !important;
    }

    .custom-modal .modal-dialog {
        margin: 0;
        max-width: 100%;
        transform: none !important;
        margin: 0;
    }

    .custom-modal .modal-content {
        border: none;
        box-shadow: none;
    }

    .custom-modal .modal-backdrop {
        display: none !important;
        background-color: transparent !important;
    }

    .custom-modal .btn-close.d-xl-none {
        display: none;
    }

    .maps-modal .modal-dialog {
        max-width: 100% !important;
        padding: 45px 24px !important;
        height: auto !important;
    }

    .maps-modal .left-details {
        height: calc(100vh - 163px) !important;
    }

    .allcabin-share-dropdwon {
        min-width: 401px;
    }

    .mt-n7 {
        margin-top: -7px
    }
}

@media (min-width: 1400px) {
    .navbar .dropdown-menu {
        right: -28px;
    }

        .navbar .dropdown-menu .form-control-lg {
            width: 397px;
        }

    .w-xxl-75 {
        width: 75%;
    }
}

@media (min-width: 1500px) {
}

@media (min-width: 1600px) {
    .container-xxl {
        max-width: 1478px !important;
    }

    .column-count-xxxl-2 {
        column-count: 2;
        column-gap: 1.5rem;
    }

    .owl-theme .owl-nav .owl-prev {
        left: 280px;
    }

    .owl-theme .owl-nav .owl-next {
        right: 280px;
    }

    .about-section::before {
        content: "";
        position: absolute;
        bottom: 10px;
        left: -44px;
        width: 254px;
        height: 204px;
        background: url(/media/mountain-img.png);
        background-repeat: no-repeat;
        background-position: top;
    }

    .about-section:after {
        content: "";
        position: absolute;
        bottom: -25px;
        right: 0;
        width: 225px;
        height: 164px;
        background: url(/media/fishing-img.png);
        background-repeat: no-repeat;
        background-position: top;
        z-index: 1;
    }

    .promotion-section::before {
        content: "";
        position: absolute;
        top: 10px;
        right: -64px;
        width: 247px;
        height: 100%;
        background: url(/media/location-img.png);
        background-repeat: no-repeat;
        background-size: auto;
        z-index: -1;
    }

    .rental-collection::before {
        content: "";
        position: absolute;
        bottom: 0px;
        right: -28px;
        width: 246px;
        height: 266px;
        background: url(/media/beach-chair-img.png);
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .local-news-section::before {
        content: "";
        transform: rotateY(180deg);
        position: absolute;
        bottom: 0px;
        left: -28px;
        width: 246px;
        height: 266px;
        background: url(/media/beach-chair-img.png);
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .customer-review-section::before {
        content: "";
        position: absolute;
        bottom: -50px;
        left: -99px;
        width: 389px;
        height: 313px;
        background: url(/media/customer-review-img.png);
        background-repeat: no-repeat;
        background-position: top;
        z-index: -1;
    }

    .faqs-section::before {
        content: "";
        position: absolute;
        bottom: 100px;
        right: 0;
        width: 204px;
        height: 267px;
        background: url(/media/compass-img.png);
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }

    .journey-section::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 0;
        width: 158px;
        height: 97px;
        background: url(/media/journey-location-img.png);
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }
}

@media (min-width: 1201px) and (max-width: 1599.98px) {
    .main {
        padding-top: var(--dbb-header-h, 96px);
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
    }

    .navbar .navbar-brand img {
        width: 204px;
    }

    .navbar a {
        font-size: 1rem;
    }

    body {
        font-size: 1rem !important;
    }
    /* 18px */
    h1, .h1 {
        font-size: 2.875rem !important;
    }
    /* 46px */
    h2, .h2 {
        font-size: 2.375rem !important;
    }
    /* 38px */
    h3, .h3 {
        font-size: 1.625rem !important;
    }
    /* 26px */
    h4, .h4 {
        font-size: 1.25rem !important;
    }
    /* 20px */
}

/* ==========================================================================
   Site footer: opaque mountain photo behind the footer (matches main site)
   ========================================================================== */
.site-footer {
    position: relative;
    background-image: url(/media/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0d0d0d;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

/* Keep footer content above the dark overlay */
.site-footer > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .site-footer {
        padding-top: 6rem !important;
    }
}

/* ==========================================================================
   Chat widget theme overrides (stream-chat-widget.js)
   The widget injects its own <style> into <head> at runtime, so these rules
   are scoped by the container id to win on specificity without !important.
   ========================================================================== */
#stream-chat-widget-container .scw-fab {
    background: var(--primary);
}

#stream-chat-widget-container .scw-fab:hover {
    background: var(--secondary);
}

#stream-chat-widget-container .scw-panel {
    border-color: var(--light-border);
}

#stream-chat-widget-container .scw-header {
    background: var(--primary);
    border-bottom-color: var(--secondary);
}

#stream-chat-widget-container .scw-title,
#stream-chat-widget-container .scw-close {
    color: var(--white);
}

#stream-chat-widget-container .scw-welcome,
#stream-chat-widget-container .scw-who {
    color: var(--grey);
}

#stream-chat-widget-container .scw-text {
    background: var(--light-red);
    color: var(--text-black);
}

#stream-chat-widget-container .scw-msg-row.scw-mine .scw-text {
    background: rgba(46, 125, 50, 0.12);
}

#stream-chat-widget-container .scw-text a {
    color: var(--secondary);
}

#stream-chat-widget-container .scw-input input:focus,
#stream-chat-widget-container .scw-booking-bar input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(46, 125, 50, 0.25);
}

#stream-chat-widget-container .scw-send,
#stream-chat-widget-container .scw-booking-bar button {
    background: var(--primary);
}

#stream-chat-widget-container .scw-send:hover,
#stream-chat-widget-container .scw-booking-bar button:hover:not(:disabled) {
    background: var(--secondary);
}

#stream-chat-widget-container .scw-booking-linked {
    background: rgba(46, 125, 50, 0.12);
    border-bottom-color: rgba(46, 125, 50, 0.35);
    color: var(--secondary);
}

#stream-chat-widget-container .scw-booking-linked-clear {
    color: var(--secondary);
}
