/** hotel hero **/
.hero-hotels {
    position: relative;
    height: 45vh
}

.hero-hotels::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 992px) {
    .hero-hotels {
        position: relative;
        height: 85vh;
    }
}

.hero-hotels-grid {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-hotels::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.8;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0
}

.hero-hotels-wrap {
    color: white;
    text-align: center;
    z-index: 2;
}

.hero-hotels-wrap span {
    text-transform: uppercase;
    display: block;
    margin-bottom: 3rem;
    font-size: 3.2rem;
    letter-spacing: 0.3rem;
}

.hero-hotels-wrap h1 {
    margin: 0;
    padding: 0;
    font-size: 4rem;
    font-family: "Baskervville", serif !important;
}

.hero-hotels .houm-scroll-down {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    max-width: 30px;

    @media (min-width:992px) {
        max-width: 50px;
        width: 100%;
        height: 50px;
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(100px);
    }
}

.houm-scroll-down #wheel {
    animation: scroll ease 1.5s infinite;
}

/** hero description **/

.hotel-description-grid {
    display: grid;
    gap: 6rem;
}

@media (min-width: 992px) {
    .hotel-description-grid {
        display: grid;
        grid-template-columns: 1.3fr 2fr;
        gap: 6rem;
    }
}

.hotel-description-img {
    height: 400px;
}

.hotel-description-img {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    background-position: center center;
    position: relative;
}

.hotel-sostenibility-img {
    background-size: contain;
}

.hotel-description-img .minor-image {
    display: none;
}

@media (min-width: 992px) {
    .hotel-description-img {
        height: 60vh;
    }

    .hotel-description-img .minor-image {
        display: block;
        position: absolute;
        bottom: -2rem;
        right: -2rem;
        width: 350px;
        height: 250px;
        object-fit: cover;

    }

    .hotel-description-item h2 {
        margin-bottom: 10rem !important;
    }
}

.hotel-description-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/**  features hotel**/
.hotel-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
}

.hotel-features .btn-default {
    text-decoration: none;
    color: black;
    font-weight: 500;
    padding: 1.5rem 30px;
    text-align: center;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-features .btn-default:hover {
    text-decoration: none;
    color: white;
    opacity: 1;
}

.hotel-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    transition: all 0.3s ease-in-out;

}

.hotel-features-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 30px;
}

.hotel-features-item:not(.hotel-features-img) {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

}

.hotel-features-item:not(.hotel-features-img)::before {
    content: '';
    display: block;
    background-color: white;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 1;
}


.hotel-features-img {
    display: none;
    transition: all 0.3s ease-in-out;
}

.subpage-features .hotel-features-img {
    display: flex;
    transition: all 0.3s ease-in-out;
    border: 0;
}

.hotel-features-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 0;
}

.subpage-features .hotel-features-item {
    align-items: center;
    text-align: center;
}

.hotel-features-img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: opacity 0.3s ease-in-out;
}

.hotel-features-grid:hover .hotel-features-img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.hotel-features-img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: opacity 0.3s ease-in-out;
}

.hotel-features-grid:hover .hotel-features-img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.hotel-features-grid:hover .btn-default {
    text-decoration: none;
    color: white;
    opacity: 1;
    background-color: #abb98e;
}

.hotel-features-grid .hotel-description-img {
    border: 0;
}

.hotel-features-grid:hover .hotel-features-img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.hotel-features-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.hotel-features-grid:hover .hotel-features-item:not(.hotel-features-img) {
    background-image: none;
    background-color: #efefefbc;
}

@media (min-width: 992px) {
    .hotel-features-item {

        padding: 3rem 5% 3rem 20%;
    }

    .hotel-features {
        gap: 0
    }

    .hotel-features-grid:nth-child(even) .hotel-features-item.hotel-features-item:not(.hotel-features-img) {
        order: 2;
        padding: 3rem 20% 3rem 5%;

    }

    .hotel-features-item:not(.hotel-features-img)::before {
        display: none;
    }

    .hotel-features-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 3rem 5% 3rem 20%;
    }

    .subpage-features .hotel-features-item {
        align-items: center;
        text-align: center;
    }

    .hotel-features .btn-default {
        width: fit-content;
        height: fit-content;
        display: block;
        max-width: none;

    }


    .hotel-features-img::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        transition: opacity 0.3s ease-in-out;
    }

    .hotel-features-grid:hover .hotel-features-img::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.4;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
    }

    .hotel-features-item:not(.hotel-features-img) {
        background-image: none;
    }

    .hotel-features-grid:hover .hotel-features-item:not(.hotel-features-img) {
        background-image: none;
        background-color: #efefefbc;
    }

    .hotel-features-img {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 3rem;
    }

    .hotel-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hotel-features-img {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 40vh;
}

.hotel-features-grid:nth-child(even) .hotel-features-item.hotel-features-item:not(.hotel-features-img) {
    order: 2;

}


