* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F8F4E3;
}

h1, h2, h3 {
    font-family: serif;
    color: #A3331C;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1.5em;
}

a {
    text-decoration: none;
    color: #A3331C;
} 

.logo {
    font-family: serif;
    font-size: 2.1em; 
    font-weight: 900; 
    color: #fff; 
    letter-spacing: 1px; 
}

.navbar
{
    display: flex;
    background-color: black;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    transition: color 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e2b258;
    border-bottom: 2px solid #e2b258;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('food.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 2em;
    margin-bottom: 0.2em;
    color: #f8f4e3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #c99c43; 
    transform: scale(1.05);
}

.about-section {
    background-color: #F8F4E3;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 1em auto;
    font-size: 1.1em;
}

.menu-section {
    background-color: #fff;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 2em;
}

.menu-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: left;
    transition: box-shadow 0.3s;
}

.menu-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.menu-item h3 {
    color:#A3331C;
    font-size: 1.5em;
    margin-bottom: 0.2em;
}

.menu-item .price {
    color: #E2B258;
    font-weight: 700;
    margin-bottom: 0.5em;
    font-style: italic;
}

footer {
    background-color: #A3331C;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-links {
        margin-top: 15px;
        width: 100%;
        justify-content: space-around;
    }

    .nav-links li {
        margin: 0;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    main section {
        padding: 60px 20px;
    }

    h2 {
        font-size: 2em;
    }
}