/* ============================================================
   RADŇOVICE — HLAVNÍ STYLY
   ============================================================ */

/* Proměnné */
:root {
    --r-blue:      #000070;
    --r-blue-dark: #000055;
    --r-gold:      #E0C000;
    --r-gold-l:    #F0D000;
    --r-white:     #ffffff;
    --r-gray-bg:   #f5f5f3;
    --r-border:    rgba(0, 0, 112, 0.12);
    --r-text:      #1a1a2e;
    --r-text-muted:#5a5a72;
    --card-sm-h:   65px;
    --content-max: 1100px;
    --nav-h:       64px;
    --logo-w:      100px;
    --gap:         10px;
    --radius:      12px;
    --radius-sm:   8px;
    --transition:  0.15s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, 'Segoe UI', sans-serif; font-size: 16px; line-height: 1.6; color: var(--r-text); background: var(--r-gray-bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--r-blue); }
a:hover { color: var(--r-blue-dark); }
h1,h2,h3,h4 { line-height: 1.3; margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.5rem; }

/* Přeskočit na obsah */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--r-blue); color: #fff; padding: 0.5rem 1rem; border-radius: var(--radius-sm); z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── NAVIGACE ── */
.site-header {
    position: relative;
    z-index: 100;
    overflow: visible;
}

.nav-primary {
    background: var(--r-blue);
    overflow: visible;
    position: relative;
}

.nav-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px 0 var(--logo-w);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo-area {
    width: var(--logo-w);
    height: calc(var(--nav-h) + 20px); /* nav výška + bridge výška */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(calc(-550px)); /* -max-width/2 */
    top: 0;
    z-index: 20;
}

.nav-logo-link { display: block; }

.nav-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 4px; /* malý odstup od spodního okraje logo-area */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: transform 0.2s;
}
.nav-logo-img:hover { transform: scale(1.05); }

