@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --color-primary-lightest: rgb(248, 244, 239);
    --color-primary-lighter: rgb(239, 236, 231);
    --color-primary-lighter-transparent: rgb(239, 236, 231, 0.2);
    --color-primary: rgb(174, 140, 105);
    --color-primary-dark: rgb(165, 132, 98);
    --color-primary-darker: rgb(132, 102, 74);
    --color-primary-darkest: rgb(120, 92, 65);
    --color-primary-darkest-transparent: rgb(120, 92, 65, 0.2);
}

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

/* HEADER */

.navigation header {
    position: fixed;
    width: 100%;
    height: 65px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    /*backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);*/
    background: var(--color-primary);
}

.leftNavBarContainer {
    display: flex;
    justify-content: flex-start;
}

.middleNavBarContainer {
    display: flex;
    justify-content: center;
}

.rightNavBarContainer {
    display: flex;
    justify-content: flex-end;
}

.menuButton {
    position: absolute;
    left: 20px;
    top: 15px;
    width: 35px;
    height: 35px;
    background: url('/ui/menuButton.png');
    background-position: center;
    background-size: 35px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.menuButton.selected {
    position: absolute;
    left: 20px;
    top: 15px;
    width: 35px;
    height: 35px;
    background: url('/ui/menuButtonSelected.png');
    background-position: center;
    background-size: 35px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.logoButton {
    width: 254px;
    height: 60px;
    background: url('/ui/logoButton.png');
    background-position: center;
    background-size: 90px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.bookNowButton {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 105px;
    height: 35px;
    background: url('/ui/bookNowButton.png');
    background-position: center;
    background-size: 105px;
    background-repeat: no-repeat;
    cursor: pointer;
}

/* MENU */

.menu {
    position: fixed;
    left: -300px;
    top: 0px;
    width: 300px;
    height: 100%;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    background: var(--color-primary-dark);
    transition: 0.2s;
}

.menu.active {
    left: 0px;
}

.menuContainer {
    position: absolute;
    left: 20px;
    top: 85px;
}

.menu ul {
    position: relative;
    list-style: none;
}

.menu ul li {
    padding-top: 2px;
    padding-bottom: 2px;
}

.menu ul li a {
    text-decoration: none;
    color: white;
}

.menu ul li img {
    opacity: 0.1;
}

/* MENU BACKDROP */

.menuBackdrop {
    position: fixed;
    left: 0;
    top: 65px;
    width: 100%;
    height: calc(100vh - 65px);
    z-index: 850;
    background: black;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.menuBackdrop.active {
    opacity: 0.2;
    visibility: visible;
    pointer-events: auto;
}

/* PROMO TILE */

.promoTileItem {
    width: 260px;
    height: 180px;
    margin-bottom: 0px;
    list-style: none;
}

.menu ul li.promoTileItem {
    padding-top: 0;
    padding-bottom: 0;
}

.promoTile {
    position: relative;
    display: block;
    width: 260px;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    background: var(--color-primary-dark);
}

.promoTile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    filter: blur(2px);
    transform: scale(1.03);
}

.promoTileOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(95, 72, 50, 0.82) 0%,
        rgba(95, 72, 50, 0.28) 48%,
        rgba(95, 72, 50, 0.10) 100%
    );
}

.promoTileContent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    z-index: 2;
    color: white;
}

