* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #FFF8E7;
    color: #2C1810;
    line-height: 1.6;
}

header {
    background-color: #FFF8E7;
    padding: 2rem 2rem 1rem;
    text-align: center;
}

h1 {
    font-family: 'Didot', 'Bodoni MT', 'Cochin', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.tagline {
    font-size: 1rem;
    font-style: italic;
    color: #5C4033;
    margin-bottom: 1.5rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.nav-btn {
    background-color: #C85C4C;
    color: white;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #A84A3C;
}

.nav-btn.active {
    background-color: #A84A3C;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.intro,
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Didot', 'Bodoni MT', 'Cochin', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-header p,
.intro p {
    font-size: 1.1rem;
    color: #5C4033;
}

.menu-items {
    display: grid;
    gap: 2rem;
}

.menu-item {
    background-color: #E8D5C4;
    border: 2px solid #C8A882;
    border-radius: 15px;
    padding: 1.5rem;
}

.menu-item.featured {
    background-color: #F5E6D3;
    border-color: #D4B896;
}

.menu-item h2,
.menu-item h3 {
    font-family: 'Didot', 'Bodoni MT', 'Cochin', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.menu-item .description {
    font-size: 1rem;
    color: #3C2415;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.menu-item .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C1810;
}

.size {
    font-size: 1rem;
    font-weight: 400;
    color: #5C4033;
}

.original-price {
    text-decoration: line-through;
    color: #8B6F47;
    font-size: 1rem;
    margin-right: 0.5rem;
}

footer {
    background-color: #FFF8E7;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #D4B896;
}

.contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h3 {
    font-family: 'Didot', 'Bodoni MT', 'Cochin', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.contact p {
    margin: 0.25rem 0;
    color: #3C2415;
}

.hours-label,
.address-label,
.social-label {
    font-weight: 600;
    margin-top: 1rem;
    color: #2C1810;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #5C4033;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-btn {
        width: 200px;
        text-align: center;
    }

    main {
        padding: 0 1rem;
    }

    .menu-item {
        padding: 1rem;
    }
}