/* =========================
   COLORFUL FOOD FOOTER
========================= */

.food-footer{
    margin-top:30px;
    background:linear-gradient(180deg,#fff7ed,#ffe4e6);
    font-family:system-ui;
    color:#374151;
}

/* =========================
   TOP CTA (FUN STYLE)
========================= */

.food-cta{
    background:linear-gradient(135deg,#ff6b6b,#ffb703);
    padding:60px 20px;
    text-align:center;
    color:#fff;
}

.food-cta h2{
    font-size:30px;
    font-weight:800;
    margin-bottom:10px;
}

.food-cta p{
    opacity:.95;
    margin-bottom:25px;
    font-size:15px;
}

/* INPUT */
.food-form{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.food-form input{
    padding:14px 16px;
    border-radius:50px;
    border:none;
    min-width:450px;
    outline:none;
}

.food-form button{
    background:#111827;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.food-form button:hover{
    background:#000;
    transform:translateY(-2px);
}

/* =========================
   MAIN GRID
========================= */

.food-main{
    padding:60px 20px;
}



/* =========================
   CARDS (SOFT + COLORFUL)
========================= */


/* NEW CLEAN GRID */
.food-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

/* COLUMN STYLE */
.food-col h4{
    font-size:16px;
    margin-bottom:14px;
    font-weight:800;
}

/* LINKS */
.food-col a{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#6b7280;
    margin-bottom:10px;
    font-size:14px;
    transition:.2s;
}

/* BRAND */
.food-brand-name{
    font-size:28px;
    font-weight:900;
    margin-bottom:12px;

    background:linear-gradient(135deg,#ef4444,#f59e0b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    letter-spacing:0.5px;
    display:inline-block;
    position:relative;
}

/* small underline accent */
.food-brand-name::after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:#ef4444;
    border-radius:2px;
    margin-top:6px;
}

.food-brand p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
}
.food-col a:hover{
    color:#ef4444;
    transform:translateX(4px);
}


/* =========================
   SOCIAL ICONS (FUN STYLE)
========================= */

.food-social{
    display:flex;
    gap:10px;
}

.food-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ffe4e6;
    color:#ef4444;
    transition:.25s;
}

.food-social a:hover{
    background:#ef4444;
    color:#fff;
    transform:scale(1.1);
}

/* =========================
   BOTTOM BAR
========================= */

.food-bottom{
    text-align:center;
    padding:18px;
    font-size:13px;
    background:#fff;
    border-top:1px solid #f3f4f6;
}
/* ICON STYLE */
.food-icon{
    width:18px;
    height:18px;
    vertical-align:middle;
    margin-right:8px;
}
