/*
 * Brand styling for the Tentackle Maven site — mimics tentackle.org.
 *
 * Loaded by the Fluido (Bootstrap) skin after its own stylesheet, so these
 * rules override the defaults.
 *
 * Palette (from the tentackle.org docs theme, src/mkdocs/.../extra.css):
 *   dark blue     #00305e   header / nav bar / links / table headers
 *   darker blue   #00203f   nav hover / active
 *   accent orange #f18319   headings, borders, hover, accents
 * Signature look: dark-blue h1, orange h2/h3 framed by thin orange top/bottom
 * rules, dark-blue header with a soft shadow.
 *
 * No remote resources (Google Fonts, @font-face, remote url()) are referenced,
 * so the rendered site loads nothing over the network (GDPR-clean, offline).
 */

body {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

pre,
code,
tt {
  font-family: "Roboto Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* ---- Top navigation bar: brand dark blue, elevated like the original ---- */
.navbar-inner {
  background: #00305e;
  border: none;
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.35);
}

.navbar .nav > li > a,
.navbar .brand {
  color: #ffffff;
  text-shadow: none;
}

.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus,
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover {
  color: #ffffff;
  background-color: #00203f;
}

.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle {
  background-color: #00203f;
  color: #ffffff;
}

/* ---- Banner / logo breathing room ---- */
#bannerLeft img,
#banner img {
  margin: 8px 0;
}

/* ---- Body links in the site's dark blue, hover to orange ---- */
a,
a:visited {
  color: #00305e;
}

a:hover,
a:focus {
  color: #f18319;
}

/* ---- Signature typography: dark-blue h1; orange h2/h3 framed by orange rules ---- */
#bodyColumn h1 {
  color: #00305e;
  font-weight: 700;
}

#bodyColumn h2,
#bodyColumn h3 {
  color: #f18319;
  font-weight: 700;
  border-top: 1px solid #f18319;
  border-bottom: 1px solid #f18319;
  padding: 0.2em 0;
}

/* ---- Breadcrumbs ---- */
#breadcrumbs {
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}

#breadcrumbs a {
  color: #00305e;
}

#breadcrumbs a:hover {
  color: #f18319;
}

/* ---- Buttons in the site's dark blue, hover to orange ---- */
.btn-primary {
  font-weight: 700;
  background: #00305e;
  border-color: #00203f;
  text-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #f18319;
  border-color: #f18319;
}

/* ---- Table header tint ---- */
table.bodyTable th {
  background-color: #00305e;
  color: #ffffff;
}
