.container {
    width: min(1100px, calc(100% - 32px));
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 auto;
}

/* Hlavička – plná šířka */
.site-header {
    width: 100%;
}

/* Bez login lišty – nahrazuje topbar */
.site-header.no-topbar .header-top-inner{
  padding: 32px 0px 24px 0px;
}

/* Bez login lišty – logo stejně velké jako na homepage */
.site-header.no-topbar .brand-logo{
  width: 90px;
}

/* horní mini-lišta */
.topbar {
    background:#f6d970;
}

/* plnošířkový pruh */
.header-top {
    background:#f6d970;
}

/* zarovnaný obsah uvnitř */
.header-top-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0px 0px 12px 0px;
}

.topbar .container {
    display: flex;
    justify-content: center;
    padding: 4px 0px 0px 0px;
}

.login-button {
    font-family: Arial;
    font-weight: bold;
    background-color: #f6d970;
    color: #f6d970;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
}

.login-button:hover {
    background: #dc143c;
    color: #ffffff;
}

/* logo + nadpis */
.brand-logo {
    width: 90px;
    height: auto;
    display: block;
    border-radius: 10px;
}

.brand-titles {
    line-height:1.05;
}

.brand-title {
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 50px);
    color:#111;
    letter-spacing:.2px;
    text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

.brand-subtitle {
    margin-top: 10px;
    font-weight: 800;
    font-size: clamp(18px, 2.1vw, 32px);
    color:#111;
}