.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-color: #f9f9f9;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}

.selection-wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-card {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.menu-card:hover {
    transform: scale(1.05);
}

/* Háttérképek a kártyáknak - ide a saját képeid elérési útját írd! */
.food-bg {
    background: url('images/food.jpg') center/cover;
}

.cake-bg {
    background: url('images/cakes.jpeg') center/cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    box-sizing: border-box;
}

.card-overlay h2 {
    font-size: 2rem;
    margin: 0;
}

.card-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Mobilnézet */
@media (max-width: 768px) {
    .menu-card {
        width: 100%;
        height: 300px;
    }
}