/* Masaryk University (MUNI) corporate visual identity
   Colors and font stack sourced from muni.cz's own stylesheet
   (primary brand blue #0000dc, "Muni" typeface with its own
   Arial/Helvetica Neue fallback). */

:root {
  --muni-blue: #0000dc;
  --muni-blue-dark: #000070;
  --muni-blue-tint: #ebebfc;
  --muni-gray: #303030;
  --muni-gray-light: #dcdcdc;
}

body {
  font-family: Muni, Arial, "Helvetica Neue", sans-serif;
  color: var(--muni-gray);
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
  font-family: Muni, Arial, "Helvetica Neue", sans-serif;
  color: var(--muni-blue);
}

a, a:visited {
  color: var(--muni-blue);
}

a:hover, a:focus {
  color: var(--muni-blue-dark);
}

/* Top accent bar, matching muni.cz's header */
#title {
  border-top: 6px solid var(--muni-blue);
  padding-top: 1rem;
}

#toc-title {
  color: var(--muni-blue);
}

.nav-link.active {
  color: var(--muni-blue);
  font-weight: 700;
}

blockquote {
  border-left: 4px solid var(--muni-blue);
}

code {
  background-color: var(--muni-blue-tint);
}

pre {
  background-color: var(--muni-blue-tint);
  border-left: 3px solid var(--muni-blue);
}

hr {
  border-top: 1px solid var(--muni-gray-light);
}
