/* =====================================================
   zuzanajanebova.cz — Homepage
   Font: Plus Jakarta Sans (Google Fonts)
   ===================================================== */

:root {
    --c-rose:    #7a9a5a;
    --c-rose-d:  #5c7444;
    --c-rose-l:  #c7d3bb;
    --c-bg:      #e8f0e0;
    --c-bg-d:    #d9e6cb;
    --c-rose-rgb: 122,154,90;
    --c-dark:    #18181b;
    --c-text:    #3d3d3d;
    --c-muted:   #6b7280;
    --c-white:   #ffffff;
    --r:         14px;
    --shadow:    0 8px 40px rgba(122,154,90,.16);
    --shadow-sm: 0 2px 16px rgba(0,0,0,.07);
    --font:      'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* scroll-behavior: smooth removed — causes scroll-lock on mobile Safari */

body.zb-homepage-body {
    font-family: var(--font);
    color: var(--c-text);
    background: var(--c-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3 { line-height: 1.2; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: .75rem; }
h3 { font-size: 1.1rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: var(--c-muted); }
p:last-child { margin-bottom: 0; }
a  { text-decoration: none; }
img { display: block; max-width: 100%; }

.zbh-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.zbh-center { text-align: center; }
.zbh-section-header { margin-bottom: 3rem; }

/* ---- Label pill ---- */
.zbh-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-rose);
    margin-bottom: .6rem;
}
.zbh-label-light { color: rgba(255,255,255,.65); }

/* ---- Buttons ---- */
.zbh-btn-primary, .zbh-btn-ghost {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: 2px solid transparent;
    white-space: nowrap;
    padding: .7rem 1.6rem;
}
.zbh-btn-primary {
    background: var(--c-rose);
    color: var(--c-white) !important;
    box-shadow: 0 4px 20px rgba(var(--c-rose-rgb),.35);
}
.zbh-btn-primary:hover {
    background: var(--c-rose-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--c-rose-rgb),.45);
}
.zbh-btn-ghost {
    background: transparent;
    color: var(--c-rose) !important;
    border-color: var(--c-rose);
}
.zbh-btn-ghost:hover { background: var(--c-rose-l); }
.zbh-btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.zbh-btn-inline { margin-top: 1.75rem; }

/* =====================================================
   NAV
===================================================== */
.zbh-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: .55rem 0;
    background: rgba(255,255,255,.95);
    box-shadow: 0 1px 0 rgba(0,0,0,.07);
    transition: padding .3s, box-shadow .3s;
}
.zbh-nav.scrolled {
    padding: .4rem 0;
    box-shadow: var(--shadow-sm);
}
.zbh-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.zbh-logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--c-dark);
    letter-spacing: -.02em;
}
.zbh-logo span { color: var(--c-rose); }

.zbh-nav-links {
    display: flex;
    list-style: none;
    gap: .25rem;
    align-items: center;
}
.zbh-nav-links li:not(:last-child) > a:not(.zbh-nav-cta) {
    padding: .45rem .8rem;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--c-text);
    transition: background .18s, color .18s;
    display: block;
}
.zbh-nav-links li:not(:last-child) > a:not(.zbh-nav-cta):hover {
    background: var(--c-bg);
    color: var(--c-rose);
}
.zbh-nav-cta {
    background: var(--c-rose);
    color: var(--c-white) !important;
    padding: .5rem 1.3rem;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 700;
    margin-left: .5rem;
    box-shadow: 0 4px 16px rgba(var(--c-rose-rgb),.3);
    transition: background .18s, transform .18s, box-shadow .18s;
    display: block;
}
.zbh-nav-cta:hover {
    background: var(--c-rose-d) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--c-rose-rgb),.4);
}

.zbh-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.zbh-nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-dark);
    border-radius: 2px;
    transition: all .25s;
}
.zbh-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.zbh-nav-toggle.open span:nth-child(2) { opacity: 0; }
.zbh-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .zbh-nav-toggle { display: flex; }
    .zbh-nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-sm);
    }
    .zbh-nav-links.open { display: flex; }
    .zbh-nav-cta { align-self: flex-start; }
}

/* =====================================================
   HERO
===================================================== */
.zbh-hero {
    background: linear-gradient(160deg, var(--c-bg) 0%, var(--c-bg-d) 100%);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}
.zbh-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(var(--c-rose-rgb),.18) 0%, transparent 70%);
    pointer-events: none;
}
.zbh-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 3rem;
}
.zbh-hero-badge {
    display: inline-block;
    background: var(--c-white);
    color: var(--c-rose);
    border: 1.5px solid var(--c-rose-l);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: .03em;
}
.zbh-hero-h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--c-dark);
    margin-bottom: 1.25rem;
}
.zbh-hero-h1 em {
    font-style: normal;
    color: var(--c-rose);
}
.zbh-hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 0;
}
.zbh-hero-btns {
    display: flex;
    gap: .875rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero photo */
.zbh-hero-photo { position: relative; }
.zbh-hero-cards-row { display: contents; }
.zbh-hero-img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}
.zbh-photo-placeholder {
    width: 100%; max-width: 400px; height: 400px;
    background: linear-gradient(135deg, var(--c-rose-l), var(--c-bg-d));
    border-radius: 28px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .75rem; margin: 0 auto;
    font-size: 4rem; color: var(--c-muted);
}
.zbh-photo-placeholder p { font-size: .9rem; margin: 0; font-family: var(--font); }
.zbh-photo-placeholder-lg { height: 400px; }

