/* ===============================
   Hidegtálak / Tálak szekció
   – Panírbár "glass" stílus
   =============================== */

.talak-section {
    max-width: 1000px;
    margin: 3rem auto 2rem;
    padding: 0 1.5rem;
}

/* CÍM */

.talak-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.talak-heading h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff4d4f;
    /* ugyanaz a piros, mint a napi menü címeinél */
    text-shadow: 1px 1px 2px #000000;
}

.talak-heading p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}

/* GRID – 2 oszlop desktopon, 1 oszlop mobilon */

.talak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

/* KÁRTYÁK – ugyanaz a glass feeling, mint .day-section */

.tal-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tal-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

/* KÉP – MINDIG TELJESEN LÁTSZÓDJON, de egyforma keretben */

.tal-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    /* minden kártya ugyanakkora */
    background: rgba(0, 0, 0, 0.7);
    /* fekete keret a kép körül */
    overflow: hidden;
}

.tal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* NEM vágjuk le: teljes tál látszik */
    display: block;
}

/* SZÖVEGES RÉSZ */

.tal-card-body {
    padding: 1.3rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tal-card h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}

/* VÁLTOZATOK (4 / 6 személy) */

.tal-card-variants {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.93rem;
}

.tal-variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.25);
}

.tal-price {
    font-weight: 700;
    white-space: nowrap;
}

/* LEÍRÁS + ALLERGÉNEK */

.tal-card-desc,
.tal-card-allergen {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}

.tal-card-allergen {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Reszponzív finomhangolás */

@media (max-width: 768px) {
    .talak-section {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }

    .tal-card-body {
        padding: 1.1rem 1.1rem 1.3rem;
    }

    .tal-variant {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .tal-price {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .talak-heading h2 {
        letter-spacing: 0.08em;
    }
}