body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #b30000, #ff1a1a);
    color: white;
    text-align: center;
}

/* HEADER */
header {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

header h1 {
    font-size: 40px;
    margin: 10px 0;
    letter-spacing: 2px;
}

/* MENU */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.menu-item {
    background: white;
    color: black;
    border-radius: 15px;
    padding: 15px;
    width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* BUTTON TAMBAH */
.add-to-cart {
    background-color: #ff3333;
    border: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.add-to-cart:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

/* BUMBU */
.bumbu {
    margin-top: 20px;
}

.bumbu-item {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background-color: white;
    color: #b30000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.bumbu-item:hover {
    background-color: #ffe6e6;
    transform: scale(1.1);
}

/* CHECKOUT */
#checkout {
    margin: 30px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background-color: #00cc66;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

#checkout:hover {
    background-color: #00994d;
    transform: scale(1.1);
}