:root {
    --primary-green: #005450;
    --light-green: #8BA89F;
    --brown: #814A23;
    --coral: #FF6B5C;
    --beige: #F5F3F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;background-color: beige;
    
}

/* Navigation Styles */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #814A23;
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 84, 80, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-container a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.logo {
    font-size: 1.5rem !important;
    color: var(--light-green) !important;
    
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-green);
    font-size: 4rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}


.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    background-color: beige;
}

.category-btn {
    padding: 0.8rem 2rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.maincourse {
    background: var(--brown);
    color: white;
}



.brunch {
    background: var(--brown);
    color: white;
}
.coffee {
    background: var(--brown);
    color: white;
}
.chinese {
    background: var(--brown);
    color: white;
}
.snacks {
    background: var(--brown);
    color: white;
}


.shakes {
    background: var(--brown);
    color: white;
}


.menu-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.menu-content h2 {
    color: var(--light-green);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.menu-item {
    margin-bottom: 2rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.item-header h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.price {
    color: var(--primary-green);
}

.menu-item p {
    color: #666;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        
    }

    .hero h1 {
        font-size: 3rem;
    }

    .menu-categories {
        flex-wrap: wrap;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-image {
        height: 50vh;
        width: 100%;
    }

}
.menu-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    color: var(--light-green);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-item {
    margin-bottom: 1rem;
}

.item-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.item-header h2 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.item-header .price {
    color: var(--primary-green);
    font-weight: 600;
}

.item-header .price::before {
    content: "| ";
    margin-right: 0.5rem;
    color: var(--primary-green);
}

.menu-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body {
        padding: 1rem;
    }

    .menu-section {
        padding: 1rem;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}
