/* --- Brand / Buttons / Footer --- */
.hero-overlay { background: rgba(0,0,0,.45); }

.brand-orange { color: #ff7a00; }

.btn-orange {
    background:#ff7a00;
    border-color:#ff7a00;
    color:#fff;

    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .03em;
}
.btn-orange:hover {
    background:#e56f00;
    border-color:#e56f00;
    color:#fff;
}

.footer-muted { background:#f4f4f4; }

.hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* --- Navbar pills --- */
.zf-nav-pills {
    gap: .6rem;
    flex-wrap: nowrap;
}

.zf-nav-pills .nav-link {
    white-space: nowrap;
    border: 1px solid transparent;   /* neviditelný rámeček */
    color: #000;                     /* černý text */
    border-radius: 999px;
    padding: .35rem .85rem;
    font-weight: 500;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

/* jemný hover – žádný rámeček */
.zf-nav-pills .nav-link:hover {
    background: rgba(0,0,0,0.04);
    color: #000;
}

/* ACTIVE pill */
.zf-nav-pills .nav-link.active {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #fff !important;
    font-weight: 600;
}

/* Search defaultně skrytý */
.zf-nav-search {
    display: none;
}

/* Zobrazit až na opravdu velkých obrazovkách */
@media (min-width: 1400px) {
    .zf-nav-search {
        display: flex;
    }
}


/* --- Sticky footer layout --- */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}


/* --- Page content typography (pro HTML v DB) --- */
.page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.page-content ul {
    padding-left: 1.2rem;
}

.page-content li {
    margin-bottom: 0.4rem;
}


/* --- HERO caption responsiveness --- */
.hero-caption-box {
    padding: 1rem;
    max-width: 560px;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.2;
}

/* mobil: caption jako full-width panel + menší text */
@media (max-width: 576px) {
    .carousel-caption {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0;
        text-align: left;
    }

    .hero-caption-box {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem;
        border-radius: 0.75rem;
    }

    .hero-title {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
}