/*
Theme Name: vrtheme
Author: Miara
Author URI: miarasatu@gmail.com
Description: theme pour le projet de visite virtuelle
Version: 1.0
Text Domain: vrtheme
*/

body {
    font-family: 'Montserrat', sans-serif;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
hr {
    color: #999999;
}
a {
    text-decoration: none;
    color: inherit;   
}

/* ELEMENTOR HOTEL LIST */
.hotel-list .eael-grid-post-holder {
    overflow: hidden;
    position: relative;
}

.hotel-list .eael-entry-wrapper {
    width: 100%;
    background-color: #272727d2;
    position: absolute;
    bottom: 0;
}

/* END OF ELEMENTOR HOTEL LIST */

/* CHAMBRE LIST */
.chambre-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.chambre-item {
    width: 86%;
    margin: 1rem 0;
    background-color: #f1f1f1;
    border-radius: .4rem;
    overflow: hidden;
    box-shadow: 0 0 .3rem #c9c9c9;
    box-sizing: border-box;
    transition: box-shadow .3s ease-in-out;
}

.chambre-item:hover {
    box-shadow: 0 0 .9rem #c9c9c9;
}

.chambre-item>a {
    display: block;
    width: 100%;
}

.chambre-list .chambre-item .chambre-img {
    width: 100%;
    aspect-ratio: 1.77;
    object-fit: cover;
}

.chambre-list .chambre-item .chambre-details {
    padding: 0 1rem;
}

.chambre-list .chambre-item .chambre-name {
    font-size: 1rem;
    font-weight: bold;
    margin: .5rem 0;
}

.chambre-list .chambre-item .chambre-description {
    font-size: .9rem;
    color: #717171;
}

.chambre-list .chambre-item .chambre-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: #505050;
}

@media (min-width: 768px) {
    .chambre-list {
        justify-content: start;
    }

    .chambre-item {
        width: 48%;
        margin: 1rem 1%;
    }
}

@media (min-width: 992px) {
    .chambre-item {
        width: 32%;
        margin: 1rem .5%;
    }
}

/* END OF CHAMBRE LIST */

/* BEGIN OF VISIT ITEM PAGE */
#visit-item-nav {
    background-color: #f4f4f4;
    box-shadow: 0 0 .3rem #c9c9c9;
    position: sticky;
    top: 0px;
    z-index: 2;
}

#visit-item-nav #chambres-collapse {
    position: absolute;
    background-color: #000000e8;
    box-shadow: 0 .2rem .5rem;
    width: 100%;
}

#visit-item-nav #mobileMenu {
    z-index: 10000;
}

#visit-item-nav #visit-main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#visit-item-nav #visit-main-nav .chambre-name {
    font-size: 1rem;
    font-weight: bold;
    padding: .3rem 0;
}

#visit-item-nav .hotel-logo {
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
}

#visit-item-nav .logo-container {
    position: relative;
}

#visit-item-nav #hotel-logo-info {
    position: absolute;
    top: 0;
    left: 80%;
    background-color: #000000ec;
    color: white;
    border-radius: .4rem;
    box-shadow: .2rem .2rem .3rem #c9c9c9;
}

#visit-item-nav #hotel-logo-info > li {
    text-wrap: nowrap;
    padding: .5rem 1rem;
    box-sizing: border-box;
}

.chambre-nav {
    position: relative;
    padding: .5rem;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.chambre-nav .item, .mobile-chambre-nav .item {
    background-color: #000;
    color: white;
    padding-right: 1rem;
    margin: 1rem .7rem;
    border-radius: .4rem;
    box-shadow: 0 0 .3rem rgb(53, 53, 53);
    overflow: hidden;
    box-sizing: border-box;
}
.chambre-nav .item-container , .mobile-chambre-nav .item > a{
    display: flex;
    align-items: center;
}

.chambre-nav .item .item-img, .mobile-chambre-nav .item .item-img {
    width: 4rem;
    aspect-ratio: 1.77;
    margin-right: .5rem;
}

.chambre-nav .chambre-name, .mobile-chambre-nav .chambre-name {
    font-size: 1rem;
    font-weight: normal;
}

.chambre-nav .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem !important;
    color: rgb(172, 172, 172) !important;
    font-weight: bold !important;
}

.chambre-nav .owl-nav .owl-prev {
    left: .5rem;
}


.chambre-nav .owl-nav .owl-next {
    right: .5rem;
}

#all-chambre-text-button {
    text-wrap: nowrap;
}
/* END OF VISIT ITEM PAGE */

/* BEGIN OF HOTEL ITEM PAGE [NAV] */

#hotel-item-nav {
    background-color: #f4f4f4;
    box-shadow: 0 0 .3rem #c9c9c9;
    position: sticky;
    top: 0px;
}

#hotel-item-nav #chambre-carousel {
    background-color: #000000d2;
}

#hotel-item-nav #hotel-main-nav {
    display: flex;
    align-items: center;
}

#hotel-item-nav #hotel-main-nav .hotel-name {
    font-size: 1rem;
    font-weight: bold;
    padding: .3rem 0;
}

#hotel-item-nav .hotel-logo {
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
}

#hotel-item-nav .logo-container {
    position: relative;
}

#hotel-item-nav #hotel-logo-info {
    position: absolute;
    top: 0;
    left: 80%;
    background-color: #000000ec;
    color: white;
    border-radius: .4rem;
    box-shadow: .2rem .2rem .3rem #c9c9c9;
}

#hotel-item-nav #hotel-logo-info > li {
    text-wrap: nowrap;
    padding: .5rem 1rem;
    box-sizing: border-box;
}
/* END OF HOTEL ITEM PAGE [NAV] */

/* BEGIN OF VR CHAMBRE BLOCK */
.vr-chambre-block {
    width: 100%;
    transform: translateY(25%);
}

@media (min-width: 768px) {
    .vr-chambre-block {
        width: 75%;
    }
}

@media (min-width: 992px) {
    .vr-chambre-block {
        transform: translateY(10%);
        width: 55%;
    }
}
/* END OF VR CHAMBRE BLOCK */