/* ============================================
   FALCONS STARÁ ĽUBOVŇA - MODERN & TIMELESS
   ============================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--red-bright); color: #fff; }

/* ── Design tokens ── */
:root {
    /* Farby - Prémiová Bordová (Tlačidlá, pozadia) */
    --red:        #8B1528;
    --red-hover:  #6B0F1E;
    --red-faint:  rgba(139, 21, 40, 0.15);

    /* Jasná športová červená pre perfektnú čitateľnosť textov na tmavom pozadí */
    --red-bright: #FC3D57;

    /* Pozadie - Grafitová / Antracitová */
    --bg:         #1c1c1e;
    --bg-elevated:#2c2c2e;
    --bg-hover:   #3a3a3c;

    --text:       #ffffff;
    --text-dim:   #a1a1aa;
    --text-faint: #71717a;

    --border:     #38383a;
    --border-hover:#545456;

    --wrap:       1100px;
    --gap:        32px;
    --r:          16px;
    --ease:       cubic-bezier(.16, 1, .3, 1);
}

/* ── Utilities ── */
.wrap {
    width: min(var(--wrap), 100% - 48px);
    margin-inline: auto;
}
.sr {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
    position: absolute; left: 16px; top: 16px; z-index: 9999;
    padding: 10px 16px; border-radius: 8px;
    background: var(--bg-elevated); border: 1px solid var(--border);
    font-weight: 600; font-size: 13px;
    transform: translateY(-200%);
    transition: transform .22s var(--ease);
}
.skip:focus { transform: translateY(0); }
:focus-visible {
    outline: 2px solid var(--red-bright);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ── AOS (animate on scroll) ── */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-aos].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Header ── */
.header {
    position: sticky;
    top: 0; z-index: 200;
    background: rgba(28, 28, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}
.header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(28, 28, 30, 0.98);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity .2s;
}
.logo:hover { opacity: 0.8; }
.logo__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.logo__wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo__name {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .08em;
    color: var(--text);
}
.logo__city {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text-dim);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
}
.burger span {
    display: block; width: 24px; height: 2px;
    background: var(--text);
    margin: 0 auto;
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Navigácia */
.navlist {
    display: flex;
    align-items: center;
    gap: 8px;
}
.navlist__a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 100px;
    transition: color .2s, background .2s;
}
.navlist__a:hover {
    color: var(--text);
    background: var(--bg-hover);
}
.navlist__a.is-active {
    color: var(--text);
    background: var(--bg-elevated);
}

/* ── Hero ── */
.hero {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
}
.hero__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero__eyebrow {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}
.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    border: 1px solid var(--border);
    color: var(--text-dim);
    background: var(--bg-elevated);
}
.chip--dim { background: transparent; }

.hero__title {
    font-weight: 800;
    font-size: clamp(40px, 7vw, 84px); /* Upravené fluidné písmo */
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 32px;
}
.hero__title em {
    font-style: normal;
    color: var(--red-bright);
}
.hero__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.hero__lead {
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 600px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap; /* Umožní tlačidlám prejsť na nový riadok na mobile */
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .2s var(--ease);
    text-align: center;
}
.btn:active { transform: scale(.96); }

.btn--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 24px var(--red-faint);
}
.btn--primary:hover {
    background: var(--red-hover);
    box-shadow: 0 8px 32px rgba(139, 21, 40, 0.35);
    transform: translateY(-2px);
}
.btn--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.btn--ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.btn--white {
    background: #fff;
    color: var(--bg);
}
.btn--white:hover {
    background: #e4e4e7;
    transform: translateY(-2px);
}
.btn--ghost-white {
    background: transparent;
    border-color: rgba(255,255,255,.3);
    color: #fff;
}
.btn--ghost-white:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Responzívny obal pre dokonalé vycentrovanie a zalomenie tlačidiel */
.btn-wrapper-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Zalomí tlačidlá na ďalší riadok, ak je obrazovka malá */
    gap: 16px;       /* Bezpečná medzera medzi tlačidlami */
    width: 100%;
    margin-top: 32px;
}
/* Neutralizuje akékoľvek vložené "style" z HTML, aby na mobile nevznikali chyby */
.btn-wrapper-center .btn {
    margin: 0 !important;
}

