/* Variabel Warna & Font Premium */
:root {
    --primary: #C5A880; /* Gold/Nude Elegan */
    --dark: #2C2C2C;
    --light: #FAFAFA;
    --white: #FFFFFF;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--light); line-height: 1.6; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* Navbar */
.navbar { padding: 25px 0; background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--primary); text-decoration: none; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero */
.hero { height: 80vh; background: url('https://images.unsplash.com/photo-1519415943484-9fa1873496d4?auto=format&fit=crop&w=1600&q=80') center/cover; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.6); }
.hero-text { position: relative; z-index: 1; max-width: 700px; padding: 0 20px; }
.hero-text h1 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px; color: var(--dark); line-height: 1.2; }
.hero-text p { font-size: 1.1rem; margin-bottom: 30px; letter-spacing: 1px; }
.btn-primary { display: inline-block; padding: 15px 35px; background: var(--primary); color: var(--white); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; transition: 0.4s; border: 1px solid var(--primary); }
.btn-primary:hover { background: transparent; color: var(--primary); }

/* Section Global */
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; color: var(--primary); }
.section-title p { font-size: 1rem; color: #666; }
.alamat-fiksi { color: #c62828; font-weight: 600; }

/* Katalog Grid */
.katalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.katalog-item { background: var(--white); transition: 0.4s; }
.img-wrapper { aspect-ratio: 4/5; overflow: hidden; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.katalog-item:hover .img-wrapper img { transform: scale(1.05); }
.item-info { padding: 30px 20px; text-align: center; }
.item-info h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; }
.price { color: var(--primary); font-size: 1.1rem; margin-bottom: 20px; }
.btn-wa-outline { display: block; padding: 12px; border: 1px solid var(--dark); color: var(--dark); text-decoration: none; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; }
.btn-wa-outline:hover { background: var(--dark); color: var(--white); }

/* Keunggulan */
/* Keunggulan (Updated) */
.bg-light { background: #F8F8F8; }
.keunggulan-flex { display: flex; gap: 30px; text-align: center; }
.keunggulan-item { flex: 1; padding: 40px 30px; background: var(--white); border: 1px solid #eaeaea; transition: 0.4s ease; }
.keunggulan-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--primary); }
.icon-premium { color: var(--primary); margin-bottom: 20px; display: inline-block; }
.keunggulan-item h3 { font-family: var(--font-heading); margin-bottom: 15px; font-size: 1.2rem; color: var(--dark); letter-spacing: 1px; }
.keunggulan-item p { font-size: 0.95rem; color: #666; }

/* Maps */
.map-wrapper { height: 450px; filter: grayscale(80%); transition: 0.5s; }
.map-wrapper:hover { filter: grayscale(0%); }
iframe { width: 100%; height: 100%; border: none; }

/* Footer */
footer { text-align: center; padding: 40px 0; background: var(--white); font-size: 0.9rem; color: #888; border-top: 1px solid #eee; }

/* Sticky WA */
.sticky-wa { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: var(--white); padding: 15px 30px; border-radius: 50px; text-decoration: none; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); z-index: 99; transition: 0.3s; }
.sticky-wa:hover { transform: translateY(-5px); }

/* Animasi Fade */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-text h1 { font-size: 2.5rem; }
    .keunggulan-flex { flex-direction: column; }
    section { padding: 60px 0; }
}