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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5dc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #f5f5dc;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6B4423;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #8B5A3C;
}



.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #6B4423;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #f5f5dc;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #6B4423;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1200');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 3px;
}

/* Info Section */
.info-section {
    background-color: #ede7d9;
    padding: 3rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #6B4423;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.info-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
}

.info-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.info-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background-color: #6B4423;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #8B5A3C;
    transform: translateY(-2px);
}

/* Menu Section */
.menu-section {
    background-color: #f5f5dc;
    padding: 3rem 0;
}

.menu-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.menu-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-image:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background-color: #6B4423;
    color: white;
    padding: 2.5rem 0 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #f5f5dc;
}

.footer-icon {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    background-color: #4a2f1a;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
.nav {
    display: none;
}

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo img {
        height: 60px;
    }

    .menu-image {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
