
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
    margin: 40px 0 60px 0;
}


.menu-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.menu-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.menu-item-content {
    padding: 20px;
    flex: 1;
}

.menu-item h3 {
    color: #1F4529;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.menu-item .price {
    color: #47663B;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.menu-item .description {
    color: #7c7c7c;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.dietary-info {
    display: flex;
    gap: 10px;
}

.dietary-info span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
}

.vegetarian {
    background-color: #47A76A;
}

.vegan {
    background-color: #3D9970;
}

.gluten-free {
    background-color: #B5A642;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dietary-legend h3, 
.order-info h3 {
    color: #1F4529;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.dietary-legend li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-info p {
    margin-bottom: 20px;
}

.order-info .ctn {
    display: inline-block;
}


/* Responsive Design */
@media only screen and (max-width: 850px) {
    .menu-header {
        height: 40vh;
    }
    
    .menu-header h1 {
        font-size: 3rem;
    }
    
    .category-nav ul {

    }
}
