body{
    margin:0;
    font-family:sans-serif;
    scroll-behavior:smooth;
}

.navbar{
    position:fixed;
    width:100%;
    top:0;
    background:#4169E1;
    display:flex;
    justify-content:space-between;
    padding:15px 0px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.navbar a{
    margin:0 10px;
    text-decoration:none;
    color:#ffffff;
}

.hero{
    height:100vh;
    background:url('hotel image.jfif') center/cover no-repeat;
    display:flex;
    align-items:center;
    color:#fff;
    position:relative;
    margin-top:60px;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    margin-left:40px;
}

.section{
    padding:60px 20px;
    text-align:center;
}

.light{
    background:#f5f5f5;
}

.room-grid{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.room-card{
    width:300px;
    border:1px solid #ddd;
    padding:10px;
}

.room-card img{
    width:100%;
}

footer{
    background:#0d2b4c;
    color:#fff;
    padding:5px;
}

/* FLOATING */
.whatsapp{
    position:fixed;
    bottom:20px;
    left:20px;
    background:#25D366;
    padding:15px;
    border-radius:50%;
    color:#fff;
}

.call{
    position:fixed;
    bottom:80px;
    left:20px;
    background:#007bff;
    padding:15px;
    border-radius:50%;
    color:#fff;


.disclaimer{
    font-size:10px;
    color:#777;
    line-height:1.5;
}