
@font-face {
    font-family: garamond-medium;
    font-weight: 500;
    src: url(../fonts/CormorantGaramond-Medium.ttf);
}

@font-face {
    font-family: alegreya;
    src: url(../fonts/Alegreya-VariableFont_wght.ttf);
}

@font-face {
    font-family: roboto-thin;
    font-weight: 500;
    src: url(../fonts/Roboto-Thin.ttf);
}

@font-face {
    font-family: cuprum;
    font-weight: 500;
    src: url(../fonts/Cuprum-VariableFont_wght.ttf);
}

@font-face {
    font-family: jost;
    font-weight: 300;
    src: url(../fonts/Jost-VariableFont_wght.ttf);
}



html {
    font-size: 16px;
}

body {
    padding: 0px !important;
    margin: 0px !important;
    font-family: jost;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.about-banner {
    background-image: url('../images/h-about.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 600px;
}

.contact-banner {
    background-image: url('../images/h-contact.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 600px;
}

.menu-logo {
    height: 75px;
}

#video-nav li a.nav-link {
    font-family: jost;
    color: #fff !important;
    font-size: 1.4em;
    margin-left: 60px
}

#video-nav li a.active {
    color: #919A6D !important;
}

#main-nav li a.nav-link {
    font-family: jost;
    text-transform: uppercase;
    color: #000 !important;
    font-size: 1.2em;
    margin-left: 60px
}

#main-nav li a.active {
    color: #919A6D !important;
    text-transform: uppercase;
}

li a.nav-link {
    font-size: 1.2em !important;
    transition: font-size 0.3s ease-in-out;
}
    li a.nav-link:hover {
        font-size: 1.4em !important;
        color: #ff6600 !important;
        /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), -2px -2px 5px rgba(0, 0, 0, 0.3);*/
    }

a {
    color: #919A6D !important;
    text-decoration: none;
}

    a:hover {
        color: #ccc;
    }

    a.href-light {
        color: #ccc !important;
    }

        a.href-light:hover {
            color: #000 !important;
        }

.bg-main-menu {
    background-color: #fff;
}

.bg-video-menu {
    background-color: transparent
}

.bg-opacity-caption {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.bg-primary {
    background-color:#919A6D !important;
}
.text-primary {
    color:#919A6D !important;
}
.text-orange {
    color: #ff6600 !important;
}

h1 {
    text-transform: uppercase;
    color: #919A6D !important;
}

h2 {
    font-family: jost;
    color: #919A6D;
    font-size: 1.4em;
    text-transform: uppercase;
}

h3 {
    color: #000;
    font-size: 2.0em;
    text-transform: uppercase;
}

p {
    font-size: 1.2em;
}

.btn-primary {
    background-color: #919A6D !important;
    border: 1px solid #919A6D !important;
}

    .btn-primary:hover {
        background-color: #f8f9fa !important;
        color: #919A6D !important;
    }

a.btn-primary {
    color: #fff !important;
}

.btn-outline-primary {
    border: 1px solid #919A6D !important;
}

    .btn-outline-primary:hover {
        background-color: #919A6D !important;
        color: #fff !important;
    }

.btn-orange {
    background-color: #ff6600 !important;
    color: #fff !important;
}
a.btn-orange {
    color: #fff !important;
}

.top-menu-pad {
    margin-top: 100px;
}

footer {
    background-color: #D7DCE3;
    border-top: 1px solid #ccc;
    margin-top: 50px;
    padding: 50px;
}

.top-shadow {
    box-shadow: 0px 10px 5px #000, 0px -10px 20px #000;
}
.carousel-control-next {
    /* right: -90px !important;*/
    color: #000 !important;
}

.carousel-control-prev {
    /*left: -90px !important;*/
    color: #000 !important;
}


.text-lg {
    font-size: 2.5em !important;
}

.zoom {
    transition: transform .5s; /* Animation */
}

    .zoom:hover {
        transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }

.hover-blue {
    background: #fff;
    transition: color 1s ease-out 100ms;
    transition: background-color 2s ease-out 100ms;
}

    .hover-blue:hover {
        background-color: #919A6D !important;
        color: #000 !important;
    }

.bookNow-hide {
    display: none;
}
.bookNow-show {
    display: flex;
}

.availability-div {
    position: relative;
    background: url('../images/gallery/IMG-20220807-WA0009.jpg') no-repeat center center;
    background-size: cover;
}

    .availability-div::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent overlay */
        z-index: 1;
    }
.availability-content {
    position: relative;
    z-index: 1;
    color: #fff; /* Text color */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.hide-d {
    display: none;
}

.hide-m {
    display: block;
}

@media (max-width: 768px) {
    .hide-d {
        display: block !important;
    }

    .hide-m {
        display: none !important;
    }

    video {
        width: 100vw !important;
    }

    .bg-video-menu {
        background: rgba(0, 0, 0, 0.5);
        text-align: left !important;
        padding: 20px;
    }

    .bg-main-menu {
        background: rgba(255, 255, 255, 0.5);
        text-align: left !important;
        padding: 20px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}
