body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(orange, #ff4500);
    color: white;
    text-align: center;
}

/* Background Text */
body::before {
    content: "CIMOL SAVANA";
    position: fixed;
    font-size: 8vw;
    color: rgba(255,255,255,0.05);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Header */
header {
    padding: 20px;
    font-size: 28px;
    font-weight: bold;
}

/* Menu */
.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.menu-card {
    background: white;
    color: black;
    width: 250px;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.menu-card:hover {
    transform: scale(1.05);
}

.menu-card img {
    width: 100%;
    border-radius: 10px;
}

button {
    background: #ff4500;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: darkred;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    top: 0;
}

.modal-content {
    background: white;
    color: black;
    width: 300px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 15px;
}

/* Footer */
footer {
    margin-top: 40px;
    padding: 20px;
    background: #000;
}

.social a {
    color: orange;
    margin: 10px;
    text-decoration: none;
}

/* Responsive */
@media(max-width:768px){
    .menu-container{
        flex-direction: column;
        align-items: center;
    }
}

/* FIRE TEXT EFFECT */
.fire-text {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(orange, red, yellow);
    -webkit-background-clip: text;
    color: transparent;
    animation: fire 1s infinite alternate;
}

@keyframes fire {
    0% { text-shadow: 0 0 10px orange, 0 0 20px red; }
    50% { text-shadow: 0 0 20px yellow, 0 0 40px red; }
    100% { text-shadow: 0 0 30px orange, 0 0 60px red; }
}

/* Keranjang styling */
.cart-section {
    padding: 20px;
}

.cart-item {
    background: white;
    color: black;
    margin: 10px auto;
    padding: 10px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

.qty-btn {
    padding: 5px 10px;
    margin: 5px;
    background: orange;
    border: none;
    cursor: pointer;
}

.delete-btn {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.alamat-box {
    margin: 15px;
}

textarea {
    width: 90%;
    max-width: 500px;
    height: 80px;
    border-radius: 8px;
    padding: 10px;
}