/* ===== MENU SECTION ===== */

body {
    background-color: #f9f9f9;
}
.menu-container {
    text-align: center;
    padding: 50px 10%;
    background: #f9f9f9;
    margin-top: 70px;
}

.menu-container h1 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 20px;
}

/* Category Styling */
.menu-category {
    background: white;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin-bottom: 30px;
}

.menu-category h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}


.menu-category p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Images */
.category-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Table Styling */
.item-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
}

.item-table th,
.item-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 1.6rem;
}

.item-table {

    margin-bottom: 30px;
}

.item-table th {
    background: var(--black);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-container {
        padding: 30px 5%;
    }

    .menu-category {
        padding: 15px;
    }

    .menu-category h2 {
        font-size: 2rem;
    }

    .item-table th,
    .item-table td {
        font-size: 1rem;
        padding: 6px;
    }

    .category-photo {

        width: 200px;
    }
}