/* Ticker */
.hero__ticker {
    margin-top: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
    overflow: hidden;
}
.ticker__track {
    display: flex;
    gap: 40px;
    padding: 16px 0;
    width: max-content;
    animation: ticker 30s linear infinite;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.ticker__sep { color: var(--border-hover); }
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Sections ── */
.section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.section--alt { background: var(--bg-elevated); border-bottom: none; }

.overline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 12px;
    display: block;
}
.section__head { margin-bottom: 64px; }
.section__head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.h2 {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.1;
}

/* ── About Grid (O klube sekcia) ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
    font-size: 16px; color: var(--text-dim);
    line-height: 1.8; margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-image {
    position: relative; border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border); background: var(--bg-elevated);
}
.about-image img {
    width: 100%; height: auto; display: block;
    aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease);
}
.about-image:hover img { transform: scale(1.03); }
.about-image__caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(28, 28, 30, 0.85); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); padding: 16px 24px;
    font-size: 14px; color: var(--text-dim); border-top: 1px solid var(--border);
}
.about-image__caption strong { color: var(--text); }

/* ── Article Cards (Články) ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.article-card {
    border-radius: var(--r);
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all .3s var(--ease);
}
.article-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.article-card__img {
    width: 100%; height: 220px; object-fit: cover;
    border-bottom: 1px solid var(--border); background: var(--bg-elevated);
}
.article-card__body {
    padding: 32px; display: flex; flex-direction: column; gap: 16px; flex: 1;
}
.news-card__tag {
    display: inline-block; align-self: flex-start;
    font-size: 12px; font-weight: 600; padding: 6px 12px;
    border-radius: 100px; background: var(--bg-elevated); color: var(--text-dim);
}
.news-card__tag--accent { background: var(--red-faint); color: var(--red-bright); }
.news-card__title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.4; }
.news-card__text { font-size: 15px; color: var(--text-dim); line-height: 1.6; flex: 1; }
button.article-card__link, a.article-card__link {
    background: none; border: none; padding: 0; text-align: left;
    font-size: 14px; font-weight: 600; color: var(--red-bright);
    cursor: pointer; transition: color .2s; margin-top: auto; display: inline-block;
}
button.article-card__link:hover, a.article-card__link:hover { color: var(--red-hover); }
.article-card.is-hidden { display: none; } /* Pre "Zobraziť ďalšie" funkcionalitu */

