/*=================================================
            FOOD NAVBAR
=================================================*/

.food-navbar{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    box-shadow:0 3px 18px rgba(0,0,0,.08);

    z-index:9999;

}

.food-navbar-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    height:90px;

}

/* Logo */

.food-logo a{

    display:flex;

    align-items:center;

    text-decoration:none;

    gap:12px;

}

.food-logo img{

    width:55px;

    height:55px;

    object-fit:cover;

}

.food-logo h3{

    margin:0;

    font-size:26px;

    color:#1B7F3A;

    font-weight:700;

}

.food-logo span{

    color:#888;

    font-size:13px;

}

/* Search */

.food-search{

    flex:1;

    max-width:520px;

}

.food-search form{

    position:relative;

}

.food-search input{

    width:100%;

    height:52px;

    border:none;

    background:#f5f5f5;

    border-radius:50px;

    padding:0 20px 0 55px;

    outline:none;

    transition:.3s;

}

.food-search input:focus{

    background:#fff;

    box-shadow:0 0 0 3px rgba(27,127,58,.15);

}

.food-search button{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    background:none;

    border:none;

    color:#888;

}

/* Right */

.food-right{

    display:flex;

    align-items:center;

    gap:22px;

}

.food-link{

    color:#333;

    text-decoration:none;

    font-weight:500;

}

.food-link:hover{

    color:#1B7F3A;

}

.food-icon{

    color:#333;

    font-size:20px;

    position:relative;

}

.food-icon:hover{

    color:#1B7F3A;

}

.cart-badge{

    position:absolute;

    right:-10px;

    top:-8px;

    width:18px;

    height:18px;

    background:#ff4d4f;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

}

.login-btn{

    background:#1B7F3A;

    color:#fff;

    text-decoration:none;

    padding:10px 24px;

    border-radius:30px;

    font-weight:600;

}

.login-btn:hover{

    background:#15642f;

    color:#fff;

}

/* Responsive */

@media(max-width:992px){

.food-search{

display:none;

}

.food-link span{

display:none;

}

.food-logo span{

display:none;

}

}

@media(max-width:768px){

.food-navbar-inner{

height:75px;

}

.food-right{

gap:15px;

}

.login-btn{

padding:8px 18px;

font-size:14px;

}

}
/*=========================================
        HERO
=========================================*/

.food-hero{

    position:relative;

    padding:80px 0;

    overflow:hidden;

    background:linear-gradient(135deg,#1B7F3A,#0f5d28);

}

.food-hero-overlay{

    position:absolute;

    inset:0;

    background:url("../images/restaurant/pattern.jpg");

    opacity:.08;

}

.food-hero-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.food-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

}

.food-hero h1{

    font-size:58px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:20px;

}

.food-hero p{

    font-size:18px;

    color:#eee;

    max-width:550px;

}

.food-features{

    display:flex;

    gap:25px;

    margin-top:40px;

}

.food-features div{

    background:rgba(255,255,255,.12);

    padding:20px;

    border-radius:15px;

    min-width:140px;

    text-align:center;

}

.food-features strong{

    font-size:24px;

}

.food-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:35px;

}

.food-tags span{

    background:#fff;

    color:#333;

    padding:10px 18px;

    border-radius:40px;

    font-weight:500;

}

.hero-food-image{

    max-height:520px;

    animation:floatFood 4s ease-in-out infinite;

}

@keyframes floatFood{

0%{transform:translateY(0);}

50%{transform:translateY(-12px);}

100%{transform:translateY(0);}

}

@media(max-width:991px){

.food-hero{

padding:60px 0;

text-align:center;

}

.food-hero h1{

font-size:42px;

}

.food-features{

justify-content:center;

flex-wrap:wrap;

}

.hero-food-image{

margin-top:40px;

max-height:320px;

}

}

@media(max-width:576px){

.food-hero h1{

font-size:32px;

}

.food-features{

gap:15px;

}

.food-features div{

min-width:110px;

padding:15px;

}

.food-tags{

justify-content:center;

}

}
/*=====================================
FOOD CATEGORIES
======================================*/

.food-categories{

    padding:70px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:45px;

}

.section-title h2{

    font-size:34px;

    font-weight:700;

    color:#222;

}

.section-title p{

    color:#777;

    margin-top:8px;

}

/* Slider */

.food-category-slider{

    display:flex;

    gap:25px;

    overflow-x:auto;

    padding-bottom:10px;

    scrollbar-width:none;

}

.food-category-slider::-webkit-scrollbar{

    display:none;

}

.food-category-card{

    min-width:130px;

    text-align:center;

    text-decoration:none;

    color:#222;

    transition:.35s;

}

.food-category-card:hover{

    transform:translateY(-8px);

}

.food-category-image{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    transition:.35s;

}

.food-category-card:hover .food-category-image{

    box-shadow:0 12px 28px rgba(27,127,58,.25);

}

.food-category-image img{

    width:90px;

    height:90px;

    object-fit:contain;

}

.food-category-card h5{

    margin-top:15px;

    font-size:16px;

    font-weight:600;

}

@media(max-width:768px){

.food-category-card{

min-width:110px;

}

.food-category-image{

width:90px;

height:90px;

}

.food-category-image img{

width:70px;

height:70px;

}

}
/*=========================================
Restaurant List
=========================================*/

.restaurant-list-section{

    padding:70px 0;

    background:#fafafa;

}

.restaurant-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.restaurant-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.restaurant-cover{

    position:relative;

    height:220px;

}

.restaurant-cover img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.free-delivery{

    position:absolute;

    left:15px;

    top:15px;

    background:#1B7F3A;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.restaurant-body{

    padding:20px;

}

.restaurant-logo{

    width:75px;

    height:75px;

    border-radius:50%;

    overflow:hidden;

    border:4px solid #fff;

    margin-top:-60px;

    background:#fff;

    box-shadow:0 3px 10px rgba(0,0,0,.12);

}

.restaurant-logo img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.restaurant-info h4{

    margin-top:15px;

    font-size:22px;

    font-weight:700;

}

.restaurant-info p{

    color:#777;

    min-height:48px;

}

.restaurant-meta{

    display:flex;

    justify-content:space-between;

    margin:12px 0;

    color:#555;

    font-size:15px;

}

.restaurant-btn{

    display:block;

    text-align:center;

    margin-top:20px;

    background:#1B7F3A;

    color:#fff;

    padding:14px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.restaurant-btn:hover{

    background:#145f2a;

    color:#fff;

}
.restaurant-card{
    transition:.3s;
}

.restaurant-card:hover{
    transform:translateY(-6px);
}

@media(max-width:768px){

.card-img-top{
    height:180px !important;
}

}