/* --- MODERN RESET & VARIABLES --- */
:root {
    --bg-dark: #121212;
    --bg-surface: #1a1a1a;
    --bg-card: #222222;
    --primary: #e67e22; /* Terracotta / Warm Orange */
    --primary-hover: #cf711b;
    --text-main: #f5f5f7;
    --text-muted: #a1a1a6;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* --- UTILITY COMPONENTS --- */
.section-badge {
    display: table;
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.mx-auto { margin-left: auto; margin-right: auto; }

h2 {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}
.text-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
}
.btn-primary {
    background-color: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}
.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: #fff;
}

/* --- NAVIGATION --- */
header {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.logo span { color: var(--primary); }
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}
nav ul li a:hover { color: #fff; }
.btn-nav {
    padding: 8px 20px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.85rem;
}
.btn-nav:hover {
    background-color: var(--primary);
    color: #fff;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to right, rgba(18,18,18,0.95) 30%, rgba(18,18,18,0.4));
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.tagline {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}
.italic-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-muted);
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}

/* --- ABOUT SECTION --- */
.about { background-color: var(--bg-surface); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-box {
    position: relative;
    height: 450px;
}
.img-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.img-wrapper:hover img { transform: scale(1.05); }
.main-img {
    width: 80%;
    height: 380px;
}
.sub-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 220px;
    border: 6px solid var(--bg-surface);
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.about-features {
    margin-top: 30px;
}
.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}
.about-feat-item i { color: var(--primary); }

/* --- FEATURES SECTION --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 126, 34, 0.3);
}
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- MENU SECTION --- */
.menu { background-color: var(--bg-surface); }
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}
.menu-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.menu-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.menu-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 450px;
}
.menu-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- CTA SECTION --- */
.cta-box {
    background: linear-gradient(135deg, #221810 0%, #121212 100%);
    border: 1px solid rgba(230, 126, 34, 0.15);
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-box h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-box p { color: var(--text-muted); max-width: 600px; margin-bottom: 30px; }
.info-list {
    display: flex;
    gap: 30px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 35px;
}
.info-list i { color: var(--primary); margin-right: 5px; }
.btn-whatsapp {
    background-color: #25d366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.socials { display: flex; gap: 20px; }
.socials a { color: var(--text-muted); font-size: 1.2rem; transition: color 0.3s; }
.socials a:hover { color: var(--primary); }

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 992px) {
    .about-grid, .menu-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-box { height: 380px; max-width: 500px; margin: 0 auto; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    nav, .btn-nav { display: none; } /* Sembunyikan menu di mobile untuk kesederhanaan */
    .hero-content h1 { font-size: 2.4rem; }
    .info-list { flex-direction: column; gap: 15px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}