*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

body{
background:#f5f5f5;
}


/* NAVBAR */

nav{
background:#efe1c4;
padding:15px 60px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:20px;
font-weight:bold;
color:#0a7c78;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links li{
cursor:pointer;
font-size:14px;
}

.social span{
margin-left:10px;
}


/* HERO */

.hero{
text-align:center;
padding:40px;
}

.hero h1{
font-size:42px;
color:#d88fa2;
margin-bottom:10px;
}

.hero p{
color:#555;
margin-bottom:15px;
}

.btn{
background:#d88fa2;
color:white;
padding:10px 25px;
border:none;
border-radius:4px;
cursor:pointer;
transition:0.3s;
}

.btn:hover{
background:#c6758a;
}



/* BANNER */

.banner{
width:80%;
margin:30px auto;
}

.banner img{
width:100%;
border-radius:5px;
}



/* GALLERY */

.gallery{
width:80%;
margin:auto;
text-align:center;
}

.gallery h2{
margin:20px;
letter-spacing:3px;
}

.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.grid img{
width:100%;
border-radius:5px;
transition:0.3s;
}

.grid img:hover{
transform:scale(1.05);
}



/* CONTACT */

.contact{
width:80%;
margin:40px auto;
text-align:center;
}

.map iframe{
width:100%;
height:300px;
border:0;
border-radius:5px;
}



/* FOOTER */

footer{
background:#efe1c4;
padding:30px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

footer h4{
margin-bottom:10px;
}

footer p{
font-size:14px;
color:#444;
}

.copyright{
text-align:center;
margin-top:20px;
font-size:13px;
}