.nav-site-name { color: #fff; font-size: 17px; font-weight: 500; margin-right: auto; margin-left: 10px; text-decoration: none; }

.nav-items { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }

.nav-item-wrap { position: relative; }

.nav-item { display: flex; align-items: center; gap: 3px; color: #fff; font-size: 17px; white-space: nowrap; padding: 6px 10px; text-decoration: none; transition: color var(--transition); cursor: pointer; background: none; border: none; }
.nav-item:hover, .nav-item:focus-visible, .has-dropdown:hover > .nav-item { color: var(--r-gold); outline: none; }
.nav-item--active { color: #fff; font-weight: 500; }
.nav-item--active:hover { color: var(--r-gold); }

.nav-chevron { font-size: 10px; transition: transform var(--transition); }
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Podmenu */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 0.5px solid var(--r-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0,0,80,0.12);
    list-style: none;
    margin: 0;
    padding: 5px 0;
    z-index: 200;
}
/* Neviditelný "most" — pseudo-element na has-dropdown vyplní mezeru
   mezi nav lištou a podmenu, myš ho nepřekříží a dropdown zůstane otevřený */
.has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 201;
    display: none;
}
.has-dropdown:hover::before { display: block; }
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown { display: block; }
.nav-item--sub { color: var(--r-blue); font-size: 15px; padding: 9px 16px; display: flex; align-items: center; gap: 8px; text-decoration: none; width: 100%; }
.nav-item--sub:hover { background: var(--r-gray-bg); color: var(--r-blue); font-weight: 500; }

/* Hamburger (mobil) */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-burger-line { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Logo bridge — skrytý */
.logo-bridge { display: none; }

/* Header bridge — bílý pruh pod celou navigací */
.header-bridge {
    background: #ffffff;
    height: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ── HERO SEKCE ── */
.hero-section { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--r-gray-bg); overflow: hidden; max-height: 600px; }
.hero-section-inner { max-width: var(--content-max); margin: 0 auto; height: 100%; position: relative; overflow: hidden; background: #00004a; }

.hero-video, .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-poster { background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 0, 40, 0.35); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 6px; text-align: center; padding-top: 32px; }
.hero-title { color: #fff; font-size: clamp(24px, 4vw, 48px); font-weight: 500; letter-spacing: 0.04em; margin: 0; }
.hero-subtitle { color: rgba(255,255,255,0.6); font-size: clamp(12px, 1.5vw, 16px); letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }

/* ── KARTY POD VIDEEM ── */
.info-cards-section { background: var(--r-gray-bg); padding: var(--gap); }
.info-cards-inner { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }

.info-card { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 18px; display: flex; align-items: flex-start; gap: 14px; }
.info-card-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(0,0,112,0.06); border: 0.5px solid var(--r-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; color: var(--r-blue); }
.info-card-title { font-size: 15px; font-weight: 500; color: var(--r-text); margin-bottom: 4px; }
.info-card-desc { font-size: 13px; color: var(--r-text-muted); margin-bottom: 10px; }
.info-card-link { font-size: 13px; color: var(--r-blue); font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.info-card-link:hover { text-decoration: underline; }

/* Kontaktní seznam v kartě */
.info-card-contact { margin: 0; }
.contact-row { display: flex; gap: 8px; margin-bottom: 4px; }
.contact-row dt { font-size: 11px; color: var(--r-text-muted); min-width: 72px; padding-top: 1px; }
.contact-row dd { font-size: 12px; color: var(--r-text); margin: 0; }
.contact-row dd a { color: var(--r-blue); text-decoration: none; }

/* ── INSTAGRAM ── */
.instagram-section { background: var(--r-gray-bg); padding: var(--gap); padding-top: 0; }
.instagram-inner { max-width: var(--content-max); margin: 0 auto; background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 16px; }
.instagram-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 14px; font-weight: 500; color: var(--r-text); }
.instagram-header .ti { font-size: 18px; color: var(--r-blue); }
.instagram-handle { flex: 1; }
.instagram-link { font-size: 12px; color: var(--r-blue); font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.instagram-placeholder { color: var(--r-text-muted); font-size: 13px; text-align: center; padding: 20px; }

/* ── PATIČKA ── */
.site-footer {
    background: var(--r-blue);
    margin-top: var(--gap);
}
.footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    gap: 32px;
}
.footer-col { flex: 1; }
.footer-head { color: var(--r-gold); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.footer-text { color: #fff; font-size: 13px; line-height: 1.8; margin: 0; }
.footer-text a { color: #fff; text-decoration: none; }
.footer-text a:hover { color: var(--r-gold); }
.footer-link { display: block; color: #fff; font-size: 13px; line-height: 1.9; text-decoration: none; transition: color var(--transition); }
.footer-link:hover { color: var(--r-gold); }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.15); padding: 12px 20px; }
.footer-copy { max-width: var(--content-max); margin: 0 auto; color: rgba(255,255,255,0.45); font-size: 12px; }

/* ── VNITŘNÍ STRÁNKY ── */
.page-header-section {
    background: var(--r-gray-bg);
    position: relative;
}
.page-header-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px 0 var(--logo-w);
    position: relative;
    height: var(--nav-h);
    background: var(--r-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}
.page-breadcrumb { font-size: 11px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.2; }
.page-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-breadcrumb a:hover { color: #fff; }
.page-title { font-size: 18px; font-weight: 500; color: #fff; border-left: 3px solid var(--r-gold); padding-left: 10px; margin: 0; line-height: 1.2; }
.page-content-wrap {
    max-width: var(--content-max);
    margin: 0 auto;
    background: #fff;
    border-radius: 0;
    padding: 24px 28px 32px;
    min-height: 300px;
    margin-bottom: var(--gap);
}
.page-content { font-size: 15px; line-height: 1.75; }
.page-content h2 { font-size: 18px; margin-top: 1.5rem; }
.page-content h3 { font-size: 16px; margin-top: 1.25rem; }

/* ── ÚŘEDNÍ DESKA ── */
.uredni-deska-note { background: rgba(0,0,112,0.04); border: 0.5px solid var(--r-border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: var(--r-text-muted); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.uredni-deska-table-wrap { overflow-x: auto; }
.uredni-deska-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.uredni-deska-table th { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--r-text-muted); text-align: left; padding: 10px 12px; border-bottom: 0.5px solid var(--r-border); background: var(--r-gray-bg); }
.uredni-deska-table td { padding: 11px 12px; border-bottom: 0.5px solid var(--r-border); vertical-align: middle; }
.uredni-deska-table tr:last-child td { border-bottom: none; }
.uredni-deska-table tr:hover td { background: var(--r-gray-bg); }
.doc-link { color: var(--r-blue); font-weight: 500; text-decoration: none; }
.doc-link:hover { text-decoration: underline; }
.td-date { white-space: nowrap; color: var(--r-text-muted); font-size: 13px; }
.td-action { text-align: right; }
.doc-download { color: var(--r-blue); font-size: 18px; text-decoration: none; }
.uredni-deska-source { margin-top: 16px; font-size: 12px; color: var(--r-text-muted); }
.uredni-deska-empty { color: var(--r-text-muted); font-style: italic; }

/* ── ZASTUPITELSTVO ── */
.zastupitelstvo-wrap { }
.members-wrap { display: flex; gap: var(--gap); margin-bottom: var(--gap); }
.col-big { flex: 1; }
.col-small-pair { flex: 1; display: flex; flex-direction: column; gap: var(--gap); }
.card-big { height: calc(var(--card-sm-h) * 2 + var(--gap)); background: rgba(0,0,112,0.04); border: 0.5px solid rgba(0,0,112,0.2); border-radius: var(--radius); padding: 18px 16px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.card-big-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,112,0.15); border: 0.5px solid rgba(0,0,112,0.3); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--r-blue); flex-shrink: 0; }
.card-big-role { font-size: 11px; color: var(--r-blue); font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.card-big-name { font-size: 14px; font-weight: 500; color: var(--r-text); margin-bottom: 4px; }
.card-big-phone { font-size: 13px; color: var(--r-blue); font-weight: 500; text-decoration: none; }
.card-small { height: var(--card-sm-h); background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 0 14px; display: flex; align-items: center; gap: 10px; }
.card-small-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,112,0.06); border: 0.5px solid var(--r-border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--r-blue); opacity: 0.6; flex-shrink: 0; }
.card-small-role { font-size: 10px; color: var(--r-text-muted); margin-bottom: 2px; }
.card-small-name { font-size: 12px; font-weight: 500; color: var(--r-text); }
.row-bottom { display: flex; gap: var(--gap); }
.row-bottom .card-small { flex: 1; }
.zastupitelstvo-text { margin-top: 24px; padding-top: 20px; border-top: 0.5px solid var(--r-border); }

/* ── KONTAKT ── */
.contact-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin-bottom: var(--gap); }
.contact-card { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 18px; }
.contact-card-title { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--r-blue); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.contact-list { margin: 0; }
.contact-list .contact-row { align-items: flex-start; margin-bottom: 10px; }
.contact-list .contact-row:last-child { margin-bottom: 0; }
.contact-list dt { display: flex; align-items: center; gap: 6px; font-size: 0; color: var(--r-text-muted); min-width: auto; }
.contact-list dt .ti { font-size: 18px; }
.contact-list dd { font-size: 13px; color: var(--r-text); margin-left: 8px; }
.contact-list dd a { color: var(--r-blue); text-decoration: none; }
.hours-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; background: var(--r-gray-bg); border-radius: var(--radius-sm); padding: 7px 10px; }
.hours-row dt { font-size: 12px; color: var(--r-text-muted); }
.hours-row dd { font-size: 12px; font-weight: 500; color: var(--r-text); margin: 0; }
.hours-closed { opacity: 0.45; }
.phones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin-bottom: var(--gap); }
.phone-row { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.phone-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,112,0.06); border: 0.5px solid var(--r-border); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--r-blue); flex-shrink: 0; }
.phone-label { font-size: 11px; color: var(--r-text-muted); margin-bottom: 2px; }
.phone-num { font-size: 13px; color: var(--r-blue); font-weight: 500; text-decoration: none; }
.ds-block { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; gap: 14px; margin-bottom: var(--gap); }
.ds-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,112,0.06); border: 0.5px solid var(--r-border); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--r-blue); flex-shrink: 0; }
.ds-title { font-size: 13px; font-weight: 500; color: var(--r-text); margin-bottom: 2px; }
.ds-val { font-size: 16px; color: var(--r-blue); font-weight: 500; letter-spacing: 0.04em; }
.ds-note { font-size: 11px; color: var(--r-text-muted); margin-top: 2px; }
.faktura-block { background: rgba(0,0,112,0.03); border: 0.5px solid rgba(0,0,112,0.18); border-radius: var(--radius); padding: 16px 18px; margin-bottom: var(--gap); position: relative; }
.faktura-copy-btn { position: absolute; top: 12px; right: 14px; font-size: 12px; color: var(--r-blue); cursor: pointer; display: flex; align-items: center; gap: 4px; border: 0.5px solid var(--r-border); border-radius: var(--radius-sm); padding: 5px 10px; background: #fff; transition: background var(--transition); }
.faktura-copy-btn:hover { background: var(--r-gray-bg); }
.faktura-section-title { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--r-blue); margin-bottom: 10px; }
.faktura-list { margin: 0; }
.faktura-row { display: flex; gap: 10px; margin-bottom: 5px; }
.faktura-row:last-child { margin-bottom: 0; }
.faktura-row dt { font-size: 12px; color: var(--r-text-muted); min-width: 130px; }
.faktura-row dd { font-size: 13px; color: var(--r-text); font-weight: 500; margin: 0; }
.map-block { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); overflow: hidden; }
.map-block-header { padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 0.5px solid var(--r-border); }
.map-block-title { font-size: 13px; font-weight: 500; color: var(--r-text); flex: 1; }
.map-block-link { font-size: 12px; color: var(--r-blue); font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.map-embed iframe { display: block; }

/* ── ZAJÍMAVÁ MÍSTA ── */
.places-intro { color: var(--r-text-muted); font-size: 14px; margin-bottom: 20px; }
.places-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0 0 20px; }
.place-card { border: 0.5px solid var(--r-border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.place-card:hover { border-color: var(--r-blue); box-shadow: 0 2px 12px rgba(0,0,80,0.08); }
.place-card-link { text-decoration: none; display: block; }
.place-card-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--r-gray-bg); }
.place-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.place-card:hover .place-card-photo img { transform: scale(1.03); }
.place-card-no-photo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--r-blue); opacity: 0.2; }
.place-card-qr-badge { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; background: rgba(255,255,255,0.9); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--r-blue); }
.place-card-body { padding: 12px 14px; }
.place-card-title { font-size: 14px; font-weight: 500; color: var(--r-text); margin-bottom: 4px; }
.place-card-desc { font-size: 12px; color: var(--r-text-muted); margin-bottom: 8px; }
.place-card-more { font-size: 12px; color: var(--r-blue); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.map-teaser { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.map-teaser-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,112,0.06); border: 0.5px solid var(--r-border); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--r-blue); flex-shrink: 0; }
.map-teaser-title { font-size: 13px; font-weight: 500; color: var(--r-text); margin-bottom: 2px; }
.map-teaser-desc { font-size: 12px; color: var(--r-text-muted); }
.map-teaser-link { font-size: 13px; color: var(--r-blue); font-weight: 500; text-decoration: none; white-space: nowrap; display: flex; align-items: center; gap: 4px; margin-left: auto; }

