
:root{
  --bg: #eef2f7;
  --paper: #ffffff;
  --text: #13233a;
  --muted: #5b6b80;

  --brand: #1f6feb;      /* modrá */
  --brand-dark: #1657c2;

  --border: #dbe3ef;
  --shadow: 0 10px 30px rgba(16, 33, 56, .08);

  --container: 1120px;
  --hero-image: none;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: var(--brand-dark); }
a:hover{ color: var(--brand); }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.muted{ color: var(--muted); }

/* HERO */
.hero{
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero__inner{ min-height: 170px; display:flex; flex-direction:column; }
.hero__topline{ padding: 10px 0; }
.hero__toplineInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.hero__spacer{ flex: 1; }
.hero__logo{ height: 40px; width: auto; background: rgba(255,255,255,.92); border-radius: 10px; padding: 6px 10px; }
.hero__content{ padding: 10px 0 22px; text-align:center; }
.hero__title{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(18px, 2.2vw, 28px);
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.hero__subtitle{
 color: #fff;
  margin: 0 auto;
  max-width: 1000px;
  font-size: clamp(14px, 2.2vw, 28px);
  line-height: 1.35;
 
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
}

/* NAV WRAP (modrá lišta pod hero) */
.navwrap{
   background: linear-gradient(90deg, #2F88A0, #3AA0BD);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.navwrap__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 44px;
  position: relative;
}
.nav__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:center;
}
.nav__link{
  display:inline-block;
  padding: 10px 12px;
  color:#fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration:none;
  border-radius: 10px;
}
.nav__link:hover{ background: rgba(255,255,255,.16); }

.nav__link.is-active { font-weight: 800; text-decoration: underline; }


.navtoggle{
  display:none;
  position:absolute;
  left: 16px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-weight: 800;
}

/* PAGE + PAPER */
.page{ padding: 18px 0 28px; }
.paper{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.layout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  align-items:start;
}

/* CONTENT */
.section{ padding: 8px 6px 18px; border-bottom: 1px solid var(--border); }
.section:last-child{ border-bottom: 0; }
h2{ margin: 8px 0 10px; font-size: 18px; letter-spacing: -0.01em; }
h3{ margin: 14px 0 8px; font-size: 15px; }
p{ margin: 0 0 10px; color: #243955; }

/* Program block */
.program{
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow:hidden;
}
.program__row{
  display:grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid var(--border);
}
.program__row:last-child{ border-bottom:0; }
.program__time{
  padding: 10px 12px;
  background: #f6f9ff;
  font-weight: 800;
  color: #203655;
}
.program__text{
  padding: 10px 12px;
}

/* Callout */
.callout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(31,111,235,.25);
  background: rgba(31,111,235,.06);
  border-radius: 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight: 800;
}
.btn:hover{ background: var(--brand-dark); }

/* SIDEBAR */
.sidebar{ position: sticky; top: 12px; }
.sidecard{
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow:hidden;
  margin-bottom: 12px;
}
.sidecard__title{
  background: #f3f6fb;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
}
.sidecard__body{
  padding: 10px 12px;
   color: black;
  font-size: 13px;
  line-height: 1.4;
}


.sidecard__body a{
  color: var(--brand);
}

.sidecard__body a:hover{
  color: var(--brand-dark);
}

.map iframe{
  width:100%;
  height: 220px;
  border:0;
  display:block;
}

/* FOOTER */
.footer{
  padding: 14px 2px 0;
  color: var(--muted);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 960px){
  .layout{ grid-template-columns: 1fr; }
  .sidebar{ position: static; }
}
@media (max-width: 700px){
  .navtoggle{ display:inline-block; }
  .nav{ display:none; width:100%; padding: 10px 0; }
  .nav.is-open{ display:block; }
  .nav__list{ flex-direction:column; align-items:center; }
}
