:root {
    --primary: #6CA600;
    --secondary: #98AC74;
    --green: #6CA600;
    --olive: #98AC74;
    --black: #1E1E1E;
    --charcoal: var(--black);
}

*:focus {
    outline: none;
    box-shadow: none !important;
}

html {
    font-size: 14px;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Menu */
.navbar {
    padding: 10px;
}

    .navbar .navbar-brand img {
        width: 250px;
    }

    .navbar .navbar-toggler {
        border: none;
    }

        .navbar .navbar-toggler[aria-expanded="false"] .hamburger-open {
            display: block
        }

        .navbar .navbar-toggler[aria-expanded="false"] .hamburger-close {
            display: none
        }


        .navbar .navbar-toggler[aria-expanded="true"] .hamburger-open {
            display: none;
        }

        .navbar .navbar-toggler[aria-expanded="true"] .hamburger-close {
            display: block
        }

/* Footer */
footer {
    background-color: var(--charcoal);
    padding: 80px 60px;
    color: white;
}

    footer .side {
        display: flex;
        align-items: center;
    }

        footer .side a {
            transition: 0.2s ease;
            display: block;
            text-decoration: underline !important;
            color: white;
        }

            footer .side a:hover {
                opacity: 0.7;
            }

    footer .footer-logo {
        height: 40px;
        margin-bottom: 2rem;
    }

    footer .social-icons {
        margin-top: 1rem;
    }

        footer .social-icons a {
            transition: 0.2s ease;
        }

            footer .social-icons a:hover {
                opacity: 0.7;
            }

        footer .social-icons img {
            height: 40px;
        }

/* Utilities */
.kml-container {
    padding: 0 10%;
}

.padding-top-10 {
    padding-top: 3rem
}

.padding-bottom-10 {
    padding-bottom: 3rem
}

/* Buttons */
.btn {
    background-image: url(../images/icons/button.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 5px 20px;
    background-color: transparent;
    border: none;
    transition: 0.3s ease;
}
.btn:hover {
    background-image: url(../images/icons/button-hover.png); 
    background-color: transparent; 
}

/* Text */
.text-primary, .text-green {
    color: var(--primary) !important;
}

.text-secondary, .text-olive {
    color: var(--secondary) !important;
}

.text-black, .text-dark {
    color: var(--black) !important
}

.text-white {
    color: white !important
}

/* Pages */
/* Landing */
.landing {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

    .landing img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center
    }

    .landing video {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0.3;
        filter: brightness(1.5) contrast(1.5) saturate(0);
    }

    .landing .content {
        position: absolute;
        z-index: 2;
        bottom: 0px;
        padding: 60px;
    }

        .landing .content h1 {
            font-size: 4rem;
        }

        .landing .content .content-inline {
            display: inline;
            color: white;
            font-size: 1.1rem;
            text-decoration: none;
        }

        .landing .content .content-inline .play-icon {
            height: 60px;
            width: 60px;
            margin-right: 10px;
        }

    .landing .swiper {
        height: 100%;
    }

        .landing .swiper .swiper-slide {
            background-color: grey;
            background-size: cover;
            background-repeat: no-repeat;
            color: white;
        }

    .landing .content .next-icon,
    .landing .content .prev-icon {
        height: 60px;
        width: 60px;
        transition: 0.3s ease;
    }

        .landing .content .next-icon:hover,
        .landing .content .prev-icon:hover {
            opacity: 0.8;
        }

    .landing .content .prev-icon {
        transform: scaleX(-1)
    }

    .landing .content .swiper-pagination {
        display: inline;
        position: static;
    }

.amenities {
    padding-bottom: 5rem !important;
    border-bottom: 1px solid rgba(0,0,0,0.2)
}

    .amenities .fas {
        font-size: 3rem;
        color: var(--primary);
        display: block;
        margin-bottom: 1rem;
    }

    .amenities .amenity {
        font-size: 1.1rem;
    }

        .amenities .amenity small {
            font-size: 0.8rem;
        }

@media only screen and (max-width: 768px) {
    .landing {
        height: 90vh;
    }

        .landing .content {
            padding: 30px;
            box-shadow: 0 -30vh 130px -10vh rgba(0, 0, 0, 0.45) inset;
            height: 100%;
            display: flex;
            align-items: flex-end;
        }

        .landing.with-swiper { 
        }

            .landing.with-swiper .content {
                flex-direction: column;
                justify-content: flex-end;
                box-shadow: none;
            }

            .landing .content h1 {
                font-size: 3.6rem;
            }
}

/* About Accomodation */
.image-stack {
    width: 100%;
    --margin: 100px;
}

    .image-stack img {
        width: calc(100% - var(--margin));
    }

        .image-stack img.img-bottom {
            margin-left: var(--margin);
            margin-top: calc(var(--margin) * -2);
        }

.gallery-row img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

/* Form */
.form-floating {
    --input-height: 60px;
}

    .form-floating .form-control {
        height: var(--input-height) !important;
        min-height: 80px;
        padding-top: 3.5rem;
        padding-bottom: 1rem;
        font-family: 'avehope', sans-serif;
        font-size: 2rem;
        border-color: rgba(0,0,0,0.25);
        color: #444C35;
    }

        .form-floating .form-control ~ label {
            height: 100%;
            display: flex;
            align-items: center;
            transform: none;
            color: black;
            opacity: 1 !important;
        }

        .form-floating .form-control:focus ~ label,
        .form-floating .form-control:not(:placeholder-shown) ~ label {
            align-items: flex-start;
        }

    .form-floating textarea.form-control {
        height: var(--input-height) !important;
        min-height: var(--input-height);
    }