body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #1e1e1e;
    color: #fff;
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.menu-section {
    width: 65%;
}

.pizza-card {
    background-color: #333;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    display: flex;
}

.pizza-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.pizza-info {
    flex: 1;
}

.cart-section {
    background-color: #2e2e2e;
    padding: 15px;
    width: 30%;
    border-radius: 10px;
}

button {
    background-color: #ff5722;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="number"],
select {
    margin-top: 10px;
    padding: 5px;
    border-radius: 5px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

#cart-items img {
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 4px;
}

/*  Cover Bild  */
.cover-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.cover-img {
    width: 100%;
    height: 164%;
    object-fit: cover;
    display: block;
}

.cover-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.logo-over-img {
    width: 100px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.cover-title {
    font-size: 2.4rem;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

/* Footer */
.footer {
    background-color: #111;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 0.9rem;
    border-top: 2px solid #4CAF50;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    width: 100px;
    text-align: center;
    cursor: pointer;
    color: #aaa;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer p {
    margin: 3px 0;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    .menu-section,
    .cart-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .pizza-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pizza-img {
        margin: 0 0 10px 0;
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .pizza-info {
        width: 100%;
    }

    .cover-title {
        font-size: 1.5rem;
    }

    .logo-over-img {
        width: 80px;
    }
}
.restaurant-info {
    background-color: #2e2e2e;
    padding: 20px;
    margin: 0 20px 20px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    font-size: 0.95rem;
}

.restaurant-info h2 {
    margin-top: 0;
    color: #ffcc00;
    font-size: 1.8rem;
}

.restaurant-info .stars {
    margin: 5px 0;
    color: gold;
}
.cart-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.cart-controls {
    margin-top: 5px;
}

.cart-controls button {
    margin-right: 5px;
    padding: 3px 8px;
    font-size: 0.9rem;
    background-color: #555;
}



