
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#050505;
color:white;
font-family:'Montserrat',sans-serif;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url('images/hero-piscina.jpg');
background-size:cover;
background-position:center;
padding:30px 6%;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
width:220px;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
}

.btn-nav,.btn{
padding:14px 28px;
border:1px solid #C8A96B;
color:white;
text-decoration:none;
transition:.3s;
}

.gold{
background:#C8A96B;
color:black;
}

.transparent:hover,.btn-nav:hover{
background:#C8A96B;
color:black;
}

.hero-content{
margin-top:120px;
max-width:650px;
}

.hero-content h2{
font-size:32px;
color:#C8A96B;
font-family:'Cinzel',serif;
}

.hero-content h1{
font-size:88px;
line-height:0.95;
font-family:'Cinzel',serif;
margin:20px 0;
}

.hero-content p{
font-size:20px;
line-height:1.6;
margin-bottom:40px;
}

.buttons{
display:flex;
gap:20px;
}

.services,.rooms{
padding:100px 6%;
}

.services h2,.rooms h2{
font-size:48px;
font-family:'Cinzel',serif;
margin-bottom:60px;
text-align:center;
}

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

.card,.room-card{
background:#111;
border:1px solid rgba(200,169,107,.3);
overflow:hidden;
}

.card img,.room-card img{
width:100%;
height:260px;
object-fit:cover;
}

.card h3,.room-card h3{
padding:20px 20px 10px;
font-size:26px;
color:#C8A96B;
}

.card p,.room-card p{
padding:0 20px 25px;
line-height:1.6;
}

.cta{
padding:120px 6%;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('images/piscina-night.png');
background-size:cover;
background-position:center;
}

.cta h2{
font-size:58px;
font-family:'Cinzel',serif;
margin-bottom:20px;
}

.cta p{
font-size:22px;
margin-bottom:40px;
}

footer{
padding:60px 6%;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
background:#0a0a0a;
border-top:1px solid rgba(255,255,255,.1);
}

footer h3{
margin-bottom:15px;
color:#C8A96B;
}

footer p{
margin-bottom:8px;
}

@media(max-width:768px){

nav ul{
display:none;
}

.hero-content h1{
font-size:54px;
}

.hero-content h2{
font-size:22px;
}

.buttons{
flex-direction:column;
}

.cta h2{
font-size:42px;
}

.logo{
width:160px;
}

}
