*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#fffaf4;
}

/* Header */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#8B0000;
}

.logo{
    color:white;
    font-size:30px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:18px;
}

nav a:hover{
    color:gold;
}

/* Hero */

.hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding-left:8%;
}

.content{
    color:white;
    width:600px;
}

.content h1{
    font-size:60px;
    margin-bottom:20px;
}

.content p{
    font-size:20px;
    line-height:35px;
    margin-bottom:35px;
}

.btn{
    background:orange;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-size:20px;
    transition:.3s;
}

.btn:hover{
    background:red;
}

/* Dishes */

.dishes{
    padding:80px 8%;
}

.dishes h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    color:#8B0000;
}

.cards{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    text-align:center;
    margin:20px;
    color:#8B0000;
}

.card p{
    padding:0 20px 25px;
    text-align:center;
}

/* About */

.about{
    padding:80px 10%;
    background:#ffe6c7;
    text-align:center;
}

.about h2{
    font-size:40px;
    color:#8B0000;
    margin-bottom:20px;
}

.about p{
    font-size:20px;
    line-height:35px;
}

/* Footer */

footer{
    background:#8B0000;
    color:white;
    text-align:center;
    padding:40px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    margin-top:10px;
}

/* Responsive */

@media(max-width:768px){

header{
    flex-direction:column;
}

nav{
    margin-top:15px;
}

.hero{
    padding:30px;
    text-align:center;
}

.content{
    width:100%;
}

.content h1{
    font-size:40px;
}

.cards{
    flex-direction:column;
}

}