*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
margin:0;
font-family:Arial, sans-serif;
background:#f5f5f5;
overflow-x:hidden;
padding-bottom:80px;
}


section{
padding:60px 20px;
max-width:1200px;
margin:auto;
}

/* NAVBAR */
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:white;
position:relative;
z-index:1001;
}

.menu{
display:flex;
align-items:center;
gap:25px;
z-index:1000;
}




.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 20px;
background:#1f3b4d;
color:white;
box-shadow:0 4px 12px rgba(0,0,0,0.2);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:22px;
font-weight:bold;
}


.nav-right{
display:flex;
align-items:center;
gap:20px;
}

.navbar a{
color:white;
text-decoration:none;
font-size:16px;
margin-left:25px;
transition:0.3s;
font-weight:500;
}


.navbar a:hover{
color:#d4af37;
}

.book-btn{
background:#ffd34d;
color:black !important;
padding:10px 18px;
border-radius:6px;
font-weight:bold;
}


/* HERO SECTION */





.light-hero p {
    background: rgba(255,255,255,0.7);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #000;

    background: rgba(255, 255, 255, 0.35);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);

    padding: 20px 30px;
    border-radius: 12px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.15);

    display: inline-block;
}
.hero-content p {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 14px;
    border-radius: 6px;

    display: inline-block;
    margin-top: 12px;
}

/* FIXED SEPARATE BLOCK */
.hero-content {
    z-index: 2;
    max-width: 800px;
    margin: auto;
    text-align: center;
}



.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}



/* BUTTONS */

.hero-buttons a {
    display: block;
    width: 300px;
    margin: 12px auto;
    padding: 14px;

    background: linear-gradient(135deg, #d4af37, #c29d2e);
    color: #000;
    font-weight: 600;

    border-radius: 8px;
    text-align: center;

    transition: all 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn{
background:#d4af37;
padding:14px 28px;
border-radius:10px;
color:black;
text-decoration:none;
font-weight:600;
display:inline-block;
min-width:170px;
text-align:center;
transition:0.3s ease;
}

.btn.book{
background:#ffffff;
color:#000;
border:2px solid #d4af37;
border-radius:10px;
}
.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 10px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #b8962e;
}

/* 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 20px;
display:grid;
grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
gap:20px;
}

.gallery-item {
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
width:100%;
height:260px;
object-fit:cover;
transition:0.4s ease;
display:block;
}

/* HOVER ZOOM EFFECT */
.gallery-item:hover img {
transform:scale(1.08);
}

/* OVERLAY EFFECT */
.gallery-item::after {
content:"View Image";
position:absolute;
bottom:0;
left:0;
width:100%;
background:rgba(0,0,0,0.6);
color:#fff;
text-align:center;
padding:10px;
opacity:0;
transition:0.3s;
font-size:14px;
}

.gallery-item:hover::after {
opacity:1;
}

/* FOOTER */

footer{
background:#1f3b4d;
text-align:center;
padding:20px;
margin-top:40px;
}

/* ============================= */
/* PREMIUM PAGE CONTENT SECTION */
/* ============================= */

.content {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    line-height: 1.7;
}

.content h2 {
    margin-top: 30px;
    font-size: 26px;
    color: #1f3b4d;
}

.content p {
    color: #444;
    font-size: 17px;
}

.content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.content li {
    margin-bottom: 8px;
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
}

.cta h2 {
    margin-bottom: 20px;
}

/* ============================= */
/* HERO FIX (CLEAN VERSION) */
/* ============================= */

/* REMOVE duplicate hero above if exists */

.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
                url('images/hotel-building-hd.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: none;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 18px;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.hero-text h1{
font-size:36px;
}

.hero-text p{
font-size:18px;
}

.navbar{
flex-direction:row;
padding:15px;
align-items:center;
}

.menu-toggle{
display:block;
}

.nav-right{
flex-direction:column;
align-items:flex-end;
width:100%;
}


.menu a{
font-size:20px;
margin:15px 0;
}

.hero{
padding:0 15px;
min-height:90vh;
}

.btn{
width:180px;
font-size:16px;
}

/* MOBILE HEADER FIX */

.menu{
padding-top:100px;
}

.book-btn{
display:block;
margin-top:20px;
width:160px;
text-align:center;
}
.logo{
font-size:18px;
}
}






/* 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: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;
}



/* FIXED BOOK NOW BUTTON */



.book-now-fixed:hover{
background:#e5b932;
box-shadow:0 6px 18px rgba(0,0,0,0.35);
transform:translateY(-2px);
}
.about{
max-width:900px;
margin:auto;
padding:60px 8%;
text-align:center;
}

.about h2{
margin-bottom:20px;
color:#1f3b4d;
}

.about p{
font-size:18px;
line-height:1.6;
color:#444;
}

/* MOBILE BOOKING BAR */