/* ── Article Modal (Články detail) ── */
.modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__overlay {
    position: absolute; inset: 0; background: rgba(28, 28, 30, 0.9);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.modal__box {
    position: relative; z-index: 10; background: var(--bg); border: 1px solid var(--border);
    width: min(900px, 95%); max-height: 90vh; overflow-y: auto; border-radius: var(--r);
    padding: 48px; transform: translateY(24px); transition: transform .4s var(--ease);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.modal.is-open .modal__box { transform: translateY(0); }
.modal__close {
    position: absolute; top: 24px; right: 24px; background: var(--bg-elevated);
    border: 1px solid var(--border); color: var(--text); width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; font-size: 18px;
    display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.modal__close:hover { background: var(--red); border-color: var(--red); }
.modal-content__img { width: 100%; border-radius: var(--r); margin-bottom: 32px; max-height: 400px; object-fit: cover; }
.modal-content__title { font-size: clamp(24px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text); }
.modal-content__text { font-size: 16px; color: var(--text-dim); line-height: 1.8; }
.modal-content__text p { margin-bottom: 20px; }

/* ── Roster (Súpiska mužov) ── */
.roster-group { margin-bottom: 80px; }
.roster-group:last-child { margin-bottom: 0; }
.roster-category {
    font-size: 24px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.02em; color: var(--text); border-bottom: 1px solid var(--border);
    padding-bottom: 16px; margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
}
.roster-category::before {
    content: ""; display: block; width: 12px; height: 12px;
    background: var(--red-bright); transform: skewX(-15deg);
}
.player-grid {
    display: grid;
    /* Responzívny Grid: Na miniatúrnych mobiloch sa zmenší na šírku celej obrazovky */
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: 24px;
}
.player-card {
    position: relative; border-radius: 12px; overflow: hidden;
    background: var(--bg-elevated); aspect-ratio: 3 / 4; cursor: default;
}
.player-card__photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: top center; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.player-card__overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,15, 0.95) 0%, rgba(15,15,15, 0.3) 45%, transparent 100%);
}
.player-card__info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.player-num {
    font-size: 72px; font-weight: 800; line-height: 0.8; font-style: italic;
    color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
    margin-bottom: 12px; transition: all 0.4s var(--ease);
}
.player-name { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; text-transform: uppercase; }
.player-role { font-size: 13px; font-weight: 700; color: var(--red-bright); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }
.player-card:hover .player-card__photo { transform: scale(1.06); }
.player-card:hover .player-num {
    color: var(--red-bright); -webkit-text-stroke: 1.5px var(--red-bright); transform: translateX(4px);
}

/* ── Youth (Mládež & Tréningy) ── */
.youth-row {
    display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 40px;
    background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: var(--r); overflow: hidden; margin-bottom: 40px; transition: all .3s var(--ease);
}
.youth-row:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.youth-row:last-child { margin-bottom: 0; }
.youth-row__img-wrap { position: relative; min-height: 100%; }
.youth-row__img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.youth-row__content { padding: 40px 40px 40px 0; display: flex; flex-direction: column; gap: 32px; }
.youth-row__desc { font-size: 15px; color: var(--text-dim); line-height: 1.6; margin-top: 12px; }
.training-schedule { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.training-day { background: var(--bg); border: 1px solid var(--border); padding: 16px; border-radius: 8px; text-align: center; }
.training-day__name { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--red-bright); letter-spacing: 0.05em; margin-bottom: 4px; }
.training-day__time { font-size: 18px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.training-day__place { font-size: 13px; font-weight: 500; color: var(--text-dim); margin-top: 4px; }

/* ── Udalosti (Zápasy) ── */
.match-list { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.match-card {
    background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--r);
    padding: 24px 32px; display: flex; flex-direction: column; gap: 16px; transition: all .3s var(--ease);
}
.match-card:hover { border-color: var(--border-hover); transform: translateY(-2px); background: var(--bg-hover); }
.match-header {
    display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border);
    padding-bottom: 12px; font-size: 13px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.05em; text-transform: uppercase;
}
.match-header__venue { display: flex; align-items: center; gap: 8px; }
.match-tag {
    background: var(--bg); padding: 4px 10px; border-radius: 4px; font-size: 11px;
    font-weight: 800; color: var(--text); border: 1px solid var(--border);
}
.match-tag--home { background: rgba(252, 61, 87, 0.1); color: var(--red-bright); border-color: rgba(252, 61, 87, 0.3); }
.match-body { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.match-team { font-size: 18px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 16px; }
.match-team--away { justify-content: flex-end; text-align: right; }
.match-team.is-falcons { color: var(--red-bright); }
.match-score {
    background: var(--bg); border: 1px solid var(--border); padding: 8px 24px; border-radius: 8px;
    font-size: 28px; font-weight: 900; letter-spacing: 0.1em; color: var(--text); text-align: center; min-width: 120px; position: relative;
}
.match-score__pp {
    position: absolute; bottom: -18px; left: 0; right: 0; font-size: 11px;
    font-weight: 600; color: var(--text-faint); text-align: center; letter-spacing: 0.05em;
}

/* ── CTA Band ── */
.cta-band { background: var(--red); padding: 80px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band__title { font-weight: 800; font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.02em; color: #fff; line-height: 1.1; }
.cta-band__sub { margin-top: 12px; font-size: 18px; color: rgba(255,255,255,.8); }
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer__top { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 20px; max-width: 360px; }
.footer__desc { font-size: 15px; color: var(--text-dim); line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 16px; }
.footer__heading { font-size: 14px; font-weight: 700; letter-spacing: .02em; color: var(--text); margin-bottom: 8px; }
.footer__nav-list { display: flex; flex-direction: column; gap: 12px; }
.footer__nav-list a { font-size: 15px; font-weight: 500; color: var(--text-dim); transition: color .2s; width: fit-content; }
.footer__nav-list a:hover { color: var(--text); }
.contact-list { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--text-dim); line-height: 1.5; }
.contact-list strong { color: var(--text); font-weight: 600; margin-right: 6px; }
.contact-list a { transition: color .2s; }
.contact-list a:hover { color: var(--red-bright); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 32px 0; border-top: 1px solid var(--border); }
.footer__copy { font-size: 14px; color: var(--text-dim); }
.footer__top-link { font-size: 14px; font-weight: 600; color: var(--text); transition: color .2s; }
.footer__top-link:hover { color: var(--red-bright); }


/* ==============================================================
   PLNÁ RESPONZIVITA (Media Queries pre Tablety a Mobily)
   ============================================================== */

/* Tablety a menšie notebooky */
@media (max-width: 1060px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; max-width: 100%; }
}

/* Malé tablety (iPad portrét) */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .youth-row { grid-template-columns: 1fr; gap: 0; }
    .youth-row__img-wrap { height: 300px; }
    .youth-row__img-wrap img { position: relative; }
    .youth-row__content { padding: 32px; }
}

