/* ===========================
   RG VIVEKAM RESIDENCY
   Luxury Hotel Theme
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#333;

}

/* ===========================
   Navbar
=========================== */

.navbar{

    background:#111;

    transition:.4s;

    padding:18px 0;

}

.navbar-brand{

    color:#d4af37 !important;

    font-size:32px;

    font-weight:700;

}

.nav-link{

    color:#fff !important;

    margin-left:18px;

    font-weight:500;

}

.nav-link:hover{

    color:#d4af37 !important;

}

.book-btn{

    padding:10px 25px;

    border-radius:30px;

    font-weight:600;

}

/* ===========================
 Hero
=========================== */

.hero{

    background:url("../images/hero.jpg") center center;

    background-size:cover;

    height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    text-align:center;

    color:#fff;

    z-index:100;

}

.hero h1{

    font-size:72px;

    font-weight:800;

    margin-bottom:15px;

}

.hero h3{

    color:#d4af37;

    font-size:38px;

    margin-bottom:15px;

}

.hero p{

    font-size:28px;

    margin-bottom:35px;

}

.hero .btn{

    padding:16px 40px;

    font-size:20px;

    border-radius:40px;

}

/* ===========================
 Sections
=========================== */

.section{

    padding:90px 0;

}

.section h2{

    text-align:center;

    margin-bottom:40px;

    font-weight:700;

    color:#111;

}

/* ===========================
 About
=========================== */

#about p{

    line-height:1.9;

    font-size:18px;

}

/* ===========================
 Rooms
=========================== */

.room-card{

    border:none;

    overflow:hidden;

    border-radius:12px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.room-card:hover{

    transform:translateY(-8px);

}

.room-card img{

    height:260px;

    width:100%;

    object-fit:cover;

}

.room-card .card-body{

    padding:25px;

}

.room-card h4{

    font-weight:700;

    margin-bottom:15px;

}

/* ===========================
 Facilities
=========================== */

.facility{

    padding:35px;

    border-radius:10px;

    background:#fff;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.facility:hover{

    background:#111;

    color:#fff;

}

.facility h1{

    font-size:50px;

    margin-bottom:15px;

}

.facility h5{

    font-weight:600;

}

/* ===========================
 Contact
=========================== */

.contact{

    padding:90px 0;

    background:#f8f8f8;

}

.contact h2{

    margin-bottom:30px;

}

.contact p{

    font-size:18px;

    line-height:1.8;

}

/* ===========================
 Footer
=========================== */

footer{

    background:#111;

    color:#fff;

    padding:45px;

}

footer h3{

    color:#d4af37;

    margin-bottom:15px;

}

/* ===========================
 WhatsApp
=========================== */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    padding:14px 22px;

    border-radius:50px;

    font-weight:700;

    box-shadow:0 5px 20px rgba(0,0,0,.30);

}

.whatsapp:hover{

    color:#fff;

    background:#128C7E;

}

/* ===========================
 Responsive
=========================== */

@media(max-width:992px){

.hero h1{

font-size:48px;

}

.hero h3{

font-size:28px;

}

.hero p{

font-size:22px;

}

}

@media(max-width:768px){

.navbar-brand{

font-size:22px;

}

.hero{

height:85vh;

}

.hero h1{

font-size:38px;

}

.hero h3{

font-size:22px;

}

.hero p{

font-size:18px;

}

.section{

padding:60px 0;

}

.room-card{

margin-bottom:30px;

}

.facility{

margin-bottom:25px;

}

.whatsapp{

right:15px;

bottom:15px;

padding:12px 18px;

}

}