* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5e3b;
}

.logo span {
    color: #e67e22;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #2c5e3b;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    width: 75%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-box button {
    width: 25%;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
}

.search-box button:hover {
    background-color: #d35400;
}

/* Features */
.features {
    padding: 60px 8%;
    text-align: center;
}

.features h2, .catalog h2, .team h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 4px solid #2c5e3b;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2c5e3b;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* Catalog */
.catalog {
    padding: 60px 8%;
    background: #fff;
    text-align: center;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.food-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2c5e3b;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
}

.food-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.rating {
    font-size: 14px;
    color: #e67e22;
    margin-bottom: 10px;
    font-weight: 600;
}

.food-card p {
    font-size: 14px;
    color: #666;
}

/* Team */
.team {
    padding: 60px 8%;
    text-align: center;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.team-member h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    font-size: 13px;
    color: #777;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}