:root {
    --pico-void: #192a56;
    /* 25, 42, 86 */
    --pico-lite: #2e3a54;
    --pico-medium: #385985;
    --honey-glow: #EAB543;
    /* 234, 181, 67 */
    --honey-glow-lite: #FAEED5;
    --honey-glow-medium: #F8E6C0;
    --bebe: #bebebe;
    --bs-accordion-btn-color: red !important;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--pico-lite);
    background-color: #fff;
    max-width: 100%;
}

.btn-pico {
    background-color: var(--pico-void);
    color: var(--honey-glow-medium);
}

.btn-pico:hover {
    background-color: var(--honey-glow);
    color: var(--pico-void);
}

/* misc */

.bg-pasko-violet {
    background-color: #440E62
}

.bg-pasko-red {
    background-color: #B33771;
}

.bg-pasko-green {
    background-color: #005E20
}

.fs-m {
    font-size: 12px !important;
}

.fs-l {
    font-size: 14px !important;
}

.fs-xl {
    font-size: 16px !important;
}

.fs-xxl {
    font-size: 18px !important;
}

.fs-sm {
    font-size: 10px !important;
}

.fs-10 {
    font-size: 10em;
}

.text-smoke {
    color: whitesmoke !important;
}

.text-honey {
    color: var(--honey-glow)
}

.text-honey-lite {
    color: var(--honey-glow-lite)
}

.text-honey-medium {
    color: var(--honey-glow-medium)
}

.text-pico-lite {
    color: var(--pico-lite)
}

.text-pico-medium {
    color: var(--pico-medium)
}

.bg-white {
    background-color: #fff !important;
}

.bg-honey {
    background-color: var(--honey-glow) !important;
}

.bg-honey-lite {
    background-color: var(--honey-glow-lite) !important;
}


.bg-blue {
    background-color: var(--pico-void) !important;
}

.bg-blue-lite {
    background-color: var(--pico-lite) !important;
}

.bg-blue-medium {
    background-color: var(--pico-medium) !important;
}


/* header */

#header {
    position: relative;
    background: #fff;
    height: 60px;
}

/* logo */
#header .logo {
    position: absolute;
    left: 0;
    padding-left: 10px;
}

#header .logo img {
    max-height: 50px;
}

/* navigation */

.main-menu {
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.main-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 10px
}

.main-menu ul li {
    display: inline-block;
}

.main-menu ul li a {
    display: block;
    color: var(--pico-void);
    text-decoration: none;
    padding: 0 10px;
    line-height: 40px;
    transition: color .25s ease, background-color .25s ease;
}

.main-menu ul li a:hover {
    border-radius: 5px;
    background-color: var(--honey-glow);
    color: var(--pico-void);

}

.main-menu ul li.active a:hover {
    color: var(--honey-glow);
    background-color: var(--pico-void) !important;
}

.main-menu ul li.active a {
    color: var(--honey-glow);
}


/* mobile menu */

.hamburger-btn {
    color: #FFD700;
    text-align: right;
    font-size: 30px;
    padding-right: 10px;
    line-height: 60px;
    display: none;
    white-space: nowrap;
}

.hamburger-btn i {
    cursor: pointer;
}

/* social media links @header */

#header .social-media {
    position: absolute;
    padding-right: 10px;
    right: 0;
    line-height: 45px;
    cursor: pointer;
    transition: color .25s ease;
}

#header .social-media a {
    text-decoration: none;
    color: var(--honey-glow);
    font-size: 18px;
    font-weight: 600;
}

/* main carousel */
/* 
#main-carousel {
    position: relative;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    transition: margin-top 0.4s ease;
    max-height: calc(100vh - 70px);
}
 */
/* slider text animation */
#intro {
    position: absolute;
    top: calc((100vh *.5) - 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
}

#intro h3 {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

#intro p {
    font-size: 25px;
    font-weight: 400;
}

/* headline */

#headline {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

#headline h2 {
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 40px !important;
    margin-bottom: 15px;
}

#headline p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

/* hotels */

.hotel-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.hotel-gallery img {
    display: block;
    position: relative;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
    cursor: default;
}

.hotel-gallery:hover img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.hotel-gallery .overlay {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.hotel-gallery:hover .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
}

.hotel-gallery .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.hotel-gallery h2 {
    position: relative;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    background: rgba(234, 181, 67, 0.6);
    padding: 10px 0 10px 0;
    border-radius: 10px;
    transition: transform 0.5s;
    transform: scale(1);
}

.hotel-gallery h2:hover {
    transform: scale(1.2);
    background: rgba(25, 42, 86, 0.6);
    color: var(--honey-glow);
}