.mobile-book-bar{
display:none;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,0.25);
}

@media(max-width:768px){

.mobile-book-bar{
display:flex;
position:fixed;
bottom:0;
left:0;
width:100%;
z-index:9999;
}
 

.call-btn{
flex:1;
background:#1f3b4d;
color:white;
text-align:center;
padding:14px;
text-decoration:none;
font-weight:bold;
}

.whatsapp-btn{
flex:1;
background:#25D366;
color:white;
text-align:center;
padding:14px;
text-decoration:none;
font-weight:bold;
}

}
@media(max-width:768px){
.book-now-fixed{
bottom:180px;
}
}

/* HERO BOOKING BAR */

.booking-bar{
display:flex;
gap:10px;
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.2);
margin-top:20px;
flex-wrap:wrap;
justify-content:center;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.booking-bar input,
.booking-bar select{
padding:10px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.booking-bar > button{
background:#d4af37;
border:none;
padding:10px 18px;
border-radius:6px;
font-weight:bold;
cursor:pointer;
color:black;
}

.booking-bar button:hover{
background:#c49c2f;
}

.counter-group{
display:flex;
gap:10px;
align-items:center;
flex-wrap:wrap;
}

.counter{
display:flex;
align-items:center;
gap:5px;
background:white;
padding:8px 10px;
border-radius:6px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.counter button{
background:#1f3b4d;
color:#fff;
border:none;
width:32px;
height:32px;
border-radius:6px;
cursor:pointer;
font-weight:bold;
font-size:16px;
display:flex;
align-items:center;
justify-content:center;
}

.counter input{
width:60px;
text-align:center;
border:none;
font-weight:bold;
background:transparent;
}

.room-note{
font-size:13px;
color:#555;
margin-top:8px;
margin-bottom:10px;
text-align:center;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
padding: 20px;
}

.gallery img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
}

/* ============================= */
/* NEW UI IMPROVEMENTS (SAFE) */
/* ============================= */

/* HERO OVERLAY */
.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
}

/* CLEAN HERO TEXT */
.hero-content h1{
color:#fff !important;
background:none !important;
box-shadow:none !important;
}

/* BUTTON UPGRADE */
.hero-buttons a{
border-radius:30px !important;
background:#f4b400 !important;
}

/* NAVBAR MODERN LOOK */
.navbar{
background:#0f2d3a !important;
box-shadow:0 2px 10px rgba(0,0,0,0.1) !important;
}

/* ROOM CARD ENHANCEMENT */
.room{
border-radius:16px !important;
box-shadow:0 8px 25px rgba(0,0,0,0.12) !important;
}

/* GALLERY IMPROVE */
.gallery img:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.room-note {
  color: #e63946;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.room .btn {
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 18px;
  display: inline-block;
  transition: 0.3s;
}

.room .btn:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
/* HAMBURGER FIX */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-right{
width:100%;
}

.menu a{
font-size:20px;
margin:15px 0;
}

}

@media(max-width:768px){

    .hero-content h1{
font-size:28px;
line-height:1.3;
padding:10px;
}

.hero-content p{
font-size:14px;
padding:6px 10px;
}

.hero-buttons{
flex-direction:column;
gap:10px;
}
.hero-content h1{
font-size:26px;
line-height:1.2;
padding:8px;
}

.hero-content p{
font-size:13px;
padding:5px 10px;
}

.hero-buttons{
flex-direction:column;
gap:10px;
}

.hero-buttons .btn{
width:90%;
margin:0 auto;
font-size:14px;
padding:12px;
}
    .menu.active ~ .hero,
.menu.active ~ section {
display:none;
}
    
.menu{
display:none;
flex-direction:column;
background:#1f3b4d;
position:absolute;
top:60px;
left:0;
width:100%;
padding:20px 0;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
gap:10px;
}

.menu.active{
display:flex;
}

.menu a{
font-size:16px;
padding:10px;
margin:5px 0;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.menu .btn{
margin-top:15px;
}

    
}
.whatsapp-sticky{
position:fixed;
bottom:15px;
left:50%;
transform:translateX(-50%);
width:90%;
z-index:3000;
}

.whatsapp-sticky a{
display:block;
background:#25D366;
color:#fff;
text-align:center;
padding:16px;
font-size:18px;
border-radius:40px;
font-weight:700;
letter-spacing:0.5px;
text-decoration:none;
box-shadow:0 6px 20px rgba(0,0,0,0.35);
}
@media(max-width:768px){
.hero-buttons .btn:last-child{
display:none;
}
}
.back-home{
text-align:center;
margin:40px 0;
}

.back-home a{
display:inline-block;
background:#1f3b4d;
color:white;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.back-home a:hover{
background:#163041;
transform:translateY(-2px);
}
@media(max-width:768px){
.back-home a{
width:80%;
font-size:16px;
padding:16px;
}
}

