body {
    font-family: Arial, sans-serif;
    background-color: rgb(251, 251, 251);
    color: #0e0c0c;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navbar */
.navbar {
    background-color: rgb(95, 128, 132);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar a:hover{
    color: aqua;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: rgb(35, 255, 255);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a.active {
    color: aqua;
}

.cart-badge {
    background-color: aqua;
    color: white;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 12px;
}

/* Hero Section  */
.hero {
    background: linear-gradient(to right, lightblue, aqua);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero-btn {
    background-color: white;
    color: lightblue;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-btn:hover {
    background-color: #f0f0f0;
}

/* Search Section */
.search-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto 20px;
}

.search-bar {
    flex: 1;
    padding: 15px;
    border: 1px solid lightblue;
    border-radius: 5px 0 0 5px;
}

.search-btn {
    background-color: aqua;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    background-color: white;
    border: 1px solid lightblue;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.category-btn.active, .category-btn:hover {
    background-color: aqua;
    color: white;
}

/* Menu Container */
.menu-container {
    padding: 50px 20px;
}

.food-category {
    margin-bottom: 60px;
}

.food-category h2 {
    text-align: center;
    font-size: 32px;
    color: rgb(29, 44, 44);
}

.category-desc {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.food-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-card h3 {
    padding: 15px;
    font-size: 20px;
}

.price {
    padding: 0 15px;
    color: aqua;
    font-weight: bold;
    font-size: 18px;
}

.desc {
    padding: 10px 15px;
    color: #777;
}

.card-actions {
    display: flex;
    padding: 15px;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart {
    background-color: lightblue;
    color: white;
}

.buy-now {
    background-color: aqua;
    color: white;
}

.add-to-cart:hover, .buy-now:hover {
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    color: rgb(0, 0, 0);
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-card span {
    color: #666;
}

/* Order Page */
.order-container {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.order-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.order-items {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.item-details h3 {
    margin-bottom: 5px;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background-color: lightblue;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.remove {
    background-color: #ffdddd;
    color: red;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.pricing {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
    font-weight: bold;
    color: aqua;
}

.order-actions {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.proceed {
    background-color: aqua;
}

.back {
    background-color: lightblue;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
.footer {
    background-color: rgb(0, 10, 14);
    color: #faf7f7;
    text-align: center;
    padding: 40px 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        padding: 60px 20px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .order-actions {
        flex-direction: column;
    }
}