﻿/* =========================================================
   ABOUT – Parlament
   Používá tvoje brand proměnné z :root (bg, ink, primary...)
   ========================================================= */

/* čtecí šířka */
.about-wrap {
    max-width: 60rem;
    margin-inline: auto;
}

/* -----------------------------
   Nadpis + lead (úvod)
------------------------------ */
.about-header {
    margin-bottom: .4rem;
}

.about-title {
    font: 700 clamp(1.9rem,1.2rem + 2.4vw,2.6rem)/1.2 var(--bs-body-font-family);
    color: var(--brand-ink);
    margin: 0 0 .6rem;
}

.about-lead {
    font-size: clamp(1.06rem,.96rem + .6vw,1.28rem);
    line-height: 1.8;
    color: color-mix(in oklab,var(--brand-ink) 78%,#0000);
    margin: 0 0 .6rem;
    text-align: justify;
}

/* -----------------------------
   Tělo textu
------------------------------ */
.about-body p {
    margin: 0 0 .95rem;
    line-height: 1.72;
    color: color-mix(in oklab,var(--brand-ink) 82%,#0000);
}

.about-body strong {
    font-weight: 650;
}

/* -----------------------------
   „Těšíme se…“ ve stylu lead
------------------------------ */
.about-invite.as-lead {
    font-size: clamp(1.06rem,.96rem + .6vw,1.28rem);
    line-height: 1.7;
    color: color-mix(in oklab,var(--brand-ink) 78%,#0000);
    font-weight: 500;
    margin: .8rem 0 .4rem;
}

.about-invite-strong {
    color: var(--brand-primary);
    font-weight: 650;
    display: inline-block;
    margin-left: .25rem;
}
/* pokud je v HTML <br/>, skrýt na desktopu */
.about-invite.as-lead br {
    display: none;
}

@media (max-width:576px) {
    .about-invite.as-lead br {
        display: inline;
    }
}

/* -----------------------------
   Karty – společné proměnné
------------------------------ */
:root {
    --card-radius: var(--bs-border-radius-lg, 12px);
    --card-shadow: 0 6px 18px rgba(0,0,0,.06);
    --card-shadow-sm: 0 2px 10px rgba(0,0,0,.05);
}

/* -----------------------------
   STAT karty (kapacita, salonky…)
------------------------------ */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: .9rem;
    list-style: none;
    margin: 1.1rem 0 .8rem;
    padding: 0;
}

.about-chip {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: var(--card-radius);
    background: color-mix(in oklab,#fff 92%,var(--brand-bg));
    color: var(--brand-ink);
    border: 1px solid color-mix(in oklab,var(--brand-accent) 18%, #0000);
    box-shadow: var(--card-shadow-sm);
    font-weight: 600;
    font-size: .98rem;
    transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
    outline: none;
}

    .about-chip i {
        font-size: 1.1em;
        opacity: .9;
        translate: 0 1px;
    }

    .about-chip:hover,
    .about-chip:focus-visible {
        box-shadow: var(--card-shadow);
        border-color: color-mix(in oklab,var(--brand-accent) 32%, #0000);
        transform: translateY(-1px);
    }

/* -----------------------------
   Dělící čára (full width v containeru)
------------------------------ */
.about-divider {
    border: 0;
    height: 1px;
    margin: 1.1rem 0 1rem;
    background: linear-gradient(90deg, color-mix(in oklab,var(--brand-accent) 16%, #fff), color-mix(in oklab,var(--brand-accent) 24%, #fff), color-mix(in oklab,var(--brand-accent) 16%, #fff));
    box-shadow: 0 1px 0 rgba(0,0,0,.02) inset;
}

/* -----------------------------
   Platby – karty
------------------------------ */
.about-pay {
    margin-top: .2rem;
}

.pay-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: .9rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pay-chip {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem .95rem;
    border-radius: var(--card-radius);
    background: color-mix(in oklab,#fff 92%,var(--brand-bg));
    color: var(--brand-ink);
    border: 1px solid color-mix(in oklab,var(--brand-accent) 18%, #0000);
    box-shadow: var(--card-shadow-sm);
    font-weight: 600;
    font-size: .95rem;
    transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
    outline: none;
}

    .pay-chip i {
        font-size: 1.05em;
        opacity: .9;
        translate: 0 1px;
    }

    .pay-chip:hover,
    .pay-chip:focus-visible {
        box-shadow: var(--card-shadow);
        border-color: color-mix(in oklab,var(--brand-accent) 32%, #0000);
        transform: translateY(-1px);
    }

/* -----------------------------
   Responsivita – drobná jemnost
------------------------------ */
@media (max-width:576px) {
    .about-title {
        margin-bottom: .5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .pay-chips {
        grid-template-columns: 1fr;
    }

    .about-invite {
        text-align: left;
    }

    .about-wrap {
        padding: 0 .2rem;
    }
    /* nebo center; podle zbytku webu */
}