.subpage-features .hotel-features-grid:nth-child(even) .hotel-features-item.hotel-features-item:not(.hotel-features-img) {
    order: unset;

}

@media (min-width: 992px) {
    .subpage-features .hotel-features-grid:nth-child(even) .hotel-features-item.hotel-features-item:not(.hotel-features-img) {
        order: 2;

    }
}


.hotel-features-item h2::after {
    display: none;
}

.hotel-features-item h2 {
    margin-bottom: 3rem !important;
}

.wrap-cammera {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 3;
    text-transform: uppercase;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.hotel-features-grid:hover .wrap-cammera {
    opacity: 1;
}

/** carousel testimonials **/
.hotel-testimonials {
    background-repeat: no-repeat;
    background-size: cover;
}

.hotel-testimonials .carousel {
    width: 100% !important;
}

.hotel-testimonials .carousel-inner {
    background-color: #efefef;
}

.hotel-testimonials .carousel-item {
    padding: 2% 10%;
    background-color: #efefef;
}

.hotel-testimonials .carousel-control-next-icon,
.hotel-testimonials .carousel-control-prev-icon {
    filter: brightness(0) contrast(1);
}

.wrap-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.wrap-testimonial p {
    margin: 0;
}

@media (min-width: 992px) {
    .hotel-testimonials .carousel-item {
        height: 60vh !important;
    }
}

.hotel-testimonials .carousel-indicators button[data-bs-target] {
    background-color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    border: 1px solid #a7b2a0;
}

.hotel-testimonials .carousel-indicators button[data-bs-target].active {
    background-color: #a7b2a0;
    border: 1px solid #a7b2a0;
}


.hotel-testimonials .carousel-indicators {
    bottom: 2rem;
}

/* faq section */
.hotel-faq .accordion-header {
    border-left: 4px solid #abb98e;

}

.hotel-faq .accordion-button {
    padding: 20px;
    font-size: 2rem;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button {
    border-radius: 0 !important;
    border-bottom: 1px solid #efefef;
}

.accordion-item {
    border: 0;
    border-top: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: black;
    border: 0;
    border-bottom: 1px solid #efefef;
    border-top: 0;
}

@media (min-width: 992px) {
    .container-accordion {
        padding: 0 100px;
    }

}

.accordion-button::after {
    width: 20px;
    height: 20px;
    background-position: center;
}

.accordion-button {
    box-shadow: none;
    font-weight: 500;
    border-bottom: 1px solid #efefef;

}

.accordion-button:focus {
    box-shadow: 0 0 0.25rem #abb98e;
}

.accordion-body {
    padding: 2rem 1.25rem;
    border: 0;
}




/* gallery modal subpage hotel */
.gallery-subhotel .carousel-item {
    height: auto !important;
    max-height: 100%;
}

.gallery-subhotel .carousel-item img {
    height: 650px !important;
    object-fit: cover;
    width: 100%;
}

.modal-content-gallery {
    background-color: transparent !important;
    border: 0;
    border-radius: 0;
}

.modal-footer,
.modal-header {
    border: 0;
}

.modal-content-gallery .carousel-caption {
    position: relative;
    top: 0.5rem;
    text-align: center;
    left: 0;
    right: 0;
}

.modal-content-gallery .carousel-caption p {
    margin: 0;
}

.btn-close-gallery {
    filter: invert(1);
    opacity: 1;
}

.modal-subpage-detail,
.modal-dialog:has(.modal-content-gallery) {
    max-width: 991px;
}

.modal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-subpage-detail .carousel-item {
    height: 650px !important;
}

.modal-subpage-detail .carousel-item img {
    height: 650px !important;
    object-fit: cover;
    width: 100%;
}

.modal-body-item {
    padding: 0 2rem;
}

.modal-body-item .carousel-control-next-icon,
.modal-body-item .carousel-control-prev-icon,
.gallery-subhotel .carousel-control-next-icon,
.gallery-subhotel .carousel-control-prev-icon {
    width: 4rem !important;
    height: 4rem !important;
    filter: invert(1);
    background-color: black;
    padding: 1rem;
    border-radius: 1rem;
    background-size: 3rem;
}

/* subpage owl carousel */
.subpage-look-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .subpage-look-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: grid;
    position: relative;
}

.owl-dots {
    display: none;
}

.owl-carousel .owl-item img {
    height: 300px;
    object-fit: cover;
}

.owl-carousel h2 {
    margin-bottom: 2rem !important;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 126px;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.owl-nav span {
    font-size: 40px;
    width: 20px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.674);
    padding: 2rem 1rem !important;
    display: flex;
    align-items: center;
}

.breadcrumb-wrap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.breadcrumb-wrap a {
    text-decoration-color: rgb(184, 183, 183);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #abb98e;
}

.breadcrumb-back p>a {
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    padding-left: 20px;
    background-image: url('../img/arrow-left.svg');
    background-repeat: no-repeat;
    background-position: left center;
    display: flex;
    align-items: center;
    margin: 0;
}