/*
=======================
    FOOD NAVIGATION
=======================
*/
.food-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.food-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/*
============
    LOGO
============
*/
.food-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.food-logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
}

.food-logo-divider {
    color: #CCC;
    font-weight: 300;
    font-size: 1.1rem;
}

.food-logo-trade {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.4s ease;
}

/*
============
    MENU
============
*/
.food-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.food-menu li a {
    font-size: 0.92rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.25s ease;
}

.food-menu li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease, background 0.4s ease;
}

.food-menu li a:hover {
    color: var(--accent);
}

.food-menu li a:hover::after {
    width: 100%;
}

/*
==================
    CTA BUTTON
==================
*/
.food-nav-cta {
    padding: 10px 22px;
    background: var(--accent);
    color: #FFF;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.food-nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

/*
==============
    TOGGLE
==============
*/
.food-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.food-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.food-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.food-toggle.open span:nth-child(2) {
    opacity: 0;
}

.food-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/*
======================================
    RESPONSIVE CODE (SMALL MOBILE)
======================================
*/
@media (max-width: 480px) {
    .food-nav-container {
        padding: 12px 16px;
    }

    .food-logo-name {
        font-size: 1rem;
    }

    .food-nav-cta {
        display: none;
    }

    .food-menu {
        width: 200px;
        top: 58px;
        right: 16px;
        padding: 16px;
        gap: 12px;
    }
}

/*
================================
    RESPONSIVE CODE (MOBILE)
================================
*/
@media (max-width: 768px) {
    .food-nav-container {
        padding: 12px 20px;
    }

    .food-nav-cta {
        display: none;
    }

    .food-menu {
        position: absolute;
        top: 64px;
        right: 20px;
        background: #FFF;
        border: 1px solid rgba(0, 0, 0, 0.08);
        flex-direction: column;
        width: 220px;
        padding: 20px;
        gap: 16px;
        border-radius: 8px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        transform: translateX(130%);
        transition: transform 0.3s ease;
        justify-content: flex-start;
    }

    .food-menu.active {
        transform: translateX(0);
    }

    .food-toggle {
        display: flex;
    }
}

/*
================================
    RESPONSIVE CODE (TABLET)
================================
*/
@media (min-width: 769px) and (max-width: 1024px) {
    .food-nav-container {
        padding: 12px 30px;
    }

    .food-menu {
        gap: 22px;
    }
}