/* Detail místa */
.place-photo-wrap { margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; }
.place-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.place-detail-grid { display: grid; grid-template-columns: 1fr 240px; gap: 20px; align-items: start; }
.place-sidebar { display: flex; flex-direction: column; gap: var(--gap); }
.gps-card { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); overflow: hidden; }
.gps-body { padding: 12px 14px; }
.gps-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--r-text-muted); margin-bottom: 4px; }
.gps-coords { font-size: 13px; color: var(--r-text); font-weight: 500; margin-bottom: 10px; letter-spacing: 0.02em; }
.gps-btn { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 9px; background: var(--r-blue); color: #fff; font-size: 13px; font-weight: 500; border-radius: var(--radius-sm); text-decoration: none; transition: background var(--transition); }
.gps-btn:hover { background: var(--r-blue-dark); color: #fff; }
.back-card { display: flex; align-items: center; gap: 10px; background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 12px 14px; text-decoration: none; transition: border-color var(--transition); }
.back-card:hover { border-color: var(--r-blue); }
.back-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,112,0.06); border: 0.5px solid var(--r-border); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--r-blue); flex-shrink: 0; }
.back-title { font-size: 13px; font-weight: 500; color: var(--r-text); display: block; }
.back-sub { font-size: 11px; color: var(--r-text-muted); }
.other-places { background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); padding: 14px; }
.other-places-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--r-text-muted); margin-bottom: 8px; }
.other-places ul { list-style: none; padding: 0; margin: 0; }
.other-place-link { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 0.5px solid var(--r-border); text-decoration: none; color: var(--r-text); font-size: 13px; }
.other-places li:last-child .other-place-link { border-bottom: none; }
.other-place-link:hover { color: var(--r-blue); }
.other-place-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--r-blue); flex-shrink: 0; }

