/* CSS Document */
/*=========================================================
ROOMS PAGE CSS
KM Hotel & Banquet
=========================================================*/

/*=========================================================
PAGE BANNER
=========================================================*/

.room-banner{
    background:url('../images/inner_banner.jpeg') center center;
    background-size:cover;
    height:400px;
    position:relative;
}

.room-banner .overlay{
    width:100%;
    height:100%;
   /* background:rgba(8,43,103,.70);*/
    display:flex;
    justify-content:center;
    align-items:center;
}

.room-banner h1{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.room-banner p{
    color:#fff;
    font-size:16px;
}

.room-banner a{
    color:#C99A35;
    text-decoration:none;
}

.room-banner a:hover{
    color:#fff;
}

/*=========================================================
ROOM FILTER
=========================================================*/

.room-filter{
    background:#fff;
    border-bottom:1px solid #ececec;
}

.room-filter button{
    border:2px solid #082B67;
    background:#fff;
    color:#082B67;
    padding:10px 28px;
    border-radius:30px;
    margin:8px;
    font-weight:600;
    transition:.3s;
    cursor:pointer;
}

.room-filter button:hover,
.room-filter button.active{
    background:#C99A35;
    border-color:#C99A35;
    color:#fff;
}

/*=========================================================
ROOMS SECTION
=========================================================*/

.rooms-section{
    padding:80px 0;
    background:#f8f9fa;
}

.room-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.room-card:hover{
    transform:translateY(-8px);
}

.room-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.room-card:hover img{
    transform:scale(1.08);
}

.room-content{
    padding:30px;
}

.room-content h3{
    color:#082B67;
    font-size:29px;
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
}

.room-price{
    color:#C99A35;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.room-price span{
    font-size:15px;
    color:#888;
    font-weight:400;
}

.room-content p{
    color:#666;
    line-height:28px;
    margin-bottom:25px;
}

.room-content ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.room-content ul li{
    margin-bottom:12px;
    color:#555;
}

.room-content ul li i{
    width:25px;
    color:#C99A35;
}

.room-content .btn-gold{
    width:100%;
}

/*=========================================================
ROOM AMENITIES
=========================================================*/

.room-amenities{
    background:#fff;
    padding:80px 0;
}

.room-amenities .section-title{
    margin-bottom:50px;
}

.room-amenities .col-md-3{
    margin-bottom:30px;
    text-align:center;
    font-size:17px;
    color:#082B67;
    font-weight:500;
    padding:20px;
    border:1px solid #ececec;
    border-radius:8px;
    transition:.3s;
}

.room-amenities .col-md-3:hover{
    background:#082B67;
    color:#fff;
    transform:translateY(-5px);
}

/*=========================================================
WHY BOOK
=========================================================*/

.why-book{
    background:#f8f9fa;
    padding:80px 0;
}

.why-book i{
    width:90px;
    height:90px;
    line-height:90px;
    background:#082B67;
    color:#fff;
    border-radius:50%;
    font-size:34px;
    margin-bottom:20px;
    transition:.35s;
}

.why-book .col-lg-3:hover i{
    background:#C99A35;
}

.why-book h4{
    color:#082B67;
    font-family:'Playfair Display',serif;
    font-size:24px;
}

/*=========================================================
CTA
=========================================================*/

.cta-banner{
    background:url('../images/rooms/cta.jpg') center center;
    background-size:cover;
    position:relative;
}

.cta-banner .overlay{
    background:rgba(8,43,103,.78);
    padding:90px 0;
}

.cta-banner h2{
    color:#fff;
    font-size:46px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.cta-banner p{
    color:#fff;
    font-size:18px;
    margin-bottom:30px;
}

/*=========================================================
SECTION TITLE
=========================================================*/

.section-title{
    margin-bottom:45px;
}

.section-title h2{
    color:#082B67;
    font-size:42px;
    font-family:'Playfair Display',serif;
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:"";
    width:70px;
    height:3px;
    background:#C99A35;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
}

/*=========================================================
BUTTON
=========================================================*/

.btn-gold{
    background:#C99A35;
    color:#fff;
    padding:14px 35px;
    border-radius:35px;
    font-weight:600;
    transition:.35s;
    text-transform:uppercase;
    border:none;
}

.btn-gold:hover{
    background:#082B67;
    color:#fff;
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media (max-width:991px){

.room-banner{
    height:260px;
}

.room-banner h1{
    font-size:40px;
}

.room-card{
    margin-bottom:30px;
}

.room-card img{
    height:240px;
}

.room-content h3{
    font-size:26px;
}

.why-book .col-lg-3{
    margin-bottom:40px;
}

.cta-banner h2{
    font-size:34px;
}

}

@media (max-width:767px){

.room-banner{
    height:220px;
}

.room-banner h1{
    font-size:30px;
}

.room-filter button{
    width:100%;
    margin:6px 0;
}

.room-card img{
    height:220px;
}

.room-content{
    padding:20px;
}

.room-content h3{
    font-size:24px;
}

.room-price{
    font-size:24px;
}

.section-title h2{
    font-size:30px;
}

.room-amenities .col-md-3{
    margin-bottom:15px;
}

.cta-banner h2{
    font-size:28px;
}

.cta-banner p{
    font-size:16px;
}

}

