body{
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
    background:#f5f5f5;
    overflow-x:hidden;
}

html{
    margin:0;
    padding:0;
}

header{
    background:#0d6efd;
    color:white;
    text-align:center;
    padding:30px 15px;
}

header h1{
    margin:0;
    font-size:45px;
}

header p{
    font-size:22px;
}

nav{
    background:#222;
    text-align:center;
    padding:18px 10px;
    margin:0;
}

nav a{
    color:white;
    margin:10px;
    text-decoration:none;
    font-size:20px;
    display:inline-block;
}

/* FIX EMPTY SPACE */

.hero{
    width:100%;
    min-height:100vh;
    margin:0;
    padding:0;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    flex-direction:column;

    color:white;

    background:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url('hotelfirst.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    padding:20px;
}

.hero h2{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:24px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    margin-top:25px;
    background:#25D366;
    color:white;
    padding:15px 30px;
    border-radius:8px;
    text-decoration:none;
    font-size:22px;
    font-weight:bold;
}

.rooms,.places,.gallery,.contact{
    padding:60px 20px;
    text-align:center;
}

.rooms h2,
.places h2,
.gallery h2,
.contact h2{
    font-size:45px;
    margin-bottom:40px;
}

.room,.place{
    width:320px;
    background:white;
    display:inline-block;
    margin:15px;
    padding:15px;
    border-radius:15px;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
    vertical-align:top;
}

.room img,
.place img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:12px;
}

.gallery img{
    width:250px;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    margin:10px;
}

iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:15px;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
    font-size:18px;
}

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:20px;
    right:20px;
    z-index:999;
}

.whatsapp-float img{
    width:100%;
    height:100%;
}

@media(max-width:768px){

header h1{
    font-size:28px;
}

header p{
    font-size:18px;
}

.hero h2{
    font-size:38px;
}

.hero p{
    font-size:18px;
}

nav a{
    font-size:17px;
    margin:8px;
}

.room,.place{
    width:90%;
}

.gallery img{
    width:90%;
    height:auto;
}

}