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

body{
font-family: Arial, sans-serif;
background:#fffaf7;
color:#444;
}

nav{
display:flex;
justify-content:center;
gap:30px;
padding:20px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

nav a{
text-decoration:none;
color:#ff7f6a;
font-weight:bold;
}

.hero{
height:80vh;
background:
linear-gradient(rgba(0,0,0,.25),
rgba(0,0,0,.25)),
url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;
flex-direction:column;

color:white;
text-align:center;
}

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

.hero p{
font-size:22px;
}

.btn{

margin-top:25px;
padding:15px 30px;

background:#ff8a75;
border:none;
border-radius:30px;

color:white;
text-decoration:none;

}

.section{
padding:80px;
}

.section h2{
text-align:center;
margin-bottom:50px;
color:#ff8a75;
}

.products{

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

gap:30px;

}

.card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.4s;
}

.card:hover{

transform:translateY(-10px);

}

.card img{

width:100%;
height:300px;
object-fit:cover;

}

.card h3{

padding:15px;
}

.card p{

padding:0 15px 15px;
}

footer{

padding:40px;
text-align:center;
background:#ffe6df;
margin-top:100px;

}

@media(max-width:900px){

.products{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.products{

grid-template-columns:1fr;

}

.hero h1{

font-size:40px;

}

}