:root {
    --gold: #c5a059;
    --dark: #0f1113;
    --grey: #1c1e21;
    --text-light: #a0a0a0;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* Navigasi Modern */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 8%;
    z-index: 1000;
    transition: 0.5s ease;
}

.navbar.scrolled {
    background: rgba(15, 17, 19, 0.95);
    padding: 15px 8%;
    backdrop-filter: blur(10px);
}

.logo { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; letter-spacing: 2px; }
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; }
.nav-links li a {
    color: var(--white); text-decoration: none; margin: 0 20px;
    font-size: 0.9rem; letter-spacing: 1px; transition: 0.3s;
}
.nav-links li a:hover { color: var(--gold); }

.cart-icon { position: relative; cursor: pointer; font-size: 1.2rem; }
#cart-count {
    position: absolute; top: -10px; right: -10px;
    background: var(--gold); font-size: 10px; padding: 2px 6px; border-radius: 50%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1500&q=80') center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content { position: relative; z-index: 1; }
.hero-content h4 { color: var(--gold); letter-spacing: 5px; text-transform: uppercase; margin-bottom: 15px; }
.hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 1; margin-bottom: 30px; }
.hero-content h1 span { color: var(--gold); font-style: italic; }

.btn-gold {
    padding: 15px 35px; background: var(--gold); color: white;
    text-decoration: none; border-radius: 2px; font-weight: 600; transition: 0.3s;
}
.btn-gold:hover { background: #b08d48; transform: translateY(-3px); }

/* Menu Section */
.menu-section { padding: 100px 8%; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head span { color: var(--gold); font-style: italic; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; }

.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}

.card { background: var(--grey); border-radius: 8px; overflow: hidden; transition: 0.4s; border: 1px solid #2a2c2f; }
.card:hover { border-color: var(--gold); transform: translateY(-10px); }

.card-img { height: 250px; position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card:hover .card-img img { scale: 1.1; }
.tag { position: absolute; top: 15px; left: 15px; background: var(--gold); padding: 5px 15px; font-size: 10px; }

.card-body { padding: 25px; }
.card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 10px; }
.card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }

.card-footer { display: flex; justify-content: space-between; align-items: center; }
.price { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.card-footer button {
    background: transparent; border: 1px solid var(--gold); color: var(--gold);
    width: 35px; height: 35px; border-radius: 50%; cursor: pointer; transition: 0.3s;
}
.card-footer button:hover { background: var(--gold); color: white; }

/* Cart Drawer */
.cart-drawer {
    position: fixed; right: -100%; top: 0; width: 400px; height: 100%;
    background: var(--dark); z-index: 2000; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 30px; box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.cart-drawer.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid #333; padding-bottom: 15px; }

.btn-wa {
    width: 100%; padding: 15px; background: #25d366; color: white; border: none;
    border-radius: 5px; font-weight: 600; cursor: pointer; margin-top: 20px;
}

/* Scroll Animation Class */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }