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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(255,165,0,0.2)), 
                        url('https://i.postimg.cc/Z5Hjz8cz/20250424-235758.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            padding-top: 80px;
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease-out;
        }

        .loading-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Header Animations */
        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 1);
            padding: 10px 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(-100%);
            animation: slideDown 0.8s ease-out 0.5s forwards;
        }

        @keyframes slideDown {
            to { transform: translateY(0); }
        }

        .logo img {
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Desktop Navigation - Show all links */
        .desktop-nav {
            display: none;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .desktop-nav ul li a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .desktop-nav ul li a:hover {
            color: white;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transform: translateY(-2px);
        }

        /* Hamburger Menu - Hide on desktop */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .hamburger-menu:hover {
            transform: scale(1.1);
        }

        .hamburger-menu .bar {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger-menu.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        @media (min-width: 769px) {
            .desktop-nav {
                display: block;
            }
            
            .hamburger-menu {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .hamburger-menu {
                display: flex !important;
            }
        }

        /* Side Menu Animations */
        .menu {
            position: fixed;
            top: 60px;
            left: 0;
            background: linear-gradient(135deg, #333, #555);
            width: 220px;
            height: calc(100% - 60px);
            transform: translateX(-100%);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 999;
            overflow: hidden;
        }

        .menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .menu.open {
            transform: translateX(0);
            box-shadow: 5px 0 20px rgba(0,0,0,0.3);
        }

        .menu.open::before {
            left: 100%;
        }

        .menu ul {
            list-style: none;
            padding: 20px 0;
        }

        .menu ul li {
            margin: 5px 0;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .menu.open ul li {
            transform: translateX(0);
            opacity: 1;
        }

        .menu ul li:nth-child(1) { transition-delay: 0.1s; }
        .menu ul li:nth-child(2) { transition-delay: 0.2s; }
        .menu ul li:nth-child(3) { transition-delay: 0.3s; }
        .menu ul li:nth-child(4) { transition-delay: 0.4s; }
        .menu ul li:nth-child(5) { transition-delay: 0.5s; }
        .menu ul li:nth-child(6) { transition-delay: 0.6s; }

        .menu ul li a {
            font-size: 16px;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .menu ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .menu ul li a:hover::before {
            left: 0;
        }

        .menu ul li a:hover {
            color: white;
            transform: translateX(10px);
        }

        /* Page Container */
        .page-container {
            width: 100%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Menu Title */
        .menu-title {
            font-size: 3rem;
            color: #ff6600;
            margin: 40px 0 20px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            animation: glow 2s ease-in-out infinite alternate;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.5s forwards, glow 2s ease-in-out infinite alternate 1.3s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glow {
            from { text-shadow: 2px 2px 4px rgba(0,0,0,0.7), 0 0 10px #ff6600; }
            to { text-shadow: 2px 2px 4px rgba(0,0,0,0.7), 0 0 20px #ff6600, 0 0 30px #ff6600; }
        }

        /* Menu Description */
        .menu-description {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out 0.7s forwards;
        }

        /* Food Container - Simplified and Fixed */
        .food-container1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            width: 100%;
            margin: 40px auto;
            padding: 20px;
        }

        /* Specific desktop layouts */
        @media (min-width: 1200px) {
            .food-container1 {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
            .food-container1 {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
        }

        @media (min-width: 769px) and (max-width: 991px) {
            .food-container1 {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        .food-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.5s ease;
            padding: 20px;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease-out forwards;
            width: 100%;
            box-sizing: border-box;
        }

        /* Staggered animation delays */
        .food-card:nth-child(1) { animation-delay: 0.1s; }
        .food-card:nth-child(2) { animation-delay: 0.2s; }
        .food-card:nth-child(3) { animation-delay: 0.3s; }
        .food-card:nth-child(4) { animation-delay: 0.4s; }
        .food-card:nth-child(5) { animation-delay: 0.5s; }
        .food-card:nth-child(6) { animation-delay: 0.6s; }
        .food-card:nth-child(7) { animation-delay: 0.7s; }
        .food-card:nth-child(8) { animation-delay: 0.8s; }
        .food-card:nth-child(9) { animation-delay: 0.9s; }
        .food-card:nth-child(10) { animation-delay: 1.0s; }
        .food-card:nth-child(11) { animation-delay: 1.1s; }
        .food-card:nth-child(12) { animation-delay: 1.2s; }
        .food-card:nth-child(13) { animation-delay: 1.3s; }
        .food-card:nth-child(14) { animation-delay: 1.4s; }
        .food-card:nth-child(15) { animation-delay: 1.5s; }
        .food-card:nth-child(16) { animation-delay: 1.6s; }

        .food-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .food-card:hover::before {
            transform: scaleX(1);
        }

        .food-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(255,102,0,0.2);
        }

        .food-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            margin-bottom: 15px;
        }

        .food-card:hover img {
            transform: scale(1.05);
        }

        .food-name {
            font-size: 1.4rem;
            color: #ff6600;
            margin: 0 0 10px 0;
            font-weight: 600;
        }

        .food-price {
            font-size: 1.3rem;
            color: #27ae60;
            margin: 0 0 10px 0;
            font-weight: 600;
        }

        .food-details {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .food-card button {
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,102,0,0.3);
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }

        .food-card button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .food-card button:hover::before {
            left: 100%;
        }

        .food-card button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,102,0,0.4);
        }

        /* Floating animation for cards - simplified */
        .food-card {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        .food-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(255,102,0,0.2);
        }

        /* Scroll to Top Button */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            cursor: pointer;
            display: none;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 20px rgba(255,102,0,0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-top-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255,102,0,0.6);
        }

        /* Responsive Design - Fixed */
        @media (max-width: 768px) {
            .menu-title {
                font-size: 2.5rem;
            }

            .menu-description {
                font-size: 1.1rem;
                padding: 0 10px;
            }

            .food-container1 {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 15px;
                margin: 30px auto;
            }

            .food-card {
                padding: 18px;
            }

            .food-card img {
                height: 180px;
            }

            .hamburger-menu {
                display: flex;
            }

            .desktop-nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .menu-title {
                font-size: 2rem;
            }

            .menu-description {
                font-size: 1rem;
                padding: 0 5px;
            }

            .food-container1 {
                padding: 10px;
            }

            .food-card {
                padding: 15px;
            }

            .food-card img {
                height: 160px;
            }

            .food-name {
                font-size: 1.2rem;
            }

            .food-price {
                font-size: 1.1rem;
            }

            .food-details {
                font-size: 0.95rem;
            }
        }