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

body {
    font-family: Arial, sans-serif;
    background-color: #f8f3ed;
    color: #2b2118;
}
header {
    background-color: #2b1b12;
    padding: 20px;
}

nav {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    color: #f5d6a6;
    font-size: 28px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #f5d6a6;
}
#home {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
    background:
        linear-gradient(rgba(234, 216, 196, 0.82), rgba(234, 216, 196, 0.82)),
        url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb");
    background-size: cover;
    background-position: center;
}

#home h2 {
    font-size: 48px;
    margin: 15px 0;
    color: #2b1b12;
}

#home p {
    max-width: 650px;
    margin: 10px auto;
    font-size: 18px;
}

#home a {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background-color: #2b1b12;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#home a:hover {
    background-color: #5a3928;
}
#menu {
    padding: 80px 20px;
    text-align: center;
}

#menu h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2b1b12;
}

#menu > p {
    margin-bottom: 40px;
}

#menu article {
    display: inline-block;
    vertical-align: top;
    width: 220px;
    min-height: 180px;
    margin: 10px;
    padding: 25px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menu-grid {
    max-width: 1000px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.menu-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card h3 {
    color: #5a3928;
    margin-bottom: 12px;
    font-size: 21px;
}

.menu-card p {
    margin-bottom: 15px;
}

.menu-card strong {
    color: #8a5a35;
    font-size: 18px;
}
#about {
    padding: 80px 20px;
    text-align: center;
    background-color: #2b1b12;
    color: white;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #f5d6a6;
}

#about p {
    max-width: 700px;
    margin: 15px auto;
    font-size: 17px;
}
#gallery {
    padding: 80px 20px;
    text-align: center;
}

#gallery h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2b1b12;
}

#gallery > p {
    margin-bottom: 35px;
}

#gallery div {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#gallery img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#contact {
    padding: 80px 20px;
    text-align: center;
    background-color: #ead8c4;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2b1b12;
}

#contact p {
    margin: 12px auto;
}

#contact a {
    color: #5a3928;
    font-weight: bold;
    text-decoration: none;
}

#contact > a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background-color: #2b1b12;
    color: white;
    border-radius: 5px;
}

#contact > a:hover {
    background-color: #5a3928;
}
footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #1d120d;
    color: white;
}

footer h2 {
    color: #f5d6a6;
    margin-bottom: 10px;
}

footer p {
    margin: 8px 0;
    font-size: 14px;
}footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #1d120d;
    color: white;
}

footer h2 {
    color: #f5d6a6;
    margin-bottom: 10px;
}

footer p {
    margin: 8px 0;
    font-size: 14px;
}
@media (max-width: 700px) {

    header {
        padding: 20px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav h1 {
        font-size: 24px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        font-size: 14px;
    }

    #home {
        min-height: 70vh;
        padding: 50px 20px;
    }

    #home h2 {
        font-size: 34px;
    }

    #home p {
        font-size: 16px;
    }

    #menu h2,
    #about h2,
    #gallery h2,
    #contact h2 {
        font-size: 30px;
    }

    #menu article {
        width: 100%;
        max-width: 350px;
        margin: 10px auto;
        display: block;
    }

    #gallery img {
        width: 100%;
        max-width: 350px;
        height: 230px;
    }

}
nav .order-button {
    background-color: #f5d6a6;
    color: #2b1b12;
    padding: 9px 16px;
    border-radius: 5px;
    font-weight: bold;
}

nav .order-button:hover {
    background-color: white;
    color: #2b1b12;
}
@media (max-width: 700px) {

    #home {
        min-height: 75vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 50px 20px;
    }

    #home p {
        max-width: 330px;
    }

    #home h2 {
        font-size: 40px;
        line-height: 1.1;
        margin: 20px 0;
    }

    #home a {
        margin-top: 25px;
    }

}
@media (max-width: 700px) {

    .menu-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .menu-card {
        width: 100%;
    }

}
@media (max-width: 700px) {

    #menu {
        padding: 60px 15px;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 400px;
        margin: 30px auto 0;
    }

    .menu-card {
        width: 100%;
        min-height: 180px;
        padding: 25px 20px;
    }

}
#about {
    padding: 90px 20px;
    text-align: center;
    background-color: #2b1b12;
    color: white;
}

#about h2 {
    font-size: 40px;
    color: #f5d6a6;
    margin-bottom: 25px;
}

#about p {
    max-width: 700px;
    margin: 15px auto;
    font-size: 18px;
}

#about p:first-of-type {
    font-size: 22px;
    font-weight: bold;
    color: #f5d6a6;
}
@media (max-width: 700px) {

    #about {
        padding: 70px 20px;
    }

    #about h2 {
        font-size: 32px;
    }

    #about p {
        font-size: 16px;
    }

    #about p:first-of-type {
        font-size: 19px;
    }

}
#contact {
    padding: 90px 20px;
    text-align: center;
    background-color: #ead8c4;
}

#contact h2 {
    font-size: 40px;
    color: #2b1b12;
    margin-bottom: 15px;
}

#contact > p:first-of-type {
    font-size: 18px;
    margin-bottom: 35px;
}

#contact p {
    margin: 14px auto;
}

#contact strong {
    color: #5a3928;
}

#contact p a {
    color: #5a3928;
    text-decoration: none;
}

#contact > a {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 30px;
    background-color: #2b1b12;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

#contact > a:hover {
    background-color: #5a3928;
}
@media (max-width: 700px) {

    #contact {
        padding: 70px 20px;
    }

    #contact h2 {
        font-size: 32px;
    }

    #contact p {
        font-size: 16px;
    }

}
#gallery {
    padding: 90px 20px;
    text-align: center;
    background-color: #f8f3ed;
}

#gallery h2 {
    font-size: 40px;
    color: #2b1b12;
    margin-bottom: 12px;
}

#gallery > p {
    margin-bottom: 40px;
    font-size: 18px;
}

#gallery div {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}
#cta {
    padding: 80px 20px;
    text-align: center;
    background-color: #5a3928;
    color: white;
}

#cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

#cta p {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 18px;
}

#cta a {
    display: inline-block;
    padding: 14px 30px;
    background-color: #f5d6a6;
    color: #2b1b12;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

#cta a:hover {
    background-color: white;
}


