		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #ffffff;
            color: #000000;
            line-height: 1.6;
            overflow-x: hidden;
        }
		
		
		
		
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #ffffff;
            border-bottom: 1px solid #000000;
            z-index: 1000;
            padding: 20px 40px;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 4px;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .logo:hover {
            opacity: 0.6;
        }
		
		
		
		
        /* Main Content */
        main {
            min-height: 100vh;
            padding: 100px 40px 60px;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero Section */
        .hero-container {
            width: 100%;
            text-align: center;
        }

        .hero-content h1 {
            font-size: clamp(48px, 8vw, 120px);
            font-weight: 100;
            letter-spacing: -2px;
            margin-bottom: 20px;
            line-height: 0.9;
        }

        .hero-content p {
            font-size: 18px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 80px;
        }

        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            background-color: #000000;
            max-width: 1000px;
            margin: 0 auto;
        }

        .menu-box {
            background-color: #ffffff;
            height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
            color: #000000;
            position: relative;
            overflow: hidden;
        }

        .menu-box:hover {
            background-color: #000000;
            color: #ffffff;
        }

        .menu-number {
            font-size: 100px;
            font-weight: 100;
            line-height: 1;
            margin-bottom: 30px;
            opacity: 0.2;
            transition: all 0.4s ease;
        }

        .menu-box:hover .menu-number {
            opacity: 0.1;
            transform: scale(1.1);
        }

        .menu-title {
            font-size: 18px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .menu-subtitle {
            font-size: 14px;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
            margin-top: 10px;
            font-weight: 300;
        }

        .menu-box:hover .menu-subtitle {
            opacity: 0.7;
            transform: translateY(0);
        }



        /* Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 40px;
            background-color: #ffffff;
            border-top: 1px solid #f0f0f0;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #666666;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .logo {
                font-size: 18px;
                letter-spacing: 2px;
            }

            main {
                padding: 80px 20px 100px;
            }

            .hero-content h1 {
                font-size: 48px;
                margin-bottom: 15px;
            }

            .hero-content p {
                font-size: 14px;
                letter-spacing: 2px;
                margin-bottom: 60px;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .menu-box {
                height: 250px;
            }

            .menu-number {
                font-size: 72px;
                margin-bottom: 20px;
            }

            .menu-title {
                font-size: 16px;
                letter-spacing: 2px;
            }

            footer {
                padding: 20px;
                position: relative;
            }

            .footer-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        /* Tablet Responsive */
        @media (min-width: 769px) and (max-width: 1024px) {
            .menu-box {
                height: 300px;
            }

            .menu-number {
                font-size: 80px;
            }
        }
		
		