
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-dark: #121212; /* Hitam elegan */
    --card-bg: #1e1e1e;
    --primary: #f39c12; /* Oranye */
    --primary-hover: #e67e22;
    --blue-dark: #1e3799; /* Biru Tua */
    --blue-light: #4a69bd; /* Biru Muda */
    --yellow: #f1c40f; /* Kuning */
    --white: #ffffff;
    --text-light: #dcdde1;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--white);
    margin: 0;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s;
}

.cart-icon:hover {
    color: var(--yellow);
}

#cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
}

.hero {
    background: linear-gradient(135deg, rgba(30,55,153,0.3) 0%, rgba(18,18,18,1) 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--yellow);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.menu-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--blue-light);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: #2a2a2a;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-add {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-add:hover {
    background: var(--primary);
    color: var(--white);
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--blue-dark);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--white);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--card-bg);
    border-left: 1px solid var(--border);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--white);
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.cart-item-info h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--yellow);
    font-size: 14px;
}

.remove-item {
    color: #e74c3c;
    cursor: pointer;
    font-size: 14px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h2 { font-size: 36px; }
}

.about-section, .contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-img-wrapper {
    flex: 1;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h4 {
    color: var(--yellow);
    margin-bottom: 10px;
    font-size: 18px;
}

.form-control {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.promo-content {
    text-align: center;
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-dark) 100%);
}

.promo-badge {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.voucher-box {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px dashed var(--yellow);
}

.voucher-code {
    font-size: 24px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 2px;
}

.a {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .about-container, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}
