/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #d6eaff;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7043;
    padding: 15px 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.logo img {
    width: 70px;
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    background-color: #ff5722;
}

/* Hero Section */
.hero {
    background: url('img/food-background.jpg') center/cover no-repeat;
    color: rgb(92, 69, 69);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero h1 span {
    color: #ff7043;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}

/* About Us Section */
.about-us {
    background: #fff;
    padding: 50px 20px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.about-us h2 {
    color: #ff5722;
    font-size: 32px;
    margin-bottom: 10px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    background: #ff7043;
    color: white;
    padding: 60px 20px;
}

.why-choose-us h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

.feature-card i {
    font-size: 40px;
    color: #ff5722;
    margin-bottom: 10px;
}

/* Team Section */
.team-section {
    padding: 50px 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ff5722;
    transition: transform 0.3s ease-in-out;
}

.team-member img:hover {
    transform: scale(1.1);
}

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    background: #ff7043;
    padding: 20px 60px;
    height: 60px;
}
footer img {
    width: 70px;
}
