/*==================================
############ COLORS ################

Darker-Red: #b22222
Brighter-Red: #bf0000
Text-Section-White: #f7f7f7
Background-Black: #111
Text-Info-Gray: #272D2D
Eerie-Black-Blue: #0D1B1E

###################################
==================================*/

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  background: #121212;
  font-family: 'Roboto', sans-serif;
}

header {
  margin: 20px auto;
}

main {
  background-color: #111;
}

section {
  /*background-color: #f7f7f7;*/
  background-color: #f0f0f0;
  padding: 5px;
  margin-top: 10px;
  min-height: 200px;
  padding-bottom: 30px;
}

h1 {
  font-size: 20px;
  font-weight: bold;
}

h2 {
  font-size: 16px;
  font-weight: bold;
}

p {
  font-size: 13px;
}

a {
  color: #bf0000;
  text-decoration: underline;
}

a.no-style {
  text-decoration: none;
  color: inherit;
}

a.no-style:hover {
  text-decoration: none;
  color: inherit;
}

.margin-t20 {
  margin-top: 20px;
}

.border-box {
  border: 1px solid #333;
  padding: 5px;
}

.col-box {
  margin-bottom: 10px;
}

.img-center {
  margin: 0 auto;
}

.header-banner {
  width: 100%;
}

.header-contact {
  margin-top: 15px;
}

.fred {
  font-family: 'Fredericka the Great', cursive;
  color: #eee;
}

.paypal-logo {
  margin-top: 20px;
  max-width: 200px;
}

.text-red {
  color: #b22222;
}

.text-info {
  color: #272D2D;
  font-size: 16px;
  font-weight: bold;
}

.text-border-bottom {
  border-bottom: 2px solid #777;
  padding-bottom: 10px;
}

.phone, .address {
  color: #f7f7f7;
}

.phone {
  font-size: 26px;
}

.address {
  font-size: 18px;
}

.images-inline img {
  display: inline-block;
  margin: 5px;
  padding: 5px;
}

.contact-form {}

.contact-form label {
  display: block;
}

.contact-input, .contact-textarea {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
  box-shadow: none;
  line-height: 1em;
  margin: 10px 0;
  min-height: 35px;
  min-width: 100%;
  max-width: 100%;
  outline: none;
  padding: 5px;
  -webkit-transition: border 0.1s;
  transition: border 0.1s;
}

.contact-input:focus, .contact-textarea:focus {
  border-bottom: 2px solid #bf0000;
  -webkit-transition: border 0.4s;
  transition: border 0.4s;
}

.contact-textarea {
  min-height: 100px;
}

.contact-button {
  background-color: #bf0000;
  color: #eee;
  font-size: 16px;
  min-height: 50px;
  min-width: 100%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.contact-button:hover {
  background-color: #111;
  color: #eee;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}


/* NAVBARS */

.navbar-footer {
  background: #bf0000;
  min-height: 50px;
  text-align: center;
}

.nav-footer {
  list-style: none;
}

.nav-footer li {
  display: inline-block;
  padding: 15px;
}

.nav-footer li a {
  text-decoration: none;
  color: #ddd;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.nav-footer li a:hover {
  color: #eee;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.navbar-inverse {
  border: 1px solid red;
  background: none;
  box-shadow: 0px 0px 10px red;
}

.navbar-inverse .navbar-nav>li>a {
  color: #9d9d9d;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
  color: #eee;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
  color: #eee;
  background-color: transparent;
}

@media (min-width: 768px) {
  /* Center nav items */
  .navbar .navbar-nav {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
  .navbar .navbar-collapse {
    text-align: center;
  }
  /* Nav item spacing on larger screens */
  .navbar li {
    margin-right: 20px;
    min-width: 100px;
  }
  h1 {
    font-size: 26px;
    font-weight: bold;
  }
  h2 {
    font-size: 18px;
    font-weight: bold;
  }
  p {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 980px;
  }
}
