/*
 * MENU Page Styles - Q-Bab Burger
 */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f9a825;
            font-family: Arial, sans-serif;
            color: #1a1a1a;
        }

        /* Navbar styles moved to navbar.css */

        /* Menu Header */
        .menu-header {
            text-align: center;
            padding: 150px 40px 80px;
        }

        .menu-header-subtitle {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .menu-header-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            letter-spacing: 2px;
            line-height: 1.2;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

        .menu-header-divider {
            width: 60px;
            height: 3px;
            background: #1a1a1a;
            margin: 0 auto;
        }

        /* Category Filter */
        .category-filter {
            text-align: center;
            padding: 40px 20px;
            background: #f4b400;
        }

        .category-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-btn {
            padding: 12px 30px;
            background: rgba(26, 26, 26, 0.1);
            border: 2px solid transparent;
            color: #1a1a1a;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .category-btn:hover {
            background: rgba(26, 26, 26, 0.2);
            transform: translateY(-2px);
        }

        .category-btn.active {
            background: #1a1a1a;
            color: #f9a825;
            border-color: #1a1a1a;
        }

        .menu-category-section {
            margin-bottom: 60px;
        }

        .category-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
            color: #1a1a1a;
        }

        /* Menu Container */
        .menu-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px 80px;
        }

        /* Menu Item */
        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            padding-bottom: 30px;
            border-bottom: 2px dotted rgba(26, 26, 26, 0.3);
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .menu-item:hover {
            transform: translateX(10px);
        }

        .menu-item-image {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: rgba(26, 26, 26, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .menu-item:hover .menu-item-image img {
            transform: scale(1.1);
        }

        .menu-item-left {
            flex: 1;
        }

        .menu-item-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-item-badge {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: #e74c3c;
            color: white;
            border-radius: 3px;
            letter-spacing: 0.5px;
        }

        .menu-item-description {
            font-size: 0.9rem;
            color: rgba(26, 26, 26, 0.8);
            line-height: 1.5;
            max-width: 400px;
        }

        .menu-item-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: #e74c3c;
            letter-spacing: 1px;
            margin-left: 20px;
            white-space: nowrap;
        }

        /* Add to Cart Button */
        .add-to-cart-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 16px;
            background: #1a1a1a;
            color: white;
            border: none;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .add-to-cart-btn:hover {
            background: #e74c3c;
            transform: scale(1.05);
        }

        /* Footer */
        .menu-footer {
            text-align: center;
            padding: 60px 40px;
            background: rgba(0, 0, 0, 0.05);
        }

        .menu-footer-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .menu-footer-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #e74c3c;
            color: white;
            text-decoration: none;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 2px;
            transition: all 0.3s;
        }

        .menu-footer-btn:hover {
            background: #c0392b;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .menu-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 40px 20px;
            }

            .menu-header {
                padding: 120px 20px 60px;
            }

            .menu-header-title {
                font-size: 2.5rem;
            }

            .menu-item-image {
                width: 80px;
                height: 80px;
            }

            .top-navbar {
                padding: 15px 20px 15px 100px;
                min-height: 60px;
            }

            .top-navbar.scrolled {
                padding: 10px 20px 10px 100px;
                min-height: 50px;
            }

            .nav-menu {
                display: none;
            }

            .site-logo {
                left: 15px;
            }
        }
