        :root {
            --cream: #F8F4E3;
            --soft-yellow: #EFE7C8;
            --warm-brown: #D4B483;
            --dark-brown: #6E4B3A;
            --black: #2D2D2D;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--black);
            background-color: var(--cream);
        }
        
        .display-font {
            font-family: 'Playfair Display', serif;
        }
        
        .bg-soft-yellow {
            background-color: var(--soft-yellow);
        }
        
        .bg-warm-brown {
            background-color: var(--warm-brown);
        }
        
        .text-dark-brown {
            color: var(--dark-brown);
        }
        
        .btn-primary {
            background-color: var(--dark-brown);
            border-color: var(--dark-brown);
            padding: 12px 24px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: #5a3c2f;
            border-color: #5a3c2f;
        }
        
        .hero {
            background: linear-gradient(rgba(45,45,45,0.5), rgba(45,45,45,0.5)), url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgD10leVGLFMBL7HsmLaR2upIhy-Lt1yhpx6teJ235CnN4LeWsYf2ERbeuOAuD9GWV2KG_Pm8dQ9wioG4ExnbhL-Od8EdkdLAG6rWNqgToZ8mIl8uP82tGPEIqjqiTZEKRQoUKcSTkJFT4PmKtPwtqFeZPAwIHatPyrKn_Vas8VNV5Jg32vEf0d8da4JE4/s16000/DSCF2382.jpg');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--warm-brown);
        }
        
        .feature-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(212, 180, 131, 0.3);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
        }
        
        .menu-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            background-color: white;
        }
        
        .menu-card:hover {
            transform: translateY(-10px);
        }
        
        .menu-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        
        .menu-card .card-body {
            padding: 1.5rem;
        }
        
        .price-tag {
            background-color: var(--soft-yellow);
            color: var(--dark-brown);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(212, 180, 131, 0.3);
        }
        
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--soft-yellow);
        }
        
        .rating {
            color: var(--warm-brown);
        }
        
        .cta-section {
            background: linear-gradient(rgba(45,45,45,0.8), rgba(45,45,45,0.8)), url('https://images.unsplash.com/photo-1517248135467-4aea1484105b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1374&q=80');
            background-size: cover;
            background-position: center;
            padding: 6rem 0;
            color: white;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
            border-color: #25D366;
            padding: 12px 24px;
            font-weight: 500;
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            border-color: #128C7E;
        }
        
        .batik-pattern {
            position: relative;
            overflow: hidden;
        }
        
        .batik-pattern:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%236E4B3A" fill-opacity="0.03" d="M0 0h100v100H0z"/><path fill="%236E4B3A" fill-opacity="0.05" d="M20 20h60v60H20z"/></svg>');
            background-size: 100px 100px;
            z-index: 0;
        }
        
        .batik-pattern > * {
            position: relative;
            z-index: 1;
        }
        
        .navbar {
            transition: all 0.3s;
            padding: 20px 0;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(45,45,45,0.95) !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--warm-brown);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        @media (max-width: 992px) {
            .hero {
                min-height: 70vh;
            }
            
            .hero-content {
                text-align: center;
                margin: 0 auto;
            }
            
            .section-title:after {
                bottom: -10px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: 60vh;
            }
            
            .display-3 {
                font-size: 2.5rem;
            }
        }