.promoTileLabel {
    margin-bottom: 8px;
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.promoTileText {
    font-family: 'Open Sans';
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.promoTile:hover {
    opacity: 0.96;
}

/* FOOTER */

.footer {
    position: relative;
    width: 100%;
    height: 420px;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 15px;
    font-weight: 300;
    color: var(--color-primary-darkest);
    background: var(--color-primary-lightest);
}

.topFooterContainer {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 1200px;
    height: 300px;
    transform: translate(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
}

.topFooterContainer a {
    text-decoration: none;
    color: var(--color-primary-darkest);
}

.topFooterContainer a:hover {
    text-decoration: underline;
    color: var(--color-primary-darkest);
}

.bottomFooterContainer {
    position: absolute;
    left: 0px;
    top: 380px;
    width: 100%;
    height: 40px;
    text-align: center;
    /* <-- Font Size Change */
    font-size: 13px;
    font-weight: 300;
    background: var(--color-primary-lightest);
}

/* LOCATION */

.locationCell {
    position: absolute;
    left: 10px;
    top: 0px;
    width: 280px;
    height: 300px;
}

.mapBorder {
    width: 260px;
    height: 210px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-primary-darkest-transparent);
}

.mapBorder img {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 240px;
    height: 190px;
    object-fit: cover;
}

/* CONTACT US */

.contactUsCell {
    position: absolute;
    left: 310px;
    top: 0px;
    width: 280px;
    height: 300px;
}

/* LINKS */

.linksCell {
    position: absolute;
    left: 610px;
    top: 0px;
    width: 280px;
    height: 300px;
}

.linksCellContent ul {
    list-style: none;
}

.linksCellContent a {
    text-decoration: none;
}

/* FOLLOW US */

.followUsCell {
    position: absolute;
    left: 910px;
    top: 0px;
    width: 280px;
    height: 300px;
}

/* GENERAL */

.cellTitle {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 260px;
    height: 20px;
}

.cellTitle img {
    position: absolute;
    left: 0px;
    top: 30px;
    width: 260px;
    height: 1px;
    opacity: 0.2;
}

.cellContent {
    position: absolute;
    left: 10px;
    top: 60px;
    width: 260px;
    height: 100%;
}

.cellContent li {
    list-style-position: inside;
}

/* TABLET LAYOUT */

@media (max-width: 1200px) {

    /* MENU */

    .menuContainer {
        position: absolute;
        left: 20px;
        top: 85px;
    }

    /* FOOTER */

    .footer {
        position: relative;
        width: 100%;
        height: 700px;
    }

    .topFooterContainer {
        position: absolute;
        left: 50%;
        top: 40px;
        width: 600px;
        height: 500px;
        transform: translate(-50%);
    }

    .bottomFooterContainer {
        position: absolute;
        left: 0px;
        top: 660px;
        width: 100%;
        height: 40px;
    }

    /* LOCATION */

    .locationCell {
        position: absolute;
        left: 10px;
        top: 0px;
        width: 280px;
        height: 280px;
    }

    /* CONTACT US */

    .contactUsCell {
        position: absolute;
        left: 310px;
        top: 0px;
        width: 280px;
        height: 180px;
    }

    /* LINKS */

    .linksCell {
        position: absolute;
        left: 10px;
        top: 300px;
        width: 280px;
        height: 200px;
    }

    /* FOLLOW US */

    .followUsCell {
        position: absolute;
        left: 310px;
        top: 300px;
        width: 280px;
        height: 120px;
    }
}

/* PHONE LAYOUT */

@media (max-width: 600px) {

    /* MENU */

    .menuContainer {
        position: absolute;
        left: 20px;
        top: 85px;
    }

    /* FOOTER */

    .footer {
        position: relative;
        width: 100%;
        height: 980px;
        /* <-- Font Size Change */
        font-size: 15px;
        font-weight: 300;
    }

    .topFooterContainer {
        position: absolute;
        left: 50%;
        top: 40px;
        width: 300px;
        height: 900px;
        transform: translate(-50%);
    }

    .bottomFooterContainer {
        position: absolute;
        left: 0px;
        top: 980px;
        width: 100%;
        height: 40px;
        /* <-- Font Size Change */
        font-size: 13px;
        font-weight: 300;
    }

    /* LOCATION */

    .locationCell {
        position: absolute;
        left: 10px;
        top: 0px;
        width: 280px;
        height: 300px;
    }

    /* CONTACT US */

    .contactUsCell {
        position: absolute;
        left: 10px;
        top: 300px;
        width: 280px;
        height: 180px;
    }

    /* LINKS */

    .linksCell {
        position: absolute;
        left: 10px;
        top: 480px;
        width: 280px;
        height: 340px;
    }

    /* FOLLOW US */

    .followUsCell {
        position: absolute;
        left: 10px;
        top: 780px;
        width: 280px;
        height: 120px;
    }

    /* GENERAL */

    .cellContent ul li {
        padding-top: 2px;
        padding-bottom: 2px;
    }
}