.zbh-hero-card {
    position: absolute;
    background: var(--c-white);
    border-radius: 12px;
    padding: .65rem 1.1rem;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
    display: flex; align-items: center; gap: .5rem;
    white-space: nowrap; color: var(--c-dark);
}
.zbh-hero-card-1 { top: 30px;    left: -16px; }
.zbh-hero-card-2 { bottom: 70px; right: -10px; }

.zbh-hero-wave { line-height: 0; margin-bottom: -1px; }
.zbh-hero-wave svg { width: 100%; height: 80px; }

@media (max-width: 768px) {
    .zbh-hero-inner { grid-template-columns: 1fr; }
    .zbh-hero-photo { order: -1; }
    .zbh-hero-img, .zbh-photo-placeholder { height: 320px; max-width: 100%; border-radius: 20px; }
    .zbh-hero-card-1 { top: 16px;    left: 8px; }
    .zbh-hero-card-2 { bottom: 20px; right: 8px; }
}

/* =====================================================
   STATS
===================================================== */
.zbh-stats {
    background: var(--c-white);
    padding: 2.5rem 0;
    border-bottom: 1px solid #f3eded;
}
.zbh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.zbh-stats-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
    margin: 0 auto;
}
.zbh-stat {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid #f3eded;
}
.zbh-stat:last-child { border-right: none; }
.zbh-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-rose);
    margin-bottom: .3rem;
    letter-spacing: -.02em;
}
.zbh-stat-label { font-size: .8rem; color: var(--c-muted); font-weight: 500; }

@media (max-width: 560px) {
    .zbh-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .zbh-stats-3 { grid-template-columns: repeat(3, 1fr); }
    .zbh-stat:nth-child(2) { border-right: none; }
    .zbh-stat:nth-child(1), .zbh-stat:nth-child(2) { border-bottom: 1px solid #f3eded; }
}

/* =====================================================
   SEKCE — obecné
===================================================== */
.zbh-section { padding: 6rem 0; }
.zbh-section-tinted { background: var(--c-bg); }
.zbh-section-sub {
    font-size: 1rem;
    color: var(--c-muted);
    max-width: 520px;
    margin: .5rem auto 0;
}

/* =====================================================
   O MNĚ
===================================================== */
.zbh-about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
}
.zbh-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.zbh-about-badges {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1.25rem;
}
.zbh-badge-pill {
    display: inline-block;
    background: var(--c-white);
    border: 1.5px solid var(--c-rose-l);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--c-text);
}
.zbh-about-text h2 { color: var(--c-dark); }
.zbh-about-text p  { font-size: 1rem; }

@media (max-width: 900px) {
    .zbh-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .zbh-about-img { height: 380px; }
}

/* =====================================================
   JAK PRACUJI
===================================================== */
.zbh-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.zbh-how-card {
    background: var(--c-white);
    border-radius: var(--r);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f5eded;
    transition: transform .25s, box-shadow .25s;
}
.zbh-how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.zbh-how-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.zbh-how-card h3 { color: var(--c-dark); font-size: 1rem; }
.zbh-how-card p  { font-size: .9rem; margin: 0; }

@media (max-width: 900px) { .zbh-how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .zbh-how-grid { grid-template-columns: 1fr; } }

/* =====================================================
   PRO KOHO
===================================================== */
.zbh-for-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
}
.zbh-for-intro { color: var(--c-muted); margin-bottom: 1.5rem; }
.zbh-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.zbh-checklist li {
    padding-left: 1.75rem;
    position: relative;
    font-size: .95rem;
    color: var(--c-muted);
}
.zbh-checklist li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--c-rose);
    font-weight: 800;
    font-size: 1rem;
}
.zbh-for-quote {
    background: linear-gradient(145deg, var(--c-rose), var(--c-rose-d));
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--c-white);
}
.zbh-quote-mark {
    font-size: 4.5rem;
    line-height: .8;
    opacity: .2;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: .75rem;
}
.zbh-for-quote p { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.95); line-height: 1.7; }
.zbh-for-quote cite { font-size: .85rem; opacity: .75; font-style: normal; }

