
/* =========================================================
   OBČANÉ PRO RTYNI — JEDNOTNÉ CSS
========================================================= */

:root {
    --dark: #1f2933;
    --text: #4b5563;
    --muted: #6b7280;
    --teal: #008996;
    --pink: #e91e63;
    --light: #f5f8fa;
    --line: #e5edf0;
    --white: #ffffff;
}

/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   VYPNUTÍ SHOPTET PRVKŮ
========================================================= */

a:has(.icon-cart),
a:has(.icon-search),
a:has(.icon-login),
button:has(.icon-cart),
button:has(.icon-search),
button:has(.icon-login),
.vam,
.title,
.header-top,
.header-bottom,
.header-bottom-wrapper,
#navigation,
.navigation-wrapper,
.navigation-buttons a[data-target="navigation"],
.navigation-buttons .toggle-window[data-target="navigation"],
.navigation-buttons [data-testid="hamburgerMenu"],
body .overall-wrapper > div.full-width.footer-newsletter-full-width,
body .overall-wrapper > div.full-width.footer-newsletter-full-width *,
body .overall-wrapper > footer#footer.footer,
body .overall-wrapper > footer#footer.footer * {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

#header {
    padding: 0 !important;
    margin: 0 !important;
}

/* =========================================================
   VELKÉ LOGO NAHOŘE
========================================================= */

.top-logo {
    width: 100%;
    text-align: center;
    padding: 28px 20px 20px !important;
    background: #ffffff;
    transition: opacity .25s ease, height .25s ease, padding .25s ease;
}

.top-logo img {
    display: block !important;
    width: 520px !important;
    max-width: 86vw !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
}

body.is-page-top .top-logo {
    opacity: 1;
}

body:not(.is-page-top) .top-logo {
    opacity: 0;
    height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* =========================================================
   VLASTNÍ MENU
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229,237,240,.9);
}

.site-nav {
    max-width: 1180px;
    min-height: 68px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    line-height: 0;
    transition: opacity .25s ease, visibility .25s ease;
}

.site-logo img {
    width: auto;
    height: 44px;
    max-height: 44px;
    object-fit: contain;
}

body.is-page-top .site-logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body:not(.is-page-top) .site-logo {
    opacity: 1;
    visibility: visible;
}

.site-nav nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.site-nav nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .11em;
    opacity: .82;
    transition: .2s ease;
}

.site-nav nav a:hover {
    color: var(--teal);
    opacity: 1;
}

/* =========================================================
   SPOLEČNÉ SEKCE
========================================================= */

.section,
.section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 105px 24px;
}

.story-section {
    background: var(--light);
}

