.lunch-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 100px 20px;
    margin: 0 auto;
    max-width: 1000px;
    box-sizing: border-box;

    opacity: 0;
    animation: slideDown 0.3s ease-out forwards;
}

.lunch-item {
    display: flex;
    width: 100%;
    height: 180px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lunch-item:hover {
    transform: translateY(-5px);
}

.lunch-item img {
    width: 180px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.lunch-item-content {
    padding: 20px;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.lunch-item-content h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #00a808;
}

.lunch-item-content p {
    margin: 0;
    font-size: 0.95em;
    color: #333;
}