:root {
    --bg-color: #ffffff;
    --text-color: #333;
    --header-bg: #222;
    --link-color: #d4af37; /* Gold */
    --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 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-item {
    border: 1px solid #ccc;
    padding: 15px;
    width: 200px;
}

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);
}

/* Responsive: Stack promo boxes on smaller screens */
@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;
}

/* Responsive: Stack chef image and text on smaller screens */
@media (max-width: 768px) {
    .chef-container {
        flex-direction: column;
        text-align: center;
    }

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

