:root {
    --color-primary-lightest: rgb(248, 244, 239);
    --color-primary-light: rgb(243, 240, 235);
    --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);
    --color-primary-deep: rgb(95, 72, 50);
}

body {
    background: var(--color-primary-lightest);
}

/* TABLET */

@media (max-width: 1200px) {
    .availabilitySectionContent {
        padding: 28px 20px;
    }

    .availabilitySectionHeader h2 {
        font-size: 28px;
    }

    .availabilitySectionHeader p {
        font-size: 15px;
    }
}

/* MOBILE */

@media (max-width: 600px) {
    .availabilityInner {
        padding: 16px;
    }

    .availabilitySection {
        height: auto;
        min-height: 380px;
    }

    .availabilitySectionContent {
        padding: 24px 18px;
    }

    .availabilitySectionHeader h2 {
        font-size: 24px;
    }

    .availabilitySectionHeader p {
        font-size: 14px;
        line-height: 1.45;
    }
}

/* REVIEWS */

.reviewsSection {
    width: 100%;
    margin-top: 0px;
    padding: 0 20px;
    box-sizing: border-box;
}

.reviewsInner {
    width: 100%;
    background: var(--color-primary-lighter);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

/* TILES */

.tilesSection {
    position: relative;
    width: 100%;
    padding-top: 65px;
    background: var(--color-primary-lightest);
}

.tilesGrid {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.tileCard {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--color-primary-light);
}

.tileCard img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tileOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(95, 72, 50, 0.78) 0%,
            rgba(95, 72, 50, 0.25) 45%,
            rgba(95, 72, 50, 0.08) 100%);
}

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

.tileContent h2 {
    margin: 0 0 10px 0;
    font-family: 'Open Sans';
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.tileContent p {
    margin: 0;
    font-family: 'Open Sans';
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.home img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0.0, 0.0, 0.0, 0.2);
}

/* MESSAGE */

.message {
    position: absolute;
    left: 50%;
    top: 85%;
    width: 600px;
    height: 290px;
    transform: translate(-50%, -85%);
}

.messageTitle {
    position: absolute;
    width: 600px;
    height: 150px;
    text-align: center;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 48px;
    font-weight: 500;
    color: white;
}

.messageDescription {
    position: absolute;
    left: 0;
    top: 150px;
    width: 600px;
    height: 90px;
    text-align: center;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 24px;
    font-weight: 400;
    color: white;
}

.messageButton {
    position: absolute;
    left: 0;
    top: 250px;
    width: 600px;
    height: 40px;
}

.accommodationButton {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 30px;
    transform: translate(-50%, -50%);
    background: url('/ui/accommodationButton.png');
    background-position: center;
    background-size: 150px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.accommodationButtonEl {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 30px;
    transform: translate(-50%, -50%);
    background: url('/ui/el/accommodationButton.png');
    background-position: center;
    background-size: 120px;
    background-repeat: no-repeat;
    cursor: pointer;
}

/* TABLET */

@media (max-width: 1200px) {
    .tilesGrid {
        grid-template-columns: 1fr 1fr;
    }

    .tileCard {
        height: 320px;
    }

    .tileContent h2 {
        font-size: 22px;
    }

    .tileContent p {
        font-size: 14px;
    }
}

/* MOBILE LAYOUT */

@media (max-width: 600px) {

    .tilesGrid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .tileCard {
        height: 280px;
        border-radius: 8px;
    }

    .tileContent {
        padding: 20px;
    }

    .tileContent h2 {
        font-size: 20px;
    }

    .tileContent p {
        font-size: 14px;
        line-height: 1.45;
    }

    /* MESSAGE */

    .message {
        position: absolute;
        left: 50%;
        top: 65%;
        width: 320px;
        height: 190px;
        transform: translate(-50%, -65%);
    }

    .messageTitle {
        position: absolute;
        width: 320px;
        height: 90px;
        /* <-- Font Size Change */
        font-size: 26px;
        font-weight: 600;
        color: #fff;
    }

    .messageDescription {
        position: absolute;
        top: 90px;
        width: 320px;
        height: 60px;
        text-align: center;
        /* <-- Font Size Change */
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }

    .messageButton {
        position: absolute;
        top: 150px;
        width: 320px;
        height: 40px;
    }
}