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

        html {
            scroll-behavior: smooth;
            scrollbar-width: none;
        }

        :root {
            --bg: #ffffff;
            --surface: #f4f4f4;
            --text: #111111;
            --accent: #E8543E;
            --text-muted: #666666;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] {
            --bg: #0E0E0E;
            --surface: #1A1A1A;
            --text: #ffffff;
            --accent: #FF7958;
            --text-muted: #999999;
            --shadow: rgba(255, 255, 255, 0.05);
        }

        footer p b a {
            transition: ease-in-out 0.3s;
        }

        footer p b a:hover {
            font-size: 1.1rem;
            transition: linear 0.3s;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--bg);
            color: var(--text);
            transition: background 0.3s ease, color 0.3s ease;
            line-height: 1.6;
        }

        /* Navbar */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--shadow);
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
        }

        .theme-toggle {
            background: var(--surface);
            border: none;
            padding: 0.6rem 1rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .theme-toggle:hover {
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 5% 4rem;
            background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            height: 400px;
            object-fit: cover;
            border-radius: 24px;
            margin-bottom: 2rem;
            box-shadow: 0 20px 60px var(--shadow);
            transition: transform 0.3s ease;
        }

        .hero-image:hover {
            transform: scale(1.02);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .tagline {
            font-size: 1.5rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 8px 24px rgba(232, 84, 62, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(232, 84, 62, 0.4);
        }

        .btn-secondary {
            background: var(--surface);
            color: var(--text);
            box-shadow: 0 4px 16px var(--shadow);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            background: var(--text);
            color: var(--bg);
        }

        /* Section Styling */
        section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
        }

        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .menu-card {
            background: var(--surface);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px var(--shadow);
        }

        [data-theme="dark"] .menu-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .menu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px var(--shadow);
        }

        .menu-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .menu-card-content {
            padding: 1.5rem;
        }

        .menu-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        .menu-card p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .feature-card {
            padding: 2rem;
            background: var(--surface);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        /* Ordering Flow */
        .flow {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .flow-step {
            text-align: center;
            max-width: 200px;
        }

        .flow-number {
            width: 60px;
            height: 60px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1rem;
        }

        /* Testimonials */
        .testimonials {
            background: var(--surface);
            border-radius: 24px;
            padding: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            padding: 2rem;
            background: var(--bg);
            border-radius: 16px;
            box-shadow: 0 4px 16px var(--shadow);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--text-muted);
        }

        .testimonial-author {
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: var(--surface);
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid var(--shadow);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
            font-size: 1.5rem;
        }

        .social-links a {
            color: var(--text);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                padding: 5rem 5% 3rem;
            }

            section {
                padding: 3rem 5%;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }