/* =================================
   MENU HEADER
================================= */

.menu-header {

    background:
        linear-gradient(
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.75)
        ),
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;

    background-position: center;

    padding: 150px 0 80px;

    text-align: center;

    color: white;

}


.menu-header span {

    color: #ffc107;

    font-weight: 700;

    letter-spacing: 4px;

    font-size: 14px;

}


.menu-header h1 {

    font-size: 55px;

    font-weight: 800;

    margin: 10px 0;

}


.menu-header p {

    color: #ddd;

    font-size: 18px;

}


/* =================================
   MENU SECTION
================================= */

.menu-section {

    padding: 70px 0;

    background: #f8f9f7;

}


/* =================================
   SEARCH
================================= */

.menu-search {

    max-width: 700px;

    margin: 0 auto 35px;

    position: relative;

}


.menu-search i {

    position: absolute;

    left: 20px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 20px;

    color: #777;

}


.menu-search input {

    width: 100%;

    border: none;

    background: white;

    padding: 17px 20px 17px 55px;

    border-radius: 40px;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.08);

    outline: none;

    font-size: 16px;

}


.menu-search input:focus {

    box-shadow:
        0 5px 25px rgba(27,94,32,0.18);

}


/* =================================
   CATEGORY FILTER
================================= */

.category-filter {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;

}


.category-btn {

    border: 1px solid #ddd;

    background: white;

    color: #333;

    padding: 9px 18px;

    border-radius: 25px;

    cursor: pointer;

    transition: 0.25s;

    font-weight: 600;

}


.category-btn:hover {

    border-color: #1b5e20;

    color: #1b5e20;

}


.category-btn.active {

    background: #1b5e20;

    border-color: #1b5e20;

    color: white;

}


/* =================================
   FOOD CARD
================================= */

.food-card {

    background: white;

    border-radius: 18px;

    overflow: hidden;

    height: 100%;

    box-shadow:
        0 7px 25px rgba(0,0,0,0.06);

    transition: 0.3s;

}


.food-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.12);

}


.food-image {

    height: 210px;

    width: 100%;

    object-fit: cover;

}


.food-body {

    padding: 20px;

}


.food-category {

    font-size: 12px;

    color: #1b5e20;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.food-name {

    font-size: 19px;

    font-weight: 700;

    margin: 7px 0;

}


.food-description {

    color: #777;

    font-size: 14px;

    line-height: 1.5;

    min-height: 42px;

}


.food-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 18px;

}


.food-price {

    font-size: 21px;

    font-weight: 800;

    color: #1b5e20;

}


.add-food-btn {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border: none;

    background: #ffc107;

    color: #111;

    font-size: 20px;

    font-weight: 700;

    transition: 0.2s;

}


.add-food-btn:hover {

    background: #1b5e20;

    color: white;

    transform: scale(1.08);

}


/* =================================
   POPULAR BADGE
================================= */

.popular-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    background: #ff7a00;

    color: white;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

}


.food-image-wrapper {

    position: relative;

}


/* =================================
   VEG / NON-VEG
================================= */

.food-type {

    width: 17px;

    height: 17px;

    border: 2px solid;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-right: 6px;

}


.food-type::after {

    content: "";

    width: 7px;

    height: 7px;

    border-radius: 50%;

}


.food-type.veg {

    border-color: #1b5e20;

}


.food-type.veg::after {

    background: #1b5e20;

}


.food-type.nonveg {

    border-color: #b71c1c;

}


.food-type.nonveg::after {

    background: #b71c1c;

}


/* =================================
   NO RESULTS
================================= */

.no-results {

    text-align: center;

    padding: 70px 0;

    color: #777;

}


.no-results i {

    font-size: 55px;

    color: #aaa;

}


.no-results h3 {

    margin-top: 15px;

}