.section-label {
    display: block;
    width: fit-content;
    margin: 0 0 42px;
    padding: 0;
    background: transparent;
    color: var(--teal);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-head {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.section-head h2,
h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -3px;
    font-weight: 900;
}

.section-head h2 strong,
h2 strong {
    display: block;
    color: var(--teal);
    font-weight: 900;
}

.section-head p {
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(19px, 1.7vw, 25px);
    line-height: 1.75;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 24px 70px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--light);
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 920px;
    margin: 0 auto 30px;
    color: var(--dark);
    font-size: clamp(48px, 8vw, 92px);
    line-height: .95;
    letter-spacing: -4.5px;
    font-weight: 900;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong {
    color: var(--teal);
}

.hero-lead {
    max-width: 820px;
    margin: 0 auto;
    color: var(--dark);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.6;
    font-weight: 500;
}

.hero-buttons {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    transition: .2s ease;
}

.btn-primary {
    background: var(--pink);
    color: white;
    box-shadow: 0 16px 36px rgba(233, 30, 99, .22);
}

.btn-secondary {
    background: white;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-values {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-values span {
    padding: 11px 20px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    color: var(--teal);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

/* =========================================================
   KDO JSME
========================================================= */

.section-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 76px;
    align-items: start;
}

.text-block p {
    margin: 0 0 26px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.9;
}

/* =========================================================
   TÝM
========================================================= */

.people-list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.person-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(20, 30, 45, .055);
    transition: .2s ease;
}

.person-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 75px rgba(20, 30, 45, .09);
}

.person-photo {
    height: 220px;
    min-height: 220px;
    overflow: hidden;
    background: #d9e3e7;
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-content {
    padding: 28px;
}

.person-content span {
    display: block;
    margin-bottom: 14px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.person-content h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.5px;
    font-weight: 900;
}

.person-role {
    margin: 0 0 18px !important;
    color: var(--teal) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 900;
}

.person-content p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   PROGRAM
========================================================= */

.program-section {
    padding-bottom: 115px;
}

.program-list {
    max-width: 980px;
    margin: 70px auto 0;
}

.program-group {
    padding: 42px 0;
    border-top: 1px solid var(--line);
}

.program-group:last-child {
    border-bottom: 1px solid var(--line);
}

.program-group h3 {
    margin: 0 0 26px;
    color: var(--teal);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.program-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-group li {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 42px;
    padding: 20px 0;
    border-top: 1px solid rgba(229,237,240,.8);
}

.program-group li:first-child {
    border-top: none;
}

.program-group strong {
    color: var(--dark);
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.5px;
    font-weight: 900;
}

.program-group span {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   KONTAKT + ODPOČET
========================================================= */

.contact-section-new {
    background: var(--light);
}

.contact-people {
    max-width: 820px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-person {
    padding: 34px;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 18px 55px rgba(20, 30, 45, .055);
    text-align: center;
}

.contact-person h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 900;
}

.contact-person p {
    margin: 0 0 18px;
    color: var(--teal);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-person a {
    color: var(--pink);
    font-size: 26px;
    font-weight: 900;
    text-decoration: none;
}

.countdown-box {
    max-width: 920px;
    margin: 80px auto 0;
    padding-top: 58px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.countdown-label {
    margin: 0 0 20px;
    color: var(--teal);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.countdown-box h3 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 900;
}

#countdown {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

#countdown div {
    min-width: 130px;
}

#countdown span {
    display: block;
    color: var(--teal);
    font-size: clamp(46px, 6vw, 58px);
    font-weight: 900;
    line-height: 1;
}

#countdown small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--line);
    background: white;
}

.footer img {
    width: auto;
    height: 150px;
    max-width: 100%;
    margin: 0 auto;
    opacity: .92;
}

/* =========================================================
   MOBIL
========================================================= */

@media (max-width: 900px) {

    html {
        scroll-padding-top: 115px;
    }

    .top-logo {
        padding: 8px 12px 4px !important;
    }

    .top-logo img {
        width: 92vw !important;
        max-width: 300px !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 auto !important;
    }

    .site-nav {
        padding-top: 4px !important;
        padding-bottom: 8px !important;
        min-height: auto !important;
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }

    .site-logo img {
        height: 40px;
        max-height: 40px;
    }

    .site-nav nav {
        justify-content: center;
        gap: 14px;
    }

    .site-nav nav a {
        font-size: 11px;
        letter-spacing: .08em;
    }

    .hero {
        padding-top: 32px !important;
    }

    .hero h1 {
        font-size: 44px;
        letter-spacing: -2.5px;
    }

    .section,
    .section-inner {
        padding: 72px 20px;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .section-head {
        text-align: left;
        margin: 0;
    }

    .section-head h2,
    h2 {
        font-size: 40px;
        letter-spacing: -2px;
        font-weight: 900;
    }

    .section-head h2 strong,
    h2 strong {
        color: var(--teal);
        font-weight: 900;
    }

    .people-list {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .person-photo {
        height: 240px;
        min-height: 240px;
    }

    .program-list {
        margin-top: 44px;
    }

    .program-group li {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 0;
    }

    .contact-people {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .contact-person {
        padding: 30px 24px;
    }

    .contact-person a {
        font-size: 24px;
    }

    .countdown-box {
        margin-top: 64px;
        padding-top: 44px;
    }

    #countdown {
        gap: 22px;
    }

    #countdown div {
        min-width: 90px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 340px;
    }

    .footer img {
        height: 120px;
    }
}
/* FIX plynulého horního loga a sticky menu */

.top-logo {
    opacity: 1 !important;
    height: auto !important;
    padding: 28px 20px 20px !important;
    overflow: visible !important;
}

body:not(.is-page-top) .top-logo,
body.is-page-top .top-logo {
    opacity: 1 !important;
    height: auto !important;
    padding: 28px 20px 20px !important;
    overflow: visible !important;
}

.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}

/* malé logo v menu necháme viditelné pořád */
body.is-page-top .site-logo,
body:not(.is-page-top) .site-logo {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* aby Shoptet sticky menu neořezával */
#content,
.content,
.content-wrapper,
.content-wrapper-in,
.content-inner,
.welcome-wrapper,
.welcome-wrapper .container {
    overflow: visible !important;
}


