﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff8f0;
    color: #333;
}

.navbar {
    background: #ff5722;
    color: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 25px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu-header {
    background: #fff3e8;
    text-align: center;
    padding: 50px;
}

.menu-header h1 {
    color: #ff5722;
    font-size: 40px;
    margin-bottom: 10px;
}

.menu-header p {
    color: #777;
    font-size: 18px;
}

.menu-section {
    padding: 40px 70px;
}

.search-box {
    display: block;
    width: 60%;
    margin: 0 auto 30px;
    padding: 15px 20px;
    border: 2px solid #ff5722;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.menu-categories button {
    background: white;
    color: #ff5722;
    border: 2px solid #ff5722;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
}

.menu-food-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.menu-food-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.menu-food-image {
    height: 180px;
    background: #ffe0b2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
}

.menu-food-info {
    padding: 20px;
}

.menu-food-info h3 {
    margin-bottom: 10px;
}

.menu-food-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.menu-food-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-food-bottom span {
    color: #ff5722;
    font-weight: bold;
    font-size: 20px;
}

.menu-food-bottom button {
    background: #ff5722;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}
.navbar {
    width: 100%;
    min-height: 70px;
    background: #ff5722 !important;
    color: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
}

.nav-links a {
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}
 
/* ===== NAVBAR FINAL FIX ===== */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-links {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 22px !important;
    flex-wrap: nowrap;
}

.nav-links a,
.nav-links span {
    white-space: nowrap;
    display: inline-block;
}

.logo {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px !important;
    }
}

/* ===== HOME PAGE POLISH ===== */

.menu-header {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.menu-header h1 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #333;
}

.menu-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.menu-header a {
    transition: 0.3s ease;
}

.menu-header a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.25);
}

.menu-section {
    padding: 55px 6%;
}

.menu-section h2 {
    font-size: 30px;
    color: #333;
}

.menu-section > p {
    color: #777;
}

.menu-food-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.menu-food-image {
    font-size: 55px;
}

.menu-food-info h3 {
    font-size: 20px;
}

.menu-food-info p {
    line-height: 1.5;
}

@media (max-width: 768px) {

    .menu-header {
        padding: 45px 15px;
    }

    .menu-header h1 {
        font-size: 30px;
    }

    .menu-header p {
        font-size: 16px;
    }

    .menu-section {
        padding: 40px 15px;
    }

    .menu-section h2 {
        font-size: 25px;
    }
}


.menu-food-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
}
