:root {
    --bg-color: #ffffff;
    --text-color: #333;
    --header-bg: #222;
    --link-color: #d4af37; 
    --button-bg: #555;
    --button-hover: #777;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--header-bg);
    padding: 15px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--link-color);
}

main {
    padding: 20px;
    text-align: center;
}

/* Menu List */
.menu-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Individual Menu Item */
.menu-item {
    background-color: #fff;
    border: 3px solid #3f2b27;
    border-radius: 10px;
    width: 220px; /* Set a fixed width */
    padding: 10px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

/* Menu Item Images */
.menu-item img {
    width: 100%; /* Ensures all images fit within their containers */
    height: 150px; /* Set a fixed height */
    object-fit: cover; /* Ensures images crop properly while maintaining aspect ratio */
    border-radius: 8px; /* Keeps images rounded */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-list {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 90%; /* Makes items full-width on smaller screens */
    }

    .menu-item img {
        height: 180px; /* Adjust for better proportions on mobile */
    }
}

footer {
    background-color: var(--header-bg);
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    color: white;
}

/* Promotions Section */
.promotions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    text-align: center;
}

.promo-box {
    background-color: var(--header-bg);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .promotions {
        flex-direction: column;
        align-items: center;
    }
}

/* About the Chef Section */
.chef-section {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.chef-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.chef-container img {
    width: 200px;
    border-radius: 10px;
}

.chef-info {
    max-width: 400px;
    text-align: left;
}


@media (max-width: 768px) {
    .chef-container {
        flex-direction: column;
        text-align: center;
    }

    .chef-info {
        text-align: center;
    }
}


