/* GLOBAL */

body{
margin:0;
font-family:Arial, sans-serif;
background:#f5f5f5;
}

section{
padding:60px 8%;
max-width:1200px;
margin:auto;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 60px;
background:#1f3b4d;
color:white;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:22px;
font-weight:bold;
}

.navbar nav{
display:flex;
align-items:center;
gap:25px;
}

.navbar a{
color:white;
text-decoration:none;
font-size:16px;
margin-left:25px;
transition:0.3s;
font-weight:500;
}

.navbar a:hover{
color:#ffd34d;
}

.navbar a:hover{
color:#d4af37;
}

.book-btn{
background:#ffd34d;
color:black !important;
padding:10px 18px;
border-radius:6px;
font-weight:bold;
}


/* HERO SECTION */

.hero{
height:85vh;
background:url("images/hotel-building.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
display:flex;
align-items:center;
padding-left:80px;
color:white;
filter:contrast(105%) brightness(105%);
}

/* overlay */
.hero-text{
max-width:400px;
text-shadow:0 4px 12px rgba(0,0,0,0.7);
}


.hero-text{
position:relative;
z-index:2;
max-width:400px;
}

.hero-text h1{
font-size:60px;
font-weight:bold;
margin-bottom:10px;
}

.hero-text p{
font-size:22px;
margin-bottom:30px;
}
/* BUTTONS */

.hero-buttons{
margin-top:20px;
}

.btn{
background:#d4af37;
padding:12px 25px;
border-radius:6px;
color:black;
text-decoration:none;
margin-right:10px;
font-weight:600;
}

.btn.book{
background:white;
}

/* ROOMS GRID */

.rooms{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
gap:30px;
margin-top:30px;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}

/* ROOM CARD */

.room{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.3s;
display:flex;
flex-direction:column;
}

.room:hover{
transform:translateY(-6px);
}

.room img{
width:100%;
height:240px;
object-fit:cover;
display:block;
}
.room-info{
padding:20px;
}

.room-info h3{
margin-top:0;
}

.gallery-grid{
max-width:1200px;
margin:auto;
padding:40px;
display:grid;
grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
gap:25px;
}

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
transition:0.3s;
display:block;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

.gallery-item{
display:block;
overflow:hidden;
border-radius:12px;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
display:block;
border-radius:12px;
transition:0.4s ease;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* FOOTER */

footer{
background:#1f3b4d;
text-align:center;
padding:20px;
margin-top:40px;
}


/* MOBILE RESPONSIVE */

@media(max-width:768px){

.hero{
padding-left:30px;
height:70vh;
}

.hero-text h1{
font-size:36px;
}

.hero-text{
padding:40px;
}

.navbar{
padding:15px 20px;
flex-direction:column;
gap:10px;
}

}
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:50px;
font-weight:bold;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:999;
}
/* GALLERY SLIDER */

.gallery{
text-align:center;
padding:60px 8%;
}

.slider{
position:relative;
max-width:1000px;
margin:auto;
overflow:hidden;
}

.slide{
width:100%;
display:none;
border-radius:10px;
}

.slide.active{
display:block;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:50px;
font-weight:bold;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:999;
}

.whatsapp:hover{
background:#1ebe5d;
}
.back-home{
text-align:center;
margin:40px 0;
}

.back-home a{
background:#1f3b4d;
color:white;
padding:12px 24px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.back-home a:hover{
background:#163041;
}

.gallery-item img{
cursor:pointer;
}

.lb-data .lb-caption{
font-size:16px;
font-weight:500;
}

/* CONTACT PAGE UI IMPROVEMENT */

.contact-section{
padding:60px 20px;
background:#f5f7fa;
}

.contact-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.contact-card{
background:#ffffff;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact-card h3{
margin-bottom:10px;
color:#1f3c58;
}

.contact-card p{
color:#444;
line-height:1.6;
}

.contact-btn{
display:inline-block;
margin-top:10px;
padding:10px 18px;
background:#1f3c58;
color:white;
text-decoration:none;
border-radius:6px;
}

.contact-btn:hover{
background:#163046;
}

.contact-btn.green{
background:#2ecc71;
}

.contact-btn.green:hover{
background:#27ae60;
}
.map-section{
max-width:1100px;
margin:auto;
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.map-section iframe{
width:100%;
height:350px;
border:0;
border-radius:8px;
}