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

body{
background:#0f0f0f;
color:#fff;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.85);
backdrop-filter:blur(12px);
z-index:999;
}

.logo img{
height:60px;
}

nav{
display:flex;
gap:35px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#d9d9d9;
}

.btn{
background:#fff;
color:#000;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#d9d9d9;
}

.hero{
position:relative;
height:100vh;
background:url("images/reception.jpg") center center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.60);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.hero h4{
letter-spacing:4px;
margin-bottom:15px;
color:#ddd;
}

.hero h1{
font-size:65px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
color:#eee;
}

.hero-btn{
background:#fff;
color:#000;
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.hero-btn:hover{
background:#d9d9d9;
}

section{
padding:110px 8%;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about img{
width:100%;
border-radius:20px;
}

.about h2,
#services h2,
#gallery h2,
#contact h2{
font-size:42px;
margin-bottom:20px;
}

.about p{
color:#ddd;
font-size:18px;
line-height:1.8;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:50px;
}

.card{
background:#1a1a1a;
padding:35px;
border-radius:20px;
text-align:center;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:45px;
margin-bottom:20px;
color:#fff;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
margin-top:40px;
}

.gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px;
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

.contact{
max-width:900px;
margin:auto;
background:#1a1a1a;
padding:40px;
border-radius:20px;
}

.contact p{
margin:15px 0;
font-size:18px;
}

.contact iframe{
margin-top:30px;
width:100%;
border-radius:15px;
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
border-radius:50%;
text-decoration:none;
box-shadow:0 10px 20px rgba(0,0,0,.3);
}

footer{
background:#000;
padding:30px;
text-align:center;
color:#999;
}

@media(max-width:900px){

header{
flex-direction:column;
gap:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.about{
grid-template-columns:1fr;
}

}
