:root {
    --primary-color: #6f4e37;
    --secondary-color: #f5f5dc;
    /* DIUBAH: Warna gelap dibuat sedikit lebih terang dan berbeda tone */
    --dark-color: #2a221c; 
    --light-color: #fff;
    --font-family: 'Poppins', sans-serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--dark-color);
    /* DIUBAH: Tambahkan background gradient agar tidak monoton */
    background-image: radial-gradient(circle, #4d3a2d 0%, var(--dark-color) 70%);
    color: #333;
}

.container { 
    max-width: 1100px; 
    margin: auto; 
    padding: 0 20px; 
}

h2 { 
    font-size: 2.5rem; 
    text-align: center; 
    margin-bottom: 40px; 
    color: var(--primary-color); 
}

section { 
    padding: 80px 0; 
}

/* Header & Navigasi (Tetap sama) */
#header {
    background: transparent;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease;
}
#header.scrolled { 
    background-color: rgba(34, 26, 20, 0.9); 
    backdrop-filter: blur(5px); 
}
#header nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: auto; 
    padding: 0 20px; 
}
.logo { 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--light-color); 
    text-decoration: none; 
}
#header ul { 
    list-style: none; 
    display: flex; 
}
#header ul li a { 
    padding: 0 15px; 
    text-decoration: none; 
    color: var(--light-color); 
    font-weight: 600; 
    transition: color 0.3s ease; 
}
#header ul li a:hover, #header ul li a.active { 
    color: #c5a58a; 
}

/* Hero Section dengan 3D */
.hero { 
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    color: var(--light-color); 
    padding: 0 20px; 
    position: relative; 
    overflow: hidden; 
}
#bg-canvas { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1; 
}
.hero-content { 
    position: relative; 
    z-index: 2; 
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 800px;
    /* DIUBAH: Efek blur ini yang membuat 3D nya kabur, jadi kita nonaktifkan */
    /* backdrop-filter: blur(5px); */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Tambahan: Memberi sedikit garis tepi */
}
.hero-content h1 { 
    font-size: 3.5rem; 
    color: var(--light-color); 
    margin-bottom: 1rem; 
}
.hero-content p { 
    font-size: 1.2rem; 
    max-width: 600px; 
    margin: 0 auto 2rem auto; 
}
.cta-button { 
    display: inline-block; 
    background: var(--primary-color); 
    color: var(--light-color); 
    padding: 12px 25px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: 600; 
    transition: background-color 0.3s; 
}
.cta-button:hover { 
    background-color: #5a3e2b; 
}

/* Sisa kode CSS di bawah ini tetap sama... */
/* ... (salin sisa kode CSS Anda yang sebelumnya di sini) ... */

/* BAGIAN MENU */
.menu-section {
    background: #fdfaf6;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.menu-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.menu-item h3 {
    margin: 15px 0 5px;
    color: var(--primary-color);
}
.menu-item p {
    padding: 0 15px;
    font-size: 0.9rem;
    color: #666;
    min-height: 45px;
}
.menu-item .price {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
    font-size: 1.1rem;
}

/* === BAGIAN TENTANG & KONTAK YANG SUDAH DIPERBAIKI === */
.tentang-section { 
    background-color: #2c211a; 
    color: #e0dcd1;
}
.tentang-content { 
    display: flex; 
    align-items: center; 
    gap: 60px;
}
.tentang-image {
    flex: 2;
}
.tentang-text {
    flex: 3;
}
.tentang-image img { 
    width: 100%;
    height: auto;
    border-radius: 8px; 
    display: block;
}
.tentang-text h2 { 
    color: var(--light-color);
    font-size: 2.8rem; 
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px; 
}
.tentang-text p {
    line-height: 1.8;
    font-size: 1rem;
}
.kontak-section { 
    background-color: var(--primary-color); 
    color: var(--light-color); 
    text-align: center; 
}
.kontak-section h2 { 
    color: var(--light-color); 
}
.kontak-info { 
    margin-top: 20px; 
    font-size: 1.1rem; 
}
/* ========================================================= */
/* Footer */
footer { 
    background: #1a1410; 
    color: #aaa; 
    text-align: center; 
    padding: 20px 0; 
}