.hotel-gallery .badge {
    position: absolute;
    top: 10px;
    /* Adjust to your desired vertical position */
    right: 10px;
    /* Adjust to your desired horizontal position */
    background-color: var(--honey-glow);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: opacity 0.5s;
    opacity: 1;
}

.hotel-gallery:hover .badge {
    opacity: 0;
}

/* amenities */
#amenities {
    position: relative;
    padding: 45px 0 15px 0;
    text-align: center;
    width: 100%;
}

#amenities .info {
    color: #dedede !important;
    font-size: 14px;
    margin-bottom: 60px;
}

#amenities.main-amenities {
    max-height: 100%;
    background-image: url(../img/slider/slider-5.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

#amenities.main-amenities:after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#amenities .container {
    position: relative;
    z-index: 1;
}

#amenities.main-amenities h2,
#amenities.main-amenities h3,
#amenities.main-amenities p {
    color: #ffffff;
    line-height: 24px;
}

#amenities h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

#amenities .icon-text p {
    color: #bebebe !important;
}

#amenities .icon-text h5 {
    color: var(--honey-glow-lite) !important;
}

#amenities .icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

#amenities .icon.icon-shower {
    background-image: url(../img/icons/shower.png);
}

#amenities .icon.icon-wifi {
    background-image: url(../img/icons/wifi.png);
}

#amenities .icon.icon-aircon {
    background-image: url(../img/icons/aircon.png);
}

#amenities .icon.icon-restaurant {
    background-image: url(../img/icons/restaurant.png);
}

#amenities .icon.icon-pavilion {
    background-image: url(../img/icons/pavilion.png);
}

#amenities .icon.icon-prayer {
    background-image: url(../img/icons/prayer.png);
}

#amenities .icon.icon-catering {
    background-image: url(../img/icons/catering.png);
}

#amenities .icon.icon-meeting {
    background-image: url(../img/icons/meeting.png);
}

#amenities .icon.icon-tv {
    background-image: url(../img/icons/television.png);
}

/* cottages */
#cottages {
    --s: 300px;
    /* control the size */
    --g: 20px;
    /* control the gap */
    --f: 1.5;
    /* control the scale factor */

    display: grid;
    gap: var(--g);
    width: calc(3*var(--s) + 2*var(--g));
    aspect-ratio: 1;
    grid-template-columns: repeat(3, auto);
    z-index: 1;

}

#cottages .grid-item img {

    width: 0;
    height: 0;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    filter: grayscale(60%);
    transition: .35s linear;

}

#cottages .grid-item:hover img {
    filter: grayscale(0);
    width: calc(var(--s)*var(--f));
    height: calc(var(--s)*var(--f));
}

#grid-container {
    display: flex;
    justify-content: center;
}

#cottages .grid-item {
    position: relative
}

#grid-container .grid-item .badge {

    position: absolute;
    display: flex;
    top: 50%;
    /* Vertically center the overlay */
    left: 50%;
    /* Horizontally center the overlay */
    transform: translate(-50%, -50%);

    /*background-color: rgba(25, 42, 86, .8);*/
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
    background-color: rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .5);
    border-radius: 5px;
    height: 30px;
    cursor: pointer;
    transition: opacity 2s;
    opacity: .6;
}

#grid-container .grid-item:hover .badge {
    background-color: rgba(234, 181, 67, .8);
    /* 25, 42, 86 */
    color: white;
    font-size: 15px;
    height: 50px;
    opacity: 1;
}

.room-cottages {
    cursor: pointer;
}

/* FAQs */

#faq-list-container {
    display: flex;
    justify-content: center;
}

.faq-container {
    position: relative;
    background-color: var(--honey-glow-lite);
}

#faq-list-container .faq-list {
    position: relative;
    width: 100%;
    max-width: 1024px !important;
    margin-bottom: 20px !important;
}

#faq-list-container .faq-list ul {
    padding: 0;
    list-style: none;
}

#faq-list-container .faq-list li {
    position: relative;
    padding: 20px 20px 20px;
    background: #fff;
}

#faq-list-container .faq-list .faq-toggle {
    position: absolute;
    font-size: 18px;
    padding: 20px 20px;
    right: 0;
    top: 0;
    cursor: pointer;
}

#faq-list-container .faq-list .faq-toggle i {
    color: var(--honey-glow) !important;
}

#faq-list-container .li-question,
#faq-list-container .li-question i {
    font-weight: 700;
    color: var(--pico-medium);
    cursor: pointer;
}

#faq-list-container p {
    padding: 5px 20px 0px 30px;
    margin-bottom: 0px;

}

#faq-list-container .faq-list li+li {
    margin-top: 15px;
}

#faq-list-container .faq-list .faq-show {
    display: none;
}

#faq-list-container .faq-list span.collapsed .faq-show {
    display: block;
}

