body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


.menu_container {
    display: flex;
}
h1{
    font-size: 20px;
}
h2{
    font-size: 20px;
    color: red;
    text-align: center;
}
.sidebar {
    width: 15%;
    position: -webkit-sticky;
    position: sticky;
    top: 0px; 
    height: 100vh;
    overflow-y: auto;
    background-color: #f4f4f4;
    padding: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 10px;
    cursor: pointer;
    background-color: #2692c8;
    margin-bottom: 10px;
    border-radius: 4px;
    color: rgb(51, 51, 51);

}

.sidebar ul li:hover {
    background-color: rgb(85, 196, 133);
    padding-left: 10px;
    transition: 0.3s;
}

.content {
    /* flex: 1; */
    /* padding: 20px; */
    /* width: 85%; */
    flex: 0 0 80%;
}
.category-section {
    margin-bottom: 40px;
}

.category-section h3 {
    /* background-color: #1a7e60; */
    border-bottom: 5px solid #1a7e60;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 40px;
    color: #333;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

.category-section p {
    color: rgb(12, 6, 6);
    font-style: italic;
    /* padding: 10px;
    margin: 0 -20px; */
    /* font-size: 30px; */

}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    flex-direction: row; 
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px;
    
}

.menu-item h4 {
    font-size: 20px;
    flex: 2;
}

.menu-item .zoom-container {
    overflow: hidden;
    width: 300px; 
    height: 200px;
}

.menu-item .zoom-container img {
    object-fit: cover;
    margin-right: 20px;
    cursor: pointer;
    transition: transform 0.5s ease;
    width: 300px; 
    height: 200px;
    
}
.zoom-container:hover img {
    transform: scale(1.3); 
}

.menu-item-details {
    flex: 1;
    /* padding-left: 10px; */
}

.menu-item-details h4 {
    margin: 0 0 5px;
}

.menu-item-details .item-price {
    flex: 1;
    color: #ff6600;
    font-weight: bold;
    padding: 10px;
}

.menu-item-details .item-description {
    flex: 3;
    margin: 5px 0 0;
    color: #666;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content, .close {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

@media only screen and (max-width: 600px) {
    .sidebar {
        font-size: 10px;
        width: 20%;
        font-family: 'Arial Narrow', Arial, sans-serif;
        height: 90vh;
        
    }
    .menu-item {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: flex-start;
    }

    .menu-item h4,
    .menu-item-price,
    .menu-item-description {
        width: 100%;
        padding-left: 0;
        margin-bottom: 10px;
    }
    .sidebar ul li {
        padding: 5px;
    }
    .menu-item-price {
        text-align: left; /* Align price to the left on small screens */
    }
    .menu-item h4 {
        font-size: 16px;
    }
    .category-section h3 {
        font-size: 18px;
    }
    .category-section p {
        font-size: 10px;
    }
    .content {
        width: 80%;
    }

}

@media only screen and (max-width: 600px) {
    /* Adjust the category bar size for smaller screens */
    .sidebar {
        font-size: 10px;
        width: 25%;
        font-family: 'Arial Narrow', Arial, sans-serif;
        height: 90vh;
    }
   
    .content {
        width: 75%;
    }

}

