body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #fdfdfd;
    color: #333;
   
}
.menu-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(220, 53, 69, 0.1);

}
.nav-tabs .nav-link.active {
    background: #ff6a00;
    color: #fff !important;
    border: none;
    border-radius: 8px 8px 0 0;
}
.nav-tabs .nav-link {
    color: #ff6a00;
    font-weight: 600;
    border: none;
    border-radius: 8px 8px 0 0;
    transition: background 0.3s, color 0.3s;
}
.menu-card {


    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    height: 200px; /* Set your desired height  */
    background: url('/images/menu-bg.jpg') no-repeat center center fixed;
    background-size: cover;
  
  

}

    .menu-card img {
        width: 300px; /* fixed width */
        height: 300px; /* fixed height */
        object-fit: contain; /* keep aspect ratio */
        display: block;
        margin-left: auto;
        margin-right: auto; /* centers the image horizontally */
    }

.menu-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 24px 0 rgba(220,53,69,0.2);
}
.menu-img {
    height: 300px;
    object-fit: fill;
    width: 300px;




}
.card-title {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
    color: saddlebrown;
    font-weight: bold;
}

.card-desc {
    font-size: 1.0rem;
    font-family: 'Segoe UI';
    margin-top: auto;
    color: chocolate;
    font-weight: bold;
    /*font-weight: 600;*/
}

.card-text {
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
    font-size: 1.1rem;
    color: black; /* price #ff6a00 */
    font-weight: bold;
}

.title {
    font-family: 'Segoe MDL2 Assets' 'Segoe UI';
    margin-top: auto;
    font-size: 1.5rem;
    color: dimgray; 
}

.title-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: orange;
    margin: 20px;
}

    .title-menu .icon {
        font-size: 32px; /* make knife & fork slightly larger */
    }

    .title-menu .title-text {
        text-transform: uppercase;
        letter-spacing: 2px;
    }


@media (max-width: 576px) {
    .menu-img {
        height:180px;
    }
}