*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/* HERO SECTION */
.hero{
    position:relative;
    /* height:600px; */
    /* width:100%; */
    /* overflow:hidden; */
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* NAVBAR */
.navbar{
    position:absolute;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    z-index:10;
    background:transparent;
}

.logo img{
    height:60px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:14px;
}

.nav-links a:hover{
    color:#d4af37;
}

.nav-buttons{
    display:flex;
    gap:20px;
}

.login{
    color:white;
    text-decoration:none;
}

.book-btn{
    background:#c9a646;
    padding:10px 20px;
    color:white;
    text-decoration:none;
    margin-top: 0px;
}

/* TITLE BELOW IMAGE */
.title-section{
    text-align:center;
    padding:50px 0;
}

.title-section h1{
    font-size:40px;
    letter-spacing:2px;
}

/* BOOKING BAR */
.booking-bar{
    width:80%;
    margin:40px auto;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.booking-item{
    padding:0 15px;
    border-right:1px solid #ddd;
}

.booking-item:last-of-type{
    border-right:none;
}

.book-now{
    background:#c9a646;
    color:white;
    border:none;
    padding:15px 30px;
    font-weight:bold;
    cursor:pointer;
}
/* ABOUT */
.about{
    text-align:center;
    padding:80px 20px;
    background:#f9f9f9;
}
.about h2{
    font-size:32px;
    margin-bottom:20px;
}
.about p{
    max-width:700px;
    margin:auto;
    font-size:16px;
}


/* ROOMS */
.rooms{
    padding:80px 20px;
    text-align:center;
}
.room-container{
    display:flex;
    gap:30px;
    justify-content:center;
    margin-top:40px;
}
.room-card{
    width:300px;
}
.room-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}
.room-card h3{
    margin:15px 0 10px;
}


/* GALLERY */
.gallery{
    padding:80px 20px;
    background:#f4f4f4;
    text-align:center;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:30px;
}
.gallery-grid img{
    width:100%;
    height:200px;
    object-fit:cover;
}


/* FOOTER */
.footer{
    font-style: italic;
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
}

