/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f1ec;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.site-header {
    background: linear-gradient(to bottom, #2e7d32, #1b5e20); /* green gradient */
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.site-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Main content styles */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #1b5e20; /* dark green */
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Georgia', serif;
}

h3 {
    color: #2e7d32; /* primary green */
    font-size: 1.5em;
    margin: 30px 0 20px;
    border-bottom: 2px solid #c8d8c4; /* soft greenish border */
    padding-bottom: 10px;
}

/* Menu styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.menu-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.food-image {
    margin-bottom: 15px;
}

.placeholder-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #f9f6f2;
}

.food-details h4 {
    color: #1b5e20; /* dark green */
    font-size: 1.2em;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #2e7d32; /* primary green */
    font-weight: normal;
}

.ingredients {
    color: #666;
    font-size: 0.9em;
}

/* Info sections */
.info-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

/* Footer */
footer {
    background: #1b5e20; /* dark green */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .site-header h1 {
        font-size: 1.8em;
    }

    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.3em;
    }
}



.food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px; /* same rounded corners */
}