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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px 20px;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        }

        .logo-container {
            width: 200px;
            height: 200px;
            margin-bottom: 30px;
            animation: fadeInScale 1s ease-out;
        }

        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .welcome-text {
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        .welcome-text h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: #d4af37;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .welcome-text h2 {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: #fff;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .address {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            color: #aaa;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.5s backwards;
        }

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

        /* Social Links Section */
        .section {
            padding: 60px 20px;
            animation: fadeIn 1s ease-out;
        }

        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #d4af37;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            margin-bottom: 60px;
        }

        .social-card {
            background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
            border: 2px solid #d4af37;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .social-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            border-color: #fff;
        }

        .social-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .social-card h3 {
            color: #d4af37;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .social-card p {
            color: #bbb;
            font-size: 0.95rem;
        }

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

        .menu-item {
            background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
            border: 1px solid #3a3a3a;
            border-radius: 15px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-item:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        .menu-item:hover::before {
            opacity: 1;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .menu-item h3 {
            color: #d4af37;
            font-size: 1.3rem;
            flex: 1;
        }

        .price {
            background: #d4af37;
            color: #1a1a1a;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1.1rem;
            white-space: nowrap;
        }

        
        /* Price Options for Multiple Sizes */
        .price-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 15px;
            position: relative;
            z-index: 1;
        }

        .price-option {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid #d4af37;
            border-radius: 10px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .price-option:hover {
            background: rgba(212, 175, 55, 0.2);
            transform: scale(1.05);
        }

        .size-label {
            color: #d4af37;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .price-small {
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .menu-item p {
            color: #bbb;
            line-height: 1.6;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        /* Category Filter */
        .category-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .category-btn {
            background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
            color: #d4af37;
            border: 2px solid #3a3a3a;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .category-btn:hover {
            border-color: #d4af37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .category-btn.active {
            background: linear-gradient(135deg, #d4af37 0%, #c49d2e 100%);
            color: #1a1a1a;
            border-color: #d4af37;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }

        .menu-item.hidden {
            display: none;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: #d4af37;
            color: #1a1a1a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
        }

        @media (max-width: 768px) {
            .logo-container {
                width: 150px;
                height: 150px;
            }

            .social-links {
                grid-template-columns: 1fr;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .scroll-top {
                bottom: 20px;
                left: 20px;
                width: 45px;
                height: 45px;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }