*{

margin:0;
padding:0;
box-sizing:border-box;

}


html{

scroll-behavior:smooth;

}


body{

font-family:'Inter',sans-serif;

background:#f8f5ef;

color:#171717;

}



h1,h2,h3{

font-family:'Playfair Display',serif;

}



a{

text-decoration:none;

color:inherit;

}





/* NAV */


nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:30px 8%;

}



.logo{

font-size:25px;

letter-spacing:5px;

}



.menu a{

margin-left:30px;

}







/* HERO */


.hero{

height:95vh;


background:

linear-gradient(
rgba(0,0,0,.3),
rgba(0,0,0,.3)
),

url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c")

center/cover;


display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

}



.hero-content{

max-width:850px;

}



.hero p{

letter-spacing:6px;

font-size:13px;

}



.hero h1{

font-size:80px;

line-height:1.1;

margin:30px 0;

}



.hero span{

font-size:22px;

line-height:1.7;

}



.hero a{

display:inline-block;

margin-top:40px;

padding:16px 45px;

background:white;

color:#111;

border-radius:40px;

}







section{

padding:100px 8%;

}



.label{

letter-spacing:5px;

font-size:13px;

color:#b18a45;

}



.about{

max-width:850px;

margin:auto;

text-align:center;

}



.about h2{

font-size:55px;

margin:25px;

}



.about p:last-child{

font-size:20px;

line-height:1.8;

color:#666;

}







.title{

text-align:center;

margin-bottom:60px;

}



.title h2{

font-size:50px;

}








.features{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.features div{

background:white;

padding:40px;

border-radius:20px;

}



.features h3{

font-size:28px;

margin-bottom:20px;

}



.features p{

color:#666;

line-height:1.6;

}







.gallery{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}



.gallery img{

width:100%;

height:450px;

object-fit:cover;

border-radius:20px;

}







.experience{

background:#171717;

color:white;

display:grid;

grid-template-columns:repeat(3,1fr);

text-align:center;

}



.experience h2{

font-size:70px;

color:#d0ad6a;

}



.experience p{

color:#aaa;

}







.contact{

text-align:center;

}



.contact h2{

font-size:55px;

}



.contact a{

display:inline-block;

margin-top:30px;

background:#171717;

color:white;

padding:16px 45px;

border-radius:40px;

}







footer{

background:#111;

color:white;

padding:30px;

text-align:center;

}



footer a{

display:block;

margin-top:15px;

color:#d0ad6a;

}





@media(max-width:800px){


nav{

flex-direction:column;

gap:20px;

}



.hero h1{

font-size:45px;

}



.features,
.gallery,
.experience{

grid-template-columns:1fr;

}



.gallery img{

height:350px;

}


}