body { font-family: 'Georgia', serif; margin: 0; padding: 0; background-color: #fcf9f2; color: #2c3e50; }
        header { text-align: center; padding: 20px; background: #2c3e50; color: #ecf0f1; position: sticky; top:0; z-index:1000; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
        .logo { font-size: 2.5rem; text-transform: uppercase; letter-spacing: 3px; border: 2px solid #e67e22; display: inline-block; padding: 10px 20px; margin-bottom: 15px; cursor: pointer; }
        
        nav { display: flex; justify-content: center; gap: 30px; }
        nav a { color: #ecf0f1; text-decoration: none; font-family: 'Arial', sans-serif; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; cursor: pointer; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: 0.3s; }
        nav a:hover, nav a.active { color: #e67e22; border-bottom-color: #e67e22; }
        
        .page-content { display: none; opacity: 0; transition: opacity 0.4s ease; min-height: 70vh; }
        .page-content.active { display: block; opacity: 1; }

        .hero { background: url('https://images.unsplash.com/photo-1544148103-0773bf10d330?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover; height: 500px; display: flex; align-items: center; justify-content: center; }
        .hero-banner { background: rgba(44, 62, 80, 0.85); color: #fff; padding: 40px; text-align: center; border-radius: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        .hero-banner h2 { font-size: 2.5rem; margin: 0 0 10px; color: #e67e22; }
        
        .section-wrap { max-width: 800px; margin: 60px auto; padding: 0 20px; }
        .section-title { text-align: center; font-size: 2rem; border-bottom: 2px solid #e67e22; padding-bottom: 10px; margin-bottom: 40px; color: #2c3e50; }
        
        .menu-item { display: flex; justify-content: space-between; border-bottom: 1px dashed #ccc; padding: 15px 0; }
        .item-name { font-weight: bold; font-size: 1.2rem; }
        .item-desc { font-family: 'Arial', sans-serif; font-size: 0.9rem; color: #7f8c8d; margin-top: 5px; }
        .item-price { font-weight: bold; color: #e67e22; font-size: 1.2rem; }
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-family: 'Arial', sans-serif; font-weight: bold; margin-bottom: 5px; }
        .form-control { width: 100%; padding: 12px; border: 1px solid #ccc; font-family: inherit; box-sizing: border-box; }
        .btn { background: #e67e22; color: #fff; border: none; padding: 15px 30px; font-family: 'Arial', sans-serif; text-transform: uppercase; font-weight: bold; cursor: pointer; letter-spacing: 1px; transition: 0.3s; width: 100%; }
        .btn:hover { background: #d35400; }

        .map-placeholder { background: #ddd; height: 300px; display: flex; align-items: center; justify-content: center; color: #777; font-family: 'Arial', sans-serif; margin-bottom: 30px; border: 1px solid #ccc; }

        footer { background: #2c3e50; color: #ecf0f1; text-align: center; padding: 40px 20px; font-family: 'Arial', sans-serif; border-top: 4px solid #e67e22; margin-top: 40px; }
        
        /* Grid for gallery */
        .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 30px; }
        .gallery-img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; }