
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-brown: #8B4513;
            --light-brown: #A0522D;
            --cream: #FFF8DC;
            --dark-cream: #F5F5DC;
            --green: #2E8B57;
            --light-green: #98FB98;
            --text-dark: #333;
            --text-light: #666;
        }
        
        body {
            background-color: var(--cream);
            color: var(--text-dark);
            line-height: 1.6;
            padding-top: 80px; /* For fixed header */
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--primary-brown);
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--light-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--light-green);
        }
        
        nav ul li a.active {
            color: var(--light-green);
        }
        
        nav ul li a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--light-green);
        }
        
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Main Content */
        main {
            min-height: 70vh;
        }
        
        .page {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .page.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Home Page */
        .hero {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.8)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 0;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--green);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--light-green);
            color: var(--text-dark);
            transform: translateY(-3px);
        }
        
        .popular-items {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-brown);
            font-size: 32px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary-brown);
        }
        
        .items-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .item-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .item-card:hover {
            transform: translateY(-10px);
        }
        
        .item-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .item-content {
            padding: 20px;
        }
        
        .item-content h3 {
            color: var(--primary-brown);
            margin-bottom: 10px;
        }
        
        .item-content p {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .item-price {
            color: var(--green);
            font-weight: bold;
            font-size: 20px;
        }
        
        /* About Page */
        .about-content {
            padding: 60px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text h2 {
            color: var(--primary-brown);
            margin-bottom: 20px;
            font-size: 32px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .about-image {
            background: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            height: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .values {
            background-color: var(--dark-cream);
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .values h3 {
            color: var(--primary-brown);
            margin-bottom: 20px;
            text-align: center;
            font-size: 28px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .value-item {
            text-align: center;
            padding: 20px;
        }
        
        .value-item i {
            font-size: 40px;
            color: var(--green);
            margin-bottom: 15px;
        }
        
        /* Menu Page */
        .menu-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .tab-btn {
            background-color: white;
            border: 2px solid var(--primary-brown);
            color: var(--primary-brown);
            padding: 10px 25px;
            margin: 0 10px 10px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            font-size: 18px;
        }
        
        .tab-btn:hover, .tab-btn.active {
            background-color: var(--primary-brown);
            color: white;
        }
        
        .menu-category {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .menu-category.active {
            display: block;
        }
        
        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .menu-item {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            transition: transform 0.3s;
        }
        
        .menu-item:hover {
            transform: translateY(-5px);
        }
        
        .menu-item-icon {
            font-size: 40px;
            color: var(--primary-brown);
            margin-right: 20px;
        }
        
        .menu-item-info {
            flex: 1;
        }
        
        .menu-item-title {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .menu-item-title h3 {
            color: var(--primary-brown);
        }
        
        .menu-item-price {
            color: var(--green);
            font-weight: bold;
            font-size: 20px;
        }
        
        /* Contact Page */
        .contact-content {
            padding: 60px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h2 {
            color: var(--primary-brown);
            margin-bottom: 20px;
            font-size: 32px;
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-item i {
            font-size: 24px;
            color: var(--green);
            margin-right: 15px;
            width: 30px;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-brown);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-brown);
        }
        
        .map {
            height: 300px;
            background-color: #eee;
            border-radius: 10px;
            margin-top: 40px;
            background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=New+York,NY&zoom=15&size=600x300&scale=2&markers=color:red%7CNew+York,NY&key=DEMO_KEY');
            background-size: cover;
            background-position: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-brown);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--light-green);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--light-green);
            color: var(--text-dark);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content, .contact-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary-brown);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 0 0 30px 0;
            }
            
            nav ul li a {
                font-size: 22px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .items-grid, .menu-items {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 50px 0;
            }
        }
    