 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #fff;
            min-height: 100vh;
        }
        
        /* Header */
        .header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 20px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #b4975a;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            font-size: 32px;
        }
        
        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .lang-btn {
            background: transparent;
            border: 1px solid #b4975a;
            color: #b4975a;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .lang-btn:hover {
            background: #b4975a;
            color: #0a0a0a;
        }
        
        .search-btn {
            background: transparent;
            border: none;
            color: #b4975a;
            font-size: 20px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            padding: 60px 20px;
            text-align: center;
            border-bottom: 2px solid #b4975a;
        }
        
        .hero h1 {
            font-size: 42px;
            color: #b4975a;
            margin-bottom: 10px;
        }
        
        .hero p {
            color: #f2f2f2;
            font-size: 18px;
        }
        
        .location-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid #b4975a;
            padding: 10px 20px;
            border-radius: 25px;
            margin-top: 20px;
            color: #b4975a;
        }
        
        /* Category Navigation */
        .category-nav {
            background: #1a1a1a;
            padding: 20px;
            position: sticky;
            top: 80px;
            z-index: 100;
            border-bottom: 1px solid #333;
            overflow-x: auto;
        }
        
        .category-nav::-webkit-scrollbar {
            height: 4px;
        }
        
        .category-nav::-webkit-scrollbar-thumb {
            background: #b4975a;
            border-radius: 2px;
        }
        
        .category-list {
            display: flex;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 5px;
        }
        
        .category-item {
            flex-shrink: 0;
            background: transparent;
            border: 1px solid #444;
            color: #888;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .category-item:hover {
            border-color: #b4975a;
            color: #b4975a;
        }
        
        .category-item.active {
            background: #b4975a;
            border-color: #b4975a;
            color: #0a0a0a;
        }
        
        /* Menu Sections */
        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .menu-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .menu-section.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #333;
        }
        
        .section-header h2 {
            font-size: 32px;
            color: #b4975a;
            margin-bottom: 10px;
        }
        
        .section-header p {
            color: #666;
        }
        
        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .menu-card {
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #333;
            transition: all 0.3s;
        }
        
        .menu-card:hover {
            border-color: #b4975a;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
        }
        
        .menu-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .menu-content {
            padding: 20px;
        }
        
        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        
        .menu-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
        }
        
        .menu-price {
            font-size: 18px;
            font-weight: bold;
            color: #b4975a;
        }
        
        .menu-desc {
            color: #888;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .menu-desc-ar {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            font-style: italic;
        }
        
        .veg-badge {
            display: inline-block;
            background: #2d5a2d;
            color: #7dd87d;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            margin-top: 10px;
        }
        
        /* Footer */
        .footer {
            background: #1a1a1a;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #333;
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer h3 {
            color: #b4975a;
            margin-bottom: 20px;
        }
        
        .locations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .location-card {
            background: #0a0a0a;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #333;
        }
        
        .location-card h4 {
            color: #b4975a;
            margin-bottom: 10px;
        }
        
        .location-card p {
            color: #888;
            font-size: 14px;
            line-height: 1.6;
        }

        .hero .logo2 {
    font-size: 28px;
    font-weight: bold;
    color: #b4975a;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}
.hero:before {
        position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
        background:rgb(38 38 38);
    content: "";
    opacity: .9;
    z-index: -2;
}
.sub_menu{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.sub_menu .menu-price{
    font-size: 16px;
    font-weight: 400;
    color: #b4975a;
}
.sub_menu h4{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
            }
            
            .category-item {
                padding: 10px 18px;
                font-size: 13px;
            }
        }