
        /* --- Variabel CSS untuk Tema --- */
        :root {
            --primary-color: #e74c3c;   /* Merah cabe untuk aksen */
            --secondary-color: #2c3e50; /* Biru tua gelap untuk teks dan header */
            --accent-color: #f39c12;    /* Kuning emas untuk highlight */
            --light-color: #ecf0f1;     /* Abu-abu sangat muda untuk background */
            --dark-color: #2c3e50;      /* Sama dengan secondary, untuk konsistensi */
            --success-color: #27ae60;   /* Hijau untuk sukses/harga */
            --font-family: 'Poppins', sans-serif;
        }

        /* --- Reset & Gaya Global --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
        }

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

        /* --- Header & Navigasi --- */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        header .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--secondary-color);
        }

        header .logo img {
            max-height: 50px;
            margin-right: 10px;
            border-radius: 8px;
        }

        header .logo h1 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--secondary-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* --- Hero Section (PERUBAHAN DINAMIS) --- */
        

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.2s ease;
            border: 2px solid transparent;
        }

        .btn:hover {
            background: transparent;
            border-color: white;
            transform: translateY(-3px);
        }

        /* --- Gaya Section Umum --- */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
        }

        /* --- PERUBAHAN UNTUK KATEGORI MENU --- */
        .menu-all-wrapper {
            max-height: 2000px;
            overflow-y: auto;
            padding: 0 10px;
        }

        .category-title {
            text-align: center;
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 40px 0 20px 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .category-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .menu-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .menu-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
            transition: transform 0.5s ease-in-out;
        }

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

        .menu-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .menu-card-content h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--secondary-color);
        }

        .menu-card-content p {
            color: #777;
            font-size: 0.9em;
            flex-grow: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .menu-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .price {
            font-size: 1.1em;
            font-weight: 700;
            color: var(--success-color);
        }

        .btn-whatsapp {
            background: #25d366;
            color: white;
            padding: 6px 12px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: background 0.3s ease;
        }
        .btn-whatsapp:hover {
            background: #128c7e;
        }

        /* --- Footer --- */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }

        .footer-section p, .footer-section ul {
            color: #b4b4b4;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #b4b4b4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            color: #b4b4b4;
        }

        /* --- Desain Responsif --- */
        @media (max-width: 1200px) {
            .menu-grid { grid-template-columns: repeat(4, 1fr); }
        }
        @media (max-width: 992px) {
            .menu-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            header .container { flex-direction: column; }
            header .logo h1 { font-size: 1.2rem; }
            .menu-toggle { display: flex; position: absolute; top: 20px; right: 20px; }
            nav { display: none; width: 100%; text-align: center; padding-top: 20px; }
            nav.active { display: block; }
            nav ul { flex-direction: column; width: 100%; }
            nav ul li { margin: 10px 0; width: 100%; }
            nav ul li a { display: block; padding: 10px 0; }
            .hero h2 { font-size: 2rem; }
            .section-title h2 { font-size: 2rem; }
            .menu-grid { grid-template-columns: repeat(2, 1fr); }
            .menu-all-wrapper { max-height: none; }
        }
        @media (max-width: 576px) {
            .menu-grid { grid-template-columns: 1fr; }
        }