/* Mobily a úzke zobrazenia (Hlavný mobilný zlom) */
@media (max-width: 760px) {
    .logo__city { display: none; }
    .burger { display: flex; z-index: 1001; }

    /* Skryté mobilné menu */
    .navlist {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 72px;
        flex-direction: column;
        align-items: stretch;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 8px;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .navlist.is-open { display: flex; }
    .navlist__a { padding: 14px 16px; text-align: center; }

    .hero { padding-top: 40px; }
    .hero__title { font-size: clamp(36px, 12vw, 56px); }
    .news-grid { grid-template-columns: 1fr; }

    .cta-band__inner { flex-direction: column; text-align: center; }
    .cta-band__actions { justify-content: center; width: 100%; flex-wrap: wrap; }

    .footer__top { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 40px; }
    .footer__bottom { flex-direction: column; gap: 20px; text-align: center; }

    .section { padding: 60px 0; }
    .modal__box { padding: 32px 24px; width: calc(100% - 32px); margin: 16px; }
    .modal-content__title { font-size: 26px; }
}

/* Väčšie mobily - optimalizácia pre Karty Zápasov */
@media (max-width: 600px) {
    .match-card { padding: 20px; }
    .match-body {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    .match-team { justify-content: center; }
    .match-team--away { text-align: center; justify-content: center; }
    .match-score { margin: 0 auto; width: fit-content; padding: 12px 24px; }
    .match-header { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
    .match-header__venue { justify-content: center; }
}

/* Malé telefóny */
@media (max-width: 500px) {
    .section__head--row { flex-direction: column; align-items: flex-start; gap: 16px; }
    /* Roztiahne tlačidlá na 100% šírku displeja a umiestni ich pod seba vďaka wrapperu */
    .btn { width: 100%; }
    .training-schedule { grid-template-columns: 1fr; }
}

/* Znížená dynamika pre používateľov, ktorí to preferujú */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    [data-aos] { opacity: 1 !important; transform: none !important; }
}