body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff5f0;
}

header {
    background: #e63946;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 60px;
    background: url('https://images.unsplash.com/photo-1601924638867-3ec2b2b7b0b2') no-repeat center;
    background-size: cover;
    color: white;
}

.hero button {
    padding: 10px 20px;
    font-size: 16px;
    background: #f4a261;
    border: none;
    cursor: pointer;
}

.menu {
    padding: 40px;
    text-align: center;
}

.pizza-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pizza-card {
    background: white;
    padding: 20px;
    width: 200px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px;
}

.pizza-card button {
    background: #2a9d8f;
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.cart {
    background: #ffe8d6;
    padding: 40px;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

.pizza-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.image-placeholder {
    width: 50%;
    height: 150px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}