body {
    margin: 0;
    padding: 0;
    font-family: "Quattrocento", sans;
    background-color: #f9f9f9;
}

.menu-bg-image-container {
    width: 100%;
    height: 45vh;
    overflow: hidden;
}

.menu-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

/* Menu Items (One per row) */
.menu-items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.menu-item {
    width: 100%; /* Full width of the container */
    padding: 20px;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    box-sizing: border-box; /* Ensures padding is included in width */
    text-align: left;
    display: block; /* Stacks items vertically */
    margin-bottom: 15px; /* Adds space between items */
}

/* Menu Item Text Styling */
.menu-item h2 {
    font-size: 1.5em;
    color: #025617;
    margin-bottom: 10px;
}

.menu-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.menu-item .category {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    h1 {
        font-size: 2em;
    }

    .container {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }
}
