body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff8f0;
    color: #2f2f2f;
}
.logo{
    text-decoration: none;
    font-family: 'Lobster', cursive;
    margin: 0;
    color: white;
}

header {
    background-color: #8b4513;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}
h2 {
    font-family: 'Lobster', cursive;
    color: #d2691e;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.menu-item {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #e0c7b2;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}
footer {
    background-color: #8b4513;
    color: white;
    text-align: center;
    padding: 20px;
}
iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 20px;
}

@media (max-width: 500px) {
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
