/* Start custom CSS *//* HERO */

.room-type-hero{
    height:520px;
    background-size:cover;
    background-position:center 60%;
    display:flex;
    align-items:center;
    margin-bottom:80px;
    position:relative;
}

.room-type-hero-inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 30px;
    color:#fff;
    z-index:2;
}

.room-type-hero-inner span{
    letter-spacing:8px;
    font-size:13px;
    color:#fff;
}

.room-type-hero-inner h1{
    font-size:72px;
    font-weight:400;
    color:#fff;
    margin-top:20px;
}

/* GRID */

.custom-room-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto 100px;
}

/* FLIP */

.custom-room-flip{
    perspective:1200px;
    height:520px;
}

.custom-room-flip-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform .8s ease;
    transform-style:preserve-3d;
}

.custom-room-flip:hover .custom-room-flip-inner{
    transform:rotateY(180deg);
}

/* FRONT */

.custom-room-front,
.custom-room-card-back{
    position:absolute;
    inset:0;
    backface-visibility:hidden;
}

.custom-room-front{
    background-size:cover;
    background-position:center;
    overflow:hidden;
    text-decoration:none;
}

.custom-room-front::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.05),
        rgba(0,0,0,.55)
    );
    z-index:1;
}

.custom-room-front h3{
    position:absolute;
    left:35px;
    bottom:35px;
    z-index:2;
    color:#fff;
    font-size:34px;
    font-weight:400;
    line-height:1.2;
}

/* BOOK */

.custom-room-book{
    position:absolute;
    top:30px;
    left:30px;
    z-index:2;
    color:#fff;
    border:1px solid rgba(255,255,255,.6);
    padding:12px 8px;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    letter-spacing:4px;
    font-size:12px;
}

/* BACK */

.custom-room-card-back{
    background:#f5f0ea;
    transform:rotateY(180deg);
    padding:50px 45px;
    box-sizing:border-box;
}

.custom-room-card-back h3{
    font-size:28px;
    font-weight:400;
    margin-bottom:25px;
}

.custom-room-card-back p{
    color:#777;
    line-height:1.8;
    margin-bottom:25px;
}

.custom-room-meta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px 25px;
    margin-bottom:35px;
}

.custom-room-meta span{
    color:#777;
    font-size:15px;
}

.custom-room-detail{
    color:#777;
    text-decoration:none;
    border-bottom:1px solid #999;
    padding-bottom:5px;
}
.custom-room-meta-dynamic{
    display:block;
    color:#777;
    margin-bottom:30px;
}

.custom-room-meta-dynamic h1,
.custom-room-meta-dynamic h2,
.custom-room-meta-dynamic h3,
.custom-room-meta-dynamic h4,
.custom-room-meta-dynamic p,
.custom-room-meta-dynamic li{
    color:#777;
    font-size:16px;
    line-height:1.6;
}

.custom-room-meta-dynamic ul{
    margin:10px 0 20px 20px;
    padding:0;
}
.custom-room-meta-dynamic ul{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px 40px;
    list-style:none;
    padding:0;
    margin:25px 0;
}

.custom-room-meta-dynamic li{
    display:flex;
    align-items:center;
    gap:14px;
    color:#777;
    font-size:15px;
}

.custom-room-meta-dynamic li i{
    color:#b9925e;
    font-size:22px;
    min-width:24px;
}

/* MOBILE */

@media(max-width:900px){

    .room-type-hero{
        height:420px;
    }

    .room-type-hero-inner h1{
        font-size:42px;
    }

    .custom-room-grid{
        grid-template-columns:1fr;
        padding:0 20px;
    }
}/* End custom CSS */