/* CSS Reset & Variables */
:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --text-main: #e0e0e0;
    --text-muted: #999999;
    --accent: #d4af37; /* Elegant gold accent */
    --accent-hover: #b5952f;
    --border-color: #222222;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; color: #ffffff; letter-spacing: 1px; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 4px 10px rgba(0,0,0,0.8);}
h2 { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 40px; text-align: center; text-transform: uppercase; position: relative;}
h2::after {
    content: ''; display: block; width: 60px; height: 2px;
    background: var(--accent); margin: 15px auto 0;
}
h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--accent); }
p { margin-bottom: 15px; font-weight: 300; }
a { color: var(--text-main); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block; padding: 12px 30px; font-family: var(--font-heading);
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 3px; cursor: pointer; transition: var(--transition);
}
.btn-primary { background: var(--accent); color: #000; border: 1px solid var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #000; transform: translateY(-3px);}
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-3px);}
.hero-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }

/* --- BILINGUAL SYSTEM FIX --- */
.lang-id { display: none !important; }
span.lang-en { display: inline !important; }
div.lang-en, p.lang-en { display: block !important; }

body.lang-indonesia .lang-en { display: none !important; }
body.lang-indonesia span.lang-id { display: inline !important; }
body.lang-indonesia div.lang-id, 
body.lang-indonesia p.lang-id { display: block !important; }

/* Navbar */
header {
    position: fixed; top: 0; width: 100%;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px);
    z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; position: relative;}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 1px;
    bottom: -5px; left: 0; background-color: var(--accent); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.lang-switch {
    background: transparent; border: 1px solid var(--accent); color: var(--accent);
    padding: 5px 12px; cursor: pointer; font-family: var(--font-body);
    font-size: 0.8rem; text-transform: uppercase; transition: var(--transition); border-radius: 3px;
}
.lang-switch:hover { background: var(--accent); color: var(--bg-color); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../assets/backgroundfrances.jpg') no-repeat center center/cover;
    padding-top: 80px;
}
.hero p { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 4px; color: var(--text-main); margin-bottom: 10px; }

/* About & Info Section (Editorial Style) */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2::after { margin-left: 0; } /* Left align underline */
.about-image-wrapper { position: relative; }
.about-img { width: 100%; height: auto; border-radius: 5px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid #1a1a1a;}
.info-box {
    background: #0f0f0f; padding: 40px; border: 1px solid var(--border-color);
    border-radius: 5px; position: relative; margin-top: -60px; margin-left: -40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); z-index: 2;
}
.info-box ul { list-style: none; margin-top: 20px; }
.info-box li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; }
.info-box i { color: var(--accent); margin-top: 4px; font-size: 1.2rem;}

/* Signature Dishes Highlight */
.highlight-menu { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.highlight-card {
    background: var(--bg-secondary); border-radius: 8px; overflow: hidden;
    border: 1px solid var(--border-color); transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); box-shadow: 0 10px 20px rgba(0,0,0,0.5);}
.highlight-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 2px solid var(--accent);}
.highlight-content { padding: 25px; }
.highlight-content h3 { font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px;}
.highlight-content p { font-size: 0.95rem; color: var(--text-muted); margin: 0;}

/* Menu Section */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 50px; }
.menu-category h3 { border-bottom: 1px dashed var(--border-color); padding-bottom: 10px; margin-bottom: 20px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 15px; }
.menu-item-title { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; background: var(--bg-color); padding-right: 10px; z-index: 2;}
.menu-item-dots { flex-grow: 1; border-bottom: 1px dotted var(--text-muted); margin: 0 10px; opacity: 0.3; }
.menu-item-price { color: var(--accent); font-family: var(--font-heading); background: var(--bg-color); padding-left: 10px; z-index: 2;}
.menu-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: -10px; margin-bottom: 15px; }

/* Reviews Section */
.reviews-section { background-color: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
    background: var(--bg-color); padding: 40px 30px; text-align: center;
    border-radius: 5px; position: relative; border: 1px solid var(--border-color);
}
.review-card::before {
    content: "\201C"; font-family: Georgia, serif; font-size: 5rem;
    color: rgba(212, 175, 55, 0.1); position: absolute; top: -10px; left: 50%;
    transform: translateX(-50%); line-height: 1;
}
.stars { color: var(--accent); margin-bottom: 15px; letter-spacing: 2px;}

/* FAQ Section */
.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 10px; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; color: #fff;
    font-family: var(--font-heading); font-size: 1.1rem; padding: 25px 0;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question i { color: var(--accent); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 25px; color: var(--text-muted); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: #fff;}
.faq-item.active .faq-answer { max-height: 200px; }

/* Footer & Map */
footer { background: #000; padding: 60px 0 20px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.map-container { width: 100%; height: 400px; border-radius: 5px; overflow: hidden; border: 1px solid var(--border-color);}
.map-container iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%); /* Optional Dark Mode Map */ }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; font-size: 1.2rem; background: #111;
    color: var(--accent); /* <--- Teks ini ditambahkan agar ikon berwarna emas */
}
.social-links a:hover { border-color: var(--accent); background: var(--accent); color: #000; transform: translateY(-3px);}
.copyright { text-align: center; color: #555; font-size: 0.85rem; border-top: 1px solid #111; padding-top: 20px; }

/* Floating WhatsApp Button */
.wa-float {
    position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px;
    background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
    font-size: 30px; box-shadow: 0px 4px 15px rgba(0,0,0,0.5); z-index: 100;
    display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* Mobile Navigation Terpisah */
.mobile-nav { display: none; }

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .info-box { margin-top: -30px; margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hamburger { display: block; }
    .desktop-nav { display: none !important; }
    .hero-buttons { flex-direction: column; }
    .mobile-nav {
        display: flex; position: fixed; top: 80px; right: -100%; width: 250px;
        height: calc(100vh - 80px); background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(10px);
        flex-direction: column; padding: 40px 20px; border-left: 1px solid var(--border-color);
        transition: right 0.3s ease; align-items: flex-start; gap: 30px; z-index: 999;
    }
    .mobile-nav.active { right: 0; }
    .mobile-nav a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
    .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
}