#faq-list-container .faq-list span.collapsed .faq-close {
    display: none;
}

#faq-list-container .faq-list .faq-bullet {
    list-style-type: disc;
    padding: 0px;
}

/* CONTACT US */

#contact-us i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--honey-glow);
    background: var(--pico-medium);
    border-radius: 50px;
    width: 75px;
    height: 75px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 5px;
    margin-top: 10px;
}

#form-contact-us button[type=button] {
    background: var(--honey-glow);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-bottom: 50px;
}

#form-contact-us button[type=button]:hover {
    background: var(--pico-medium);
}

.disabled {
    background-color: var(--bebe) !important;
}

.disabled:hover {
    background-color: var(--bebe) !important;
}

#form-contact-us .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: var(--honey-glow);
}

#form-contact-us .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--honey-glow);
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

/* #form-contact-us .g-recaptcha {
    display: flex;
    justify-content: center;
}
 */

#form-contact-us .sent-message {
    display: none;
    color: #fff;
    background: var(--honey-glow);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#form-contact-us .error-message {
    display: none;
    color: #fff;
    background: #B33771;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* footer */

#footer {
    background-color: #0A1226;
}

#footer .details h5 {
    font-size: 15px;
    font-weight: 600;
    color: #888888;
}

#footer .details p {
    font-size: 15px;
    color: #888888;
}

#mhr-footer .container {
    position: relative;
    max-width: 100%;
}


#footer p.bz {
    color: #888888
}

#footer a.bz {
    color: #545388 !important;
}

#footer a.bz:hover,
#footer i.fa-facebook {
    color: #8D8CAF !important;
}

#footer i.fa-facebook:hover {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

#footer p.footer {
    color: #ccc !important;
}

#footer a {
    color: var(--honey-glow-medium) !important;
    text-decoration: none !important;
    transition: transform .5s;
}

#footer a:hover {
    color: var(--honey-glow) !important;
    transform: scale(1.2) !important;
}

#footer img.featured {
    max-width: 80%;
}

#error .container {
    height: 36vh;
}


/* back to top button */
.to-top {
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 2;
    border: none;
    outline: none;
    text-decoration: none;
    background-color: var(--honey-glow);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    transition: opacity 1s;
    opacity: 0;
}

.to-top.show {
    animation-name: bounce;
    animation-duration: 2s;
    visibility: visible;
    opacity: 1;
}

.to-top a:hover {
    color: var(--honey-glow);
    background-color: var(--pico-void);
    /* Add a dark-grey background on hover */
}

.modal-close {
    border: none;
    background-color: #fff;
}

/* image slider with thumbnails */

.image-slide {
    display: none;
}

.image-counter {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.slide-caption-container {
    /*     display: flex;
    justify-content: center;
    align-items: center; 
    background-color: #222;
       padding: 0px;
     height: 50px; 
    color: white;*/
    background-color: transparent;
}


.slide-row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.slide-col {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.slide-img-opacity {
    opacity: 0.6;
}

.active,
.slide-img-opacity:hover {
    opacity: 1;
}

.slide-cursor {
    cursor: pointer;
}

.slide-prev,
.slide-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
    background-color: rgba(234, 181, 67, 0.8);
}

.slide-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slide-prev:hover,
.slide-next:hover {
    background-color: rgba(25, 42, 86, 0.8);
}

.slide-container {
    position: relative;
}

.room-gallery-card {
    border-radius: 0 !important;
    border: none;
}

/*     
    mobile responsive
*/

@media screen and (max-width: 320px) {
    #intro h3 {
        font-size: 20px;
        font-weight: 700;
    }

    #intro {
        top: 50% !important;
    }

    #intro p {
        font-size: 10px;
        font-weight: 400;
    }

    #header .social-media a,
    #header .social-media .phone i {
        font-size: 10px;
        font-weight: 600;
    }

    #header .social-media .phone {
        font-size: 12px !important;
        font-weight: 600;
    }

    #footer .details img {
        max-width: 100% !important;
    }

    /* pasko */

    #christmas-countdown .caption {
        font-size: .5rem !important;
    }




}


/* mobile responsive */

@media screen and (min-width: 320.1px) and (max-width: 480px) {

    #header .main-menu ul li a {
        font-size: 12px;
        font-weight: 400;
    }

    #intro {
        top: 50% !important;
    }

    #intro h3 {
        font-size: 30px;
        font-weight: 900;
    }

    #intro p {
        font-size: 12px;
        font-weight: 400;
    }

    #faq-list-container span.li-question {
        font-size: 12px !important;
        margin-right: 10px !important;
    }

    #faq-list-container .faq-toggle i {
        font-size: 15px !important;
        padding-left: 10px !important;
    }

    #pasko-heading .pasko-title {
        font-size: .75rem !important;
    }

    #main-carousel {
        max-height: 300px;
        max-width: 100%;
        margin-top: 20px;
    }

}

