/*
  Tanasi Bows website
  CSS stylesheet
  By Wade Darnell
  Uses Bootstrap framework and Google fonts

  Colors scheme hex values
          Dark      Standard  Light
  Brown   #2f1d15;  #382d29;  #867067;
  Blue    #0f181e;  #1b2024;  #444e57;
  Green   #1d2a13;  #2b3225;  #68785c;

  Links:  #ffc2aa;
*/

/* Set default font to Open Sans */
* {
  font-family: 'Open Sans', sans-serif;
}

/* Make background image span whole page */
html {
  min-height: 100%;
}

/* Format universal font style */
body {
  font-size: 100%;
  color: #ffffff;
}

/* Set universal font size */
body > * {
  font-size: 1.8em;
}

/* Format and position the index.htm header */
#index_body #header {
  height: 30%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 10;
}

/* Make links and header font Julius Sans One */
#header, h1, h2, h3, h4, h5, a, #spacer_2 {
  font-family: 'Julius Sans One', sans-serif;
}

/* Format all states of links */
a:link, a:hover, a:active, a:visited, a:focus {
  color: #ffffff;
  text-decoration: none;
}

/* Style disk links */
.disk_link {
  width: 180px;
  line-height: 180px;
  height: 180px;
  padding-left: 8px;
  padding-right: 8px;
  margin: 5% auto 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  border: 1px solid #ffffff;
  border-radius: 100%;
}

/* Change disk link color during hover */
.disk_link:hover {
  color: #ffc2aa;
  background-color: #000000;
}

/* Center multiple lines in disk links */
.disk_link > p {
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

/* Set size for h3 elements */
h3 {
  font-size: 1.2em;
}

/* Enlarge h3 elements on larger displays */
@media screen and (min-width: 768px) {
  h3 {
    font-size: 1.8em;
  }
}

/* Format the position of the logo */
#logo {
  max-width: 35%;
  padding-top: 8px;
}

/* Set the size of the subtitle */
#subtitle {
  font-size: 1em;
}

/* Position the page behind the header for index.htm */
#index_body #main {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
}

/* Format the index.htm spacers */
#index_spacer_1 {
  width: 100%;
  height: 85%;
}
#index_spacer_2 {
  width: 100%;
  height: 15%;
  text-align: center;
}

/* Set the size of #scroll_hint */
#scroll_hint {
  font-size: 1.5em;
}

/* Increase size of #scroll_hint on larger displays */
@media screen and (min-width: 768px) {
  #scroll_hint {
    font-size: 2em;
  }
}

/* Animate #scroll_hint */
#scroll_hint {
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0% {
    transform: translateY(-12px);
    opacity: 0.0;
  }
  50% {
    transform: translateY(12px);
    opacity: 1.0;
  }
  100% {
    transform: translateY(12px);
    opacity: 0.0;
  }
}

/* Add vertical space to certain columns */
#index_testimonials .col-sm-6 {
  padding-top: 12px;
  padding-bottom: 12px;
}
#warrior_features .col-sm-4 {
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  #warrior_features .col-sm-4 {
    padding-bottom: 0px;
  }
}
#warrior_testimonials .col-sm-4 {
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  #warrior_testimonials .col-sm-4 {
    padding-bottom: 0px;
  }
}

/* Center images in grids */
.row img {
  margin: 0px auto;
}

/* Black transparent rounded background for content blocks */
.backdrop {
  padding: 2%;
  margin: 2%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
}

/* Style banners */
.banner {
  width: 100%;
  padding: 2% 8%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .banner {
    background-attachment: fixed;
  }
}

/* Banner with black background */
.banner_black {
  background-color: #000000;
}

/* Shadowed box for content (div inside .banner div) */
.banner_box {
  padding: 4%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
}

/* Format insets */
.inset {
  border-top: 1px solid #ffffff;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Style carousel slides */
.carousel-inner img {
  margin: 0px auto;
  max-height: 550px;
}

/* Format the footer */
#footer {
  color: #ffffff;
  font-size: 0.8em;
  padding-top: 1%;
  padding-bottom: 1%;
  text-align: center;
}

/* Format footer for larger displays */
@media screen and (min-width: 768px) {
  .left {
    text-align: left;
  }
  .right {
    text-align: right;
  }
}