/* ── UBYTOVÁNÍ A SLUŽBY ── */
.services-category { margin-bottom: 24px; }
.services-category-title { font-size: 16px; font-weight: 500; color: var(--r-text); border-bottom: 0.5px solid var(--r-border); padding-bottom: 10px; margin-bottom: 12px; }
.services-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--gap); }
.service-card { border: 0.5px solid var(--r-border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.service-card:hover { border-color: var(--r-blue); box-shadow: 0 2px 12px rgba(0,0,80,0.08); }
.service-card-link { display: flex; text-decoration: none; }
.service-card-link--no-url { cursor: default; }
.service-card-link--no-url:hover { border-color: var(--r-border); box-shadow: none; }
.service-card-photo { width: 140px; flex-shrink: 0; overflow: hidden; background: var(--r-gray-bg); }
.service-card-photo img { width: 140px; height: 140px; object-fit: cover; }
.service-card-no-photo { width: 140px; height: 140px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--r-blue); opacity: 0.15; }
.service-card-body { flex: 1; padding: 16px 18px; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.service-card-name { font-size: 15px; font-weight: 500; color: var(--r-text); }
.service-card-desc { font-size: 13px; color: var(--r-text-muted); }
.service-card-meta { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.service-tag { font-size: 12px; color: var(--r-text-muted); display: flex; align-items: center; gap: 4px; }
.service-card-ext { font-size: 12px; color: var(--r-blue); font-weight: 500; margin-left: auto; display: flex; align-items: center; gap: 4px; }

/* ── BREADCRUMB ── */
.breadcrumb { list-style: none; padding: 0; margin: 0 0 6px; display: flex; flex-wrap: wrap; gap: 4px; font-size: 12px; }
.breadcrumb-item { color: rgba(255,255,255,0.5); }
.breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-separator { color: rgba(255,255,255,0.3); }

/* ── CHATBOT ── */
.chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 500; }
.chatbot-btn { width: 52px; height: 52px; border-radius: 50%; background: var(--r-blue); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; box-shadow: 0 4px 16px rgba(0,0,80,0.25); transition: background var(--transition), transform var(--transition); }
.chatbot-btn:hover { background: var(--r-blue-dark); transform: scale(1.05); }
.chatbot-panel { position: absolute; bottom: 64px; right: 0; width: 340px; background: #fff; border: 0.5px solid var(--r-border); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,80,0.15); display: none; flex-direction: column; overflow: hidden; }
.chatbot-panel.open { display: flex; }
.chatbot-header { background: var(--r-blue); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.chatbot-header-title { color: #fff; font-size: 14px; font-weight: 500; flex: 1; }
.chatbot-header-close { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 18px; padding: 2px; }
.chatbot-messages { flex: 1; max-height: 280px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.chatbot-msg { font-size: 13px; line-height: 1.5; padding: 8px 12px; border-radius: 10px; max-width: 85%; }
.chatbot-msg--bot { background: var(--r-gray-bg); color: var(--r-text); align-self: flex-start; }
.chatbot-msg--user { background: var(--r-blue); color: #fff; align-self: flex-end; }
.chatbot-msg--error { background: #fef2f2; color: #991b1b; align-self: flex-start; }
.chatbot-input-area { padding: 10px; border-top: 0.5px solid var(--r-border); display: flex; gap: 6px; }
.chatbot-input { flex: 1; border: 0.5px solid var(--r-border); border-radius: var(--radius-sm); padding: 8px 10px; font-size: 13px; outline: none; }
.chatbot-input:focus { border-color: var(--r-blue); }
.chatbot-send { background: var(--r-blue); color: #fff; border: none; border-radius: var(--radius-sm); padding: 8px 12px; cursor: pointer; font-size: 14px; transition: background var(--transition); }
.chatbot-send:hover { background: var(--r-blue-dark); }
.chatbot-limit-note { font-size: 11px; color: var(--r-text-muted); text-align: center; padding: 6px 10px 0; }

/* ── OBECNÉ UTILITY ── */
.btn-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--r-blue); color: #fff; text-decoration: none; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; transition: background var(--transition); }
.btn-primary:hover { background: var(--r-blue-dark); color: #fff; }

/* Focus viditelný pro přístupnost */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--r-gold);
    outline-offset: 2px;
}

/* ── RESPONZIVNÍ — TABLET ── */
@media (max-width: 900px) {
    .places-grid { grid-template-columns: repeat(2, 1fr); }
    .place-detail-grid { grid-template-columns: 1fr; }
    .place-sidebar { flex-direction: row; flex-wrap: wrap; }
    .place-sidebar > * { flex: 1 1 200px; }
}

/* ── RESPONZIVNÍ — MOBIL ── */
@media (max-width: 640px) {
    /* Navigace */
    .nav-logo-img { width: 36px; height: 36px; margin-bottom: 0; }
    .nav-logo-area { align-items: center; }
    .logo-bridge { display: none; }
    .nav-burger { display: flex; }
    .nav-items { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--r-blue); flex-direction: column; z-index: 300; overflow-y: auto; padding: 70px 0 20px; margin: 0; }
    .nav-items.open { display: flex; }
    .nav-item-wrap { width: 100%; }
    .nav-item--top { color: #fff; font-size: 16px; padding: 14px 20px; border-bottom: 0.5px solid rgba(255,255,255,0.08); width: 100%; }
    .nav-item--top:hover { color: var(--r-gold); background: rgba(255,255,255,0.04); }
    .nav-dropdown { display: none; position: static; box-shadow: none; border: none; border-radius: 0; background: rgba(0,0,0,0.15); padding: 0; }
    .has-dropdown.open .nav-dropdown { display: block; }
    .nav-item--sub { color: rgba(255,255,255,0.75); padding: 10px 20px 10px 36px; }
    .nav-item--sub:hover { background: rgba(255,255,255,0.06); color: #fff; }

    /* Stránka header */
    .page-header-inner { padding-left: 16px; }

    /* Hero */
    .hero-section { aspect-ratio: 4/3; max-height: 280px; }

    /* Karty */
    .info-cards-inner { grid-template-columns: 1fr; }

    /* Zastupitelé */
    .members-wrap { flex-direction: column; }
    .card-big { height: auto; }
    .col-small-pair { flex-direction: row; }
    .col-small-pair .card-small { flex: 1; height: auto; padding: 12px 10px; }
    .row-bottom { flex-wrap: wrap; }
    .row-bottom .card-small { flex: 1 1 calc(50% - 5px); height: auto; padding: 10px; }

    /* Kontakt */
    .contact-top-grid { grid-template-columns: 1fr; }
    .phones-grid { grid-template-columns: 1fr; }

    /* Zajímavá místa */
    .places-grid { grid-template-columns: 1fr; }

    /* Ubytování */
    .service-card-photo, .service-card-photo img { width: 100px; height: 100px; }
    .service-card-no-photo { width: 100px; height: 100px; }

    /* Patička */
    .footer-inner { flex-direction: column; gap: 16px; padding: 20px 16px; }

    /* Chatbot */
    .chatbot-panel { width: calc(100vw - 32px); right: -12px; }
}
