:root {
    --primary-color: #B7410E; /* Merah Bata */
    --secondary-color: #2E8B57; /* Hijau Daun */
    --accent-color: #DAA520; /* Emas Batik */
    --background-color: #F5DEB3; /* Krem Pasir */
    --text-color: #2C2C2C; /* Hitam Arang */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.text-center {
    text-align: center;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
}

/* Header Styles */
.main-header {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: var(--shadow);
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Menu Section */
.menu-section {
    padding: 2rem 0;
}

.menu-filter {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.menu-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.menu-content img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    order: 2;
}

.menu-details {
    flex: 1;
    order: 1;
}

.menu-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.menu-details p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
}

@media (max-width: 768px) {
    .menu-content {
        flex-direction: column;
        gap: 1rem;
    }
    .menu-content img {
        width: 100%;
        height: 200px;
        order: 1;
    }
    .menu-details {
        order: 2;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 1rem;
    margin-top: 3rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #0066cc;
}

.social-links .fa-instagram:hover {
    color: #e1306c;
}

.social-links .fa-facebook:hover {
    color: #1877f2;
}

.social-links .fa-tiktok:hover {
    color: #000000;
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}


