*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Georgia,serif;

}


body{

background:#faf6ef;
color:#222;

}


header{

position:absolute;

width:100%;

padding:30px 8%;

display:flex;

justify-content:space-between;

color:white;

z-index:5;

}


.logo{

font-size:35px;

font-weight:bold;

}


nav a{

color:white;

text-decoration:none;

margin-left:25px;

}




.hero{

height:850px;


background:

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

url("https://images.unsplash.com/photo-1579208030886-b937da0925dc");


background-size:cover;

background-position:center;


display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;


}



.hero h1{

font-size:70px;

}


.hero p{

font-size:25px;

margin:25px;

}



.button{

display:inline-block;

padding:15px 35px;

background:#c89b3c;

color:white;

text-decoration:none;

margin:10px;

}



.outline{

background:transparent;

border:1px solid white;

}



section{

padding:80px 12%;

text-align:center;

}



.intro p,
.story p{

font-size:20px;

line-height:1.7;

}



.feature{

display:flex;

gap:50px;

align-items:center;

}


.feature img{

width:100%;

border-radius:10px;

}



.story{

background:#123047;

color:white;

}



.photos{

display:flex;

gap:20px;

}


.photos img{

width:33%;

height:300px;

object-fit:cover;

}




.menu-title{

background:#c89b3c;

color:white;

padding:150px;

}



.menu h2{

margin-top:40px;

}


.item{

background:white;

padding:20px;

margin:15px;

display:flex;

justify-content:space-between;

box-shadow:0 5px 15px #ddd;

}



.contact{

line-height:2;

}



footer{

background:#111;

color:white;

padding:25px;

text-align:center;

}



@media(max-width:700px){

.feature{

flex-direction:column;

}


.photos{

flex-direction:column;

}


.photos img{

width:100%;

}


.hero h1{

font-size:40px;

}

}
