
    /* General Styles */
body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f0ad4e;
}

.hero {
    background: #e9ecef;
    color: #495057;
    text-align: center;
    padding: 50px 20px;
}

.search-bar {
    margin-top: 20px;
}

.search-bar input {
    padding: 10px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: #35424a;
}

/* Menu Categories */
.menu-categories ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-categories ul li a {
    display: block;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-categories ul li a:hover,
.menu-categories ul li a.active {
    background-color: #0056b3;
}

/* Menu Items */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.menu-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.menu-item h3 {
    margin-bottom: 5px;
}

.menu-item .description {
    color: #666;
    margin-bottom: 10px;
}

.menu-item .price {
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.menu-item .details {
    font-size: 0.9em;
    color: #777;
}

.menu-item .order-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.menu-item .order-button:hover {
    background-color: #218838;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .menu-categories ul {
        flex-direction: column;
        align-items: center;
    }

    .menu-categories ul li {
        width: 100%;
        text-align: center;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }
}


    .footer {
    background-color: #35424a; /* Dark background for the footer */
    color: white; /* Text color */
    padding: 40px 20px; /* Padding for the footer */
}

.footer-container {
    max-width: 12000px; /* Max width for the footer */
    margin: auto; /* Center the footer */
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between; /* Space between sections */
}

.footer-section {
    flex: 1; /* Flex-grow for equal distribution */
    min-width: 250px; /* Minimum width for sections */
    margin: 10px; /* Margin between sections */
}

.footer-section h4 {
    font-size: 1.5em; /* Heading size */
    margin-bottom: 15px; /* Space below headings */
    border-bottom: 2px solid #e74c3c; /* Underline effect */
    padding-bottom: 10px; /* Space below the heading */
}

.footer-section p,
.footer-section ul {
    font-size: 1em; /* Font size for text */
    margin-bottom: 10px; /* Space between paragraphs */
    line-height: 1.6; /* Line height for readability */
}

.footer-section a {
    color: #e74c3c; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition for link color */
}

.footer-section a:hover {
    color: #ffffff; /* Change color on hover */
    text-decoration: underline; /* Underline on hover */
}

.footer-section ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove padding */
}

.footer-section ul li {
    margin: 5px 0; /* Space between list items */
}

.footer form {
    display: flex; /* Flexbox for the form */
    flex-direction: column; /* Stack elements vertically */
}

.footer input[type="email"] {
    padding: 10px; /* Padding for input */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 10px; /* Space below input */
}

.footer button {
    padding: 10px; /* Padding for button */
    background-color: #e74c3c; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.footer button:hover {
    background-color: #35424a; /* Darken button on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections on small screens */
        align-items: center; /* Center align sections */
    }
    .footer-section {
        text-align: center; /* Center text on small screens */
    }
}