/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark Gray for readability */
    background-color: #f4f4f4; /* Light Gray Background */
}

/* Header Styling */
header {
    background-color: #2c3e50; /* Dark Blue */
    color: #ecf0f1; /* Light Gray for text */
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 120px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ecf0f1; /* Light Gray */
    text-decoration: none;
    font-weight: bold;
}

.header-content h1 {
    font-size: 2.5em;
    margin-top: 10px;
}

.header-content p {
    font-size: 1.2em;
    margin-top: 5px;
}

/* Features Section Styling */
.features {
    padding: 40px 20px;
    background-color: #34495e; /* Darker Blue */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff; /* White text */
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    max-width: 800px;
    width: 100%;
}

.feature-item:nth-child(odd) img {
    order: -1;
}

.feature-item img {
    width: 100%; /* Make the image responsive */
    max-width: 400px; /* Limit image size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    margin: 0 20px;
}

.feature-text {
    width: 40%;
    text-align: left;
}

.feature-text h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 1em;
    line-height: 1.6;
}

/* Team Section Styling */
.team {
    padding: 40px 20px;
    background-color: #7f8c8d; /* Gray for Team Section */
    text-align: center;
    color: #ffffff;
}

.team h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.team-member {
    display: inline-block;
    width: 250px;
    margin: 20px;
    vertical-align: top;
}

.team-member img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    max-width: 250px; /* Ensure images are not too large */
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.team-member h4 {
    color: #bdc3c7; /* Lighter Gray */
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.9em;
    line-height: 1.4;
}

/* Footer Styling */
footer {
    background-color: #2c3e50; /* Same dark blue */
    color: #ecf0f1; /* Light Gray */
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 0.9em;
}

/* Contact Form Styling */
.contact-form {
    padding: 40px 20px;
    background-color: #34495e; /* Darker Blue */
    display: flex;
    justify-content: center;
}

.contact-form form {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff; /* White background for form */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.contact-form label {
    font-size: 1em;
    margin-top: 15px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 1em;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #3498db; /* Light Blue */
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #2980b9; /* Darker Blue on hover */
}

/* Download Buttons Styling */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.download-buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.play-store-button:hover, .app-store-button:hover {
    opacity: 0.9;
}

.download-buttons img {
    width: 250px;
    height: 100px;
}

/* About App Section Styles */
.about-app {
    background-color: #34495e; /* Darker Blue */
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    color: #ffffff;
}

.about-app h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-app p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Search Results Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50; /* Dark Blue */
    color: #ecf0f1; /* Light Gray */
    text-align: center;
    padding: 1em;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

#food-search {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #3498db; /* Light Blue */
    color: white;
    border: none;
    margin-left: 10px;
    border-radius: 5px;
}

button:hover {
    background-color: #2980b9; /* Darker Blue on hover */
}

.results-container {
    margin: 20px;
    padding: 20px;
    background-color: #ffffff; /* White for results */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.table th {
    background-color: #ecf0f1; /* Light Gray */
}

/* Image Styling for All Sections */
img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintains aspect ratio */
}

/* Adjust the size of the button */
button {
    padding: 8px 15px; /* Reduce padding */
    font-size: 14px; /* Smaller font size */
    cursor: pointer;
    background-color: #3498db; /* Light Blue */
    color: white;
    border: none;
    margin-left: 10px;
    border-radius: 5px;
}

button:hover {
    background-color: #2980b9; /* Darker Blue on hover */
}
.order-now {
    text-align: center;
}

.order-image {
    width: auto; /* Reset width */
    height: 190px; /* Set a fixed height for consistency */
    max-width: 200%; /* Ensure it doesn't exceed the container width */
    object-fit: contain; /* Maintain aspect ratio */
}
