body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../img/backgroundsavana1.jpeg');
    background-size: cover;
    background-attachment: fixed;
}

header {
    background: orange;
    padding: 15px;
    text-align: center;
    color: white;
}

nav a {
    margin: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    background: rgba(255,255,255,0.95);
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
}

.menu-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #fff3e0;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

button {
    background: darkorange;
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 5px;
}

button:hover {
    background: orangered;
}

#cart-items div {
    background: #ffe0b2;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 15px;
    background: orange;
    color: white;
}
