/*
 * Brand styling for the Wurbelizer Maven site — mimics wurbelizer.org.
 *
 * Loaded by the Fluido (Bootstrap) skin after its own stylesheet, so these
 * rules override the defaults.
 *
 * Palette (extracted from the original Divi site):
 *   primary red   #de1d26   header / nav / accents
 *   dark red      #9d141b   hover / shadow
 *   link blue     #2ea3f2   body links
 * Signature look: UPPERCASE red headings, square (0-radius) buttons, header shadow.
 */

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 red, elevated like the original ---- */
.navbar-inner {
  background: #de1d26;
  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: #9d141b;
}

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

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

/* ---- Body links in the site's blue ---- */
a,
a:visited {
  color: #2ea3f2;
}

a:hover,
a:focus {
  color: #9d141b;
}

/* ---- Signature typography: uppercase, red headings ---- */
#bodyColumn h1 {
  text-transform: uppercase;
  font-weight: 700;
}

#bodyColumn h2,
#bodyColumn h3 {
  text-transform: uppercase;
  color: #de1d26;
  font-weight: 700;
}

/* Section header underline accent. */
#bodyColumn h2 {
  border-bottom: 2px solid #de1d26;
  padding-bottom: 0.2em;
}

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

#breadcrumbs a {
  color: #de1d26;
}

/* ---- Square, uppercase, brand-red buttons like the site ---- */
.btn-primary {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  background: #de1d26;
  border-color: #9d141b;
  text-shadow: none;
}

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

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