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

/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background-color: var(--header-bg);
    padding: 15px;
    text-align: center;
    position: relative;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: var(--link-color);
    font-size: 1.2em;
    font-weight: bold;
    padding: 8px 12px;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: white;
    background-color: var(--link-color);
    border-radius: 5px;
    padding: 8px 12px;
}


#menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-top: 20px;
}


.menu-item {
    background-color: #fff;
    border: 3px solid #3f2b27;
    border-radius: 10px;
    width: 280px;
    padding: 15px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.menu-item:hover {
    transform: scale(1.05);
}


.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}


.menu-item a {
    display: block;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.menu-item a:hover {
    color: var(--link-color);
}

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


@media (max-width: 768px) {
    #menu-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 90%;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 10px;
        background: var(--header-bg);
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* 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;
    }
}

/* Reservation Button */
.reservation-button {
    display: inline-block;
    background-color: var(--link-color);
    color: white;
    padding: 12px 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.reservation-button:hover {
    background-color: var(--button-hover);
}

/* Contact Section */
.contact {
    background-color: #f8f8e8;
    padding: 20px;
    margin: 40px auto;
    border-radius: 10px;
    text-align: center;
}

.contact a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}


.story, .team, .values, .testimonials {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    background-color: #f8f8e8;
    border-radius: 10px;
    max-width: 800px;
}

/* Restaurant Image */
.story img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-top: 15px;
}

/* Meet the Team */
.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;
}

/* Values Section */
.values ul {
    list-style-type: none;
    padding: 0;
}

.values li {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Testimonials */
.testimonials {
    background-color: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; 
}