@media (max-width: 768px) {
    .zbh-for-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =====================================================
   REFERENCE
===================================================== */
.zbh-refs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.zbh-ref-card {
    background: var(--c-white);
    border-radius: var(--r);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f5eded;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.zbh-ref-stars { font-size: .85rem; }
.zbh-ref-text  { font-size: .92rem; font-style: italic; line-height: 1.7; color: var(--c-text); flex: 1; }
.zbh-ref-author { display: flex; align-items: center; gap: .75rem; }
.zbh-ref-avatar {
    width: 42px; height: 42px;
    background: var(--c-rose-l);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem;
    color: var(--c-rose); flex-shrink: 0;
}
.zbh-ref-author strong { display: block; font-size: .88rem; color: var(--c-dark); }
.zbh-ref-author span   { font-size: .78rem; color: var(--c-muted); }

@media (max-width: 768px) { .zbh-refs-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) and (min-width: 568px) { .zbh-refs-grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================
   BOOKING SEKCE
===================================================== */
.zbh-booking-section {
    background: linear-gradient(145deg, var(--c-rose-d) 0%, var(--c-rose) 60%, var(--c-rose-l) 100%);
    padding: 6rem 0 7rem;
}
.zbh-booking-section h2 { color: var(--c-white); }
/* Override booking form barvy v tmavé sekci */
.zbh-booking-section .zb-step-title { color: var(--c-white); }
.zbh-booking-section .zb-back { color: rgba(255,255,255,.8); }
.zbh-booking-section .zb-type-card { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: var(--c-white); }
.zbh-booking-section .zb-type-card:hover,
.zbh-booking-section .zb-type-card.selected { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); }
.zbh-booking-section .zb-type-meta,
.zbh-booking-section .zb-type-desc { color: rgba(255,255,255,.75); }
.zbh-booking-section .zb-calendar-wrap { background: rgba(255,255,255,.12); }
.zbh-booking-section .zb-cal-title { color: var(--c-white); }
.zbh-booking-section .zb-cal-dayname { color: rgba(255,255,255,.6); }
.zbh-booking-section .zb-cal-day.available { background: rgba(255,255,255,.12); color: var(--c-white); }
.zbh-booking-section .zb-calendar-header button { border-color: rgba(255,255,255,.3); color: var(--c-white); }
.zbh-booking-section .zb-summary-bar { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); color: var(--c-white); }
.zbh-booking-section .zb-field input,
.zbh-booking-section .zb-field textarea { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: var(--c-white); }
.zbh-booking-section .zb-field input::placeholder,
.zbh-booking-section .zb-field textarea::placeholder { color: rgba(255,255,255,.5); }
.zbh-booking-section .zb-field label { color: rgba(255,255,255,.75); }
.zbh-booking-section .zb-payment-box { background: rgba(255,255,255,.12); }
.zbh-booking-section .zb-success { color: var(--c-white); }
.zbh-booking-section .zb-success-detail { color: rgba(255,255,255,.8); }

/* =====================================================
   FOOTER
===================================================== */
.zbh-footer {
    background: var(--c-dark);
    padding: 3rem 0 0;
}
.zbh-footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.zbh-footer-brand strong {
    display: block;
    color: var(--c-white);
    font-size: 1.05rem;
    margin-bottom: .25rem;
}
.zbh-footer-brand span { color: rgba(255,255,255,.45); font-size: .85rem; }
.zbh-footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.zbh-footer-nav a { color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
.zbh-footer-nav a:hover { color: var(--c-white); }
.zbh-footer-contact {
    text-align: right;
}
.zbh-footer-contact a { color: var(--c-rose-l); font-size: .9rem; transition: color .2s; }
.zbh-footer-contact a:hover { color: var(--c-white); }
.zbh-footer-bottom {
    padding: 1rem 0;
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.25);
}

@media (max-width: 640px) {
    .zbh-footer-inner { grid-template-columns: 1fr; text-align: center; }
    .zbh-footer-nav { justify-content: center; }
    .zbh-footer-contact { text-align: center; }
}

/* =====================================================
   CESTAVZTAHEM SEKCE
===================================================== */
.zbh-ctv-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}
.zbh-ctv-domain {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-rose);
    text-decoration: none;
    margin-bottom: 1rem;
}
.zbh-ctv-domain:hover { text-decoration: underline; }
.zbh-ctv-left h2 { margin-bottom: .85rem; }
.zbh-ctv-left p  { color: var(--c-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.zbh-ctv-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem .75rem;
}
.zbh-ctv-list li {
    font-size: .875rem;
    color: var(--c-text);
    padding-left: 1.1rem;
    position: relative;
}
.zbh-ctv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-rose);
    font-weight: 700;
}
.zbh-ctv-stat-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--c-bg-d);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 40px rgba(var(--c-rose-rgb),.15);
}
.zbh-ctv-stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--c-rose);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: .3rem;
}
.zbh-ctv-stat-label {
    display: block;
    font-size: .875rem;
    color: var(--c-muted);
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.zbh-ctv-stars {
    font-size: 1.1rem;
    margin-bottom: .9rem;
}
.zbh-ctv-quote {
    font-size: .875rem;
    color: var(--c-text);
    font-style: italic;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 900px) {
    .zbh-ctv-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .zbh-ctv-stat-card { max-width: 360px; }
}
@media (max-width: 600px) {
    .zbh-ctv-list { grid-template-columns: 1fr; }
}
