:root {
    --primary-color: #4a5d45; /* Hijau sesuai gambar */
    --text-light: #fdfaf5;
    --accent-bg: #f8f6f2;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--accent-bg);
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.custom-nav {
    background: rgba(248, 246, 242, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.navbar-brand {
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
}

.nav-link {
    color: #333 !important;
    margin: 0 15px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 160px 0 100px;
    border-radius: 0 0 50px 50px;
}

.btn-order {
    background-color: #d8c3a5;
    color: #333;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-order:hover {
    background-color: #e3d5c1;
    transform: translateY(-3px);
}

.btn-order-outline {
    border: 1px solid #333;
    border-radius: 50px;
    padding: 8px 25px;
    color: #333;
}

.main-img {
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
    border: 10px solid var(--text-light);
}

/* Icon Features */
.icon-feat {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Menu Cards */
.menu-card {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    position: relative;
    overflow: hidden;
    color: white;
}

.menu-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.menu-card h3 {
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

.menu-card:hover {
    transform: scale(1.02);
    transition: 0.4s ease;
}
/* About Section Styling */
.bg-dark-green {
    background-color: var(--primary-color); /* Menggunakan variabel hijau yang tadi */
}

.about-img {
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    filter: brightness(0.9);
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

.about-list i {
    color: #d8c3a5; /* Warna krem untuk ikon check */
}

/* Responsif untuk Mobile */
@media (max-width: 991px) {
    .about-img {
        height: 300px;
        width: 100%;
    }
}
/* Footer */
.footer-custom {
    background-color: #f1ede6;
}

.footer-custom a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}

.footer-custom a:hover {
    color: var(--primary-color);
}

.social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--primary-color);
}