*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

body{
background:#f5f7fa;
color:#333;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:linear-gradient(135deg,#1e3c72,#2a5298);
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
}

.logo{
color:#ffd700;
font-size:24px;
font-weight:bold;
}

nav{
display:flex;
align-items:center;
gap:20px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:600;
}

nav a:hover{
color:#ffd700;
}

.nav-btn{
background:#ffd700;
color:#000 !important;
padding:10px 18px;
border-radius:5px;
font-weight:bold;
}

.menu-toggle{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(
rgba(0,0,0,0.55),
rgba(0,0,0,0.55)
),
url("room image.jpg")center/cover no-repeat;

background-size:cover;
background-position:center;
background-repeat:no-repeat;

display:flex;
justify-content:center;
align-items:center;
text-align:center;

margin-top:70px;
}


.overlay{
background:none;
padding:20px;
max-width:800px;
width:90%;
color:#fff;
}

.overlay h1{
font-size:55px;
color:#fff;
text-shadow:
2px 2px 8px rgba(0,0,0,0.8);
margin-bottom:15px;
}

.overlay h2{
font-size:30px;
color:#ffd700;
text-shadow:
2px 2px 8px rgba(0,0,0,0.8);
margin-bottom:15px;
}

.overlay p{
font-size:20px;
line-height:1.8;
text-shadow:
2px 2px 8px rgba(0,0,0,0.8);
margin-bottom:25px;
}


.hero-btn{
display:inline-block;
padding:14px 30px;
background:#ffd700;
color:#000;
font-weight:bold;
text-decoration:none;
border-radius:30px;
transition:0.3s;
}

.hero-btn:hover{
transform:scale(1.05);
}



/* SECTIONS */

.about,
.facilities,
.contact{
padding:80px 10%;
text-align:center;
}

.about{
background:#fff;
}

.facilities{
background:#f0f4f8;
}

.contact{
background:#fff;
}

.about h2,
.facilities h2,
.contact h2{
color:#1e3c72;
font-size:36px;
margin-bottom:30px;
}

.about h2::after,
.facilities h2::after,
.contact h2::after{
content:"";
display:block;
width:80px;
height:4px;
background:#ffd700;
margin:10px auto;
border-radius:10px;
}

.about p{
max-width:900px;
margin:15px auto;
line-height:1.8;
}

/* FACILITIES */

.facility-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:12px;
border-top:5px solid #2a5298;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.card i{
font-size:40px;
color:#2a5298;
margin-bottom:15px;
}

.card h3{
color:#2a5298;
}

/* CONTACT */

.contact-box{
max-width:700px;
margin:auto;
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact-box p{
margin:20px 0;
line-height:1.8;
font-size:18px;
}

.contact-box i{
color:#2a5298;
margin-right:10px;
font-size:20px;
}

.contact-box a{
text-decoration:none;
color:#2a5298;
font-weight:bold;
}

/* FOOTER */

footer{
background:#1e3c72;
color:#fff;
text-align:center;
padding:20px;
}

/* FLOATING CALL */

.floating-call{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#28a745;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
}

@media(max-width:768px){

header{
padding:15px 20px;
}

.menu-toggle{
display:block;
}

nav{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:#1e3c72;
flex-direction:column;
padding:20px;
}

nav.active{
display:flex;
}

.logo{
font-size:16px;
}

.hero{
height:70vh;
}

.overlay{
padding:20px;
}

.overlay h1{
font-size:32px;
}

.overlay h2{
font-size:20px;
}

.overlay p{
font-size:15px;
}
.hero{
    height:80vh;
}
.about,
.facilities,
.contact{
padding:60px 20px;
}

.about p{
font-size:16px;
line-height:1.8;
width:100%;
max-width:100%;
}

.contact-box{
width:100%;
padding:20px;
}

.facility-container{
grid-template-columns:1fr;
}

}