* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f7f1e9;
    color: #3c2f2f;
}

/* Header */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(60, 47, 47, 0.9);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-left: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 40px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e67e22;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.hero-content p {
    font-size: 1.3rem;
    color: #f7f1e9;
    margin-bottom: 30px;
}

.cta-button {
    background: #e67e22;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d35400;
}

/* Menu Section */
.menu-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.menu-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #3c2f2f;
}

.menu-filters {
    margin-bottom: 30px;
}

.filter-btn {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d35400;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: #f7f1e9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1s ease-in;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: #3c2f2f;
}

.menu-item p {
    font-size: 1rem;
    color: #6d4c41;
    padding: 0 15px;
}

.menu-item span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e67e22;
    padding: 15px;
}

/* Footer */
footer {
    background: #3c2f2f;
    color: #f7f1e9;
    text-align: center;
    padding: 40px 20px;
}

footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 10px;
}

.social-links a {
    color: #e67e22;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f7f1e9;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

    .hero-content p {
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column;
        background: rgba(60, 47, 47, 0.95);
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}