#lunch {
    text-align: center;
    padding: 40px 20px;
}

#lunchBtn {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 18px rgba(46, 125, 50, 0.25);
}

#lunchBtn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(27, 94, 32, 0.3);
}

#lunchBtn:active {
    transform: translateY(0);
}

.lunch_meny {
    max-height: 0;
    overflow: hidden;
    max-width: 880px;
    margin: 20px auto 0;
    border-radius: 16px;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url("lunch.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 24px;
}

.lunch_meny.show {
    max-height: 2000px;
    padding: 24px;
}

.lunch-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff3cd;
    text-align: center;
}

.lunch-val {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 14px 0 4px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
    padding-bottom: 8px;
}

.lunch-price {
    color: #ffe082;
    font-weight: 800;
    white-space: nowrap;
}

.lunch_meny p {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

@media (max-width: 600px) {
    #lunchBtn {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .lunch-title {
        font-size: 1.6rem;
    }

    .lunch-val {
        font-size: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }
}