@media screen and (min-width: 480.1px) and (max-width: 768px) {

    #pasko-heading .pasko-title {
        font-size: 1.5rem !important;
    }

    #header .main-menu ul li a {
        font-size: 14px;
        font-weight: 500;
    }

    #cottages {
        --s: 150px;
        /* control the size */
        --g: 5px;
        /* control the gap */
        --f: 1.2;
        /* control the scale factor */

        display: grid;
        gap: var(--g);
        width: calc(3*var(--s) + 2*var(--g));
        aspect-ratio: 1;
        grid-template-columns: repeat(3, auto);
        z-index: 1;
    }

    #cottages .grid-item:hover img {
        filter: grayscale(0);
        width: calc(var(--s)*var(--f));
        height: calc(var(--s)*var(--f));
    }

    #grid-container .grid-item .badge {

        font-size: 8px;
        height: 25px;
        cursor: pointer;
        transition: opacity 2s;
        opacity: .6;
    }

    #grid-container .grid-item:hover .badge {
        font-size: 10px;
        height: 35px;
        opacity: 1;
    }

    #intro {
        top: 50% !important;
    }

    #intro h3 {
        font-size: 40px;
        font-weight: 800;
    }

    #intro p {
        font-size: 14px;
        font-weight: 500;
    }

    #main-carousel {
        max-height: 480px;
        max-width: 100%;
        margin-top: 20px;
    }


}


@media screen and (max-width: 1023.98px) {

    #pasko-count .counter {
        font-size: 6rem;
    }

    #pasko-count .caption {
        font-size: 1rem;
    }

    #footer .details h5 {
        font-size: 20px;
        text-align: center;
    }

    #footer .details .col-lg-3 {
        padding: 0 30px 0 30px !important;
    }

    #footer p,
    #footer a {
        font-size: 13px;
    }

    #faq-list-container .faq-list {
        max-width: 90% !important;
    }


    #faq-list-container {
        margin-top: 20px;
    }

    #header .social-media .phone {
        font-size: 15px;
        font-weight: 600;
    }

    #headline.cottages {
        margin-bottom: 20px;
    }

    .hotel-gallery h2 {
        font-size: 15px;
    }

    #headline {
        margin-top: 20px;
        max-width: 80% !important;
        margin-bottom: 0px;
    }

    #headline h2 {
        font-size: 35px;
        font-weight: 800;
        letter-spacing: 1px;
        line-height: 35px !important;
    }

    #intro {
        top: 50%;
    }

    /* header */
    #header .main-menu {
        display: none;
        background: var(--pico-void);
        padding: 0;
        margin: 0;
    }

    #header .hamburger-btn {
        display: block;
        padding-top: 30px;
    }

    #header .social-media {
        line-height: 60px;
    }

    /* logo */
    #header .logo {
        padding-top: 10px;
    }

    #header .logo img {
        max-height: 60px;
    }

    /* main menu */
    #header .main-menu ul {
        border: solid 1px #fff;
        padding: 10px 10px 10px 10px;
        margin: 0
    }

    #header .main-menu ul li {
        display: block;
    }

    #header .main-menu ul li a {
        padding: 0;
        color: #fff;
        border-radius: 10px;
    }

    #header .main-menu ul li.active a,
    .main-menu ul li.active a:hover {
        color: #fff;
        background-color: var(--honey-glow) !important;
        font-weight: 600;
    }

    #header .main-menu ul li a:hover {
        text-decoration: none;
        color: var(--pico-void);
        background-color: var(--honey-glow-lite);
        font-weight: 600;
    }

    #headline.contact-us {
        position: relative;
        max-width: 100%;
        margin: 20px auto 20px auto;
    }

    #headline.contact-us p {
        font-size: 15px;
        line-height: 20px;
        font-weight: 300;
    }

    #main-carousel {
        max-height: 768px;
        margin-top: 20px;
    }


}

/* for desktop and laptops */
@media screen and (min-width: 1024px) and (max-width: 1275px) {

    #main-carousel {
        height: 100%;
    }

    #footer .details img {
        max-width: 100% !important;
    }
}

@media screen and (min-width: 1275.1px) {

    #headline.contact-us {
        position: relative;
        max-width: 80%;
        margin: 20px auto 20px auto;
    }

    #header .main-menu {
        display: block;
    }

    #header .main-menu ul li a {
        font-size: 16px;
        font-weight: 600;
    }

    #main-carousel {
        height: 100vh;
        overflow: hidden;
        transition: margin-top 0.4s ease;
        max-height: calc(100vh - 60px);
    }

}

.img-cottage {
    cursor: pointer;
}

.img-cottage:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}