.container {
    width: 90%;
    margin: 40px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 40px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    gap: 20px;
}
.menu-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.menu-item:hover {
    transform: translateY(-5px); /* Hover effect to lift the box */
}
.menu-item img {
    width: 100%;
    border-radius: 10px;
    max-height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}
.menu-item h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}
.menu-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}
.menu-item .price {
    font-size: 16px;
    font-weight: bold;
    color: #2e8b57;
}
.price-options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}
.price-option {
    background-color: #f1f1f1;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.available {
    text-align: center;
    font-weight: bold;
    color: green;
    font-size: 16px;
}
.not-available {
    text-align: center;
    font-weight: bold;
    color: red;
    font-size: 16px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row on medium screens */
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on small screens */
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr; /* 1 item per row on very small screens (phones) */
    }
}