/*
Color Scheme:
Dark Blue   - #324152
Light Blue  - #47535E
Red         - #796466
Red Orange  - #C1836A
Orange      - #DEA677
*/

/* Generic Styles */
body {
  padding-top: 50px;
  background-color: #324152;
  color: #FFFFFF;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

a {
  color: #47535E;
  transition: color 0.15s ease-in-out 0s;
}

a:focus,
a:hover,
a:visited {
  color: #DEA677;
  text-decoration: none;
}

/* Navigation Styles */
.navbar {
  height: 50px;
  background-color: #47535E;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: bold;
}

.navbar-toggle {
  border: 0;
  margin-top: 6px;
  margin-bottom: 6px;
}

.navbar-toggle .icon-bar {
  background-color: #FFFFFF;
  height: 4px;
}

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

a:active.navbar-brand,
a:focus.navbar-brand,
a:hover.navbar-brand,
a:visited.navbar-brand,
.navbar-nav > li > a:active,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:visited {
  color: #DEA677;
  background-color: transparent;
  text-shadow: none;
}

.navbar-nav > .active > a,
.navbar-nav > .active > a:active,
.navbar-nav > .active > a:focus,
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:visited {
  color: #DEA677;
}

/* Hero Styles */
#hero {
  background: #DEA677;
  background: linear-gradient(45deg, #DEA677, #C1836A 60%);
  color: #FFFFFF;
  padding-top: 45px;
  padding-bottom: 45px;
  text-align: center;
}

.hero-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;;
  font-size: 60px;
  text-shadow: 4px 3px 0px #C1836A;
}

.sub-hero-text {
  font-size: 24px;
  text-shadow: 2px 2px 0px #C1836A;
}

img.logo {
  height: 140px;
  width: 140px;
  margin: 0 auto;
}

/* Callout Styles */
#call-out {
  background-color: #796466;
  color: #FFFFFF;
  padding-top: 15px;
  padding-bottom: 15px;
}

#call-out p {
  margin-bottom: 0;
  padding: 30px;
}

/* Services Styles */
#services {
  background-color: #47535E;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #FFFFFF;
}

#services a,
#services a:active,
#services a:focus,
#services a:hover,
#services a:visited {
  color: #FFFFFF;
  text-decoration: none;
}

.box {
  display: block;
  padding: 30px;
}

.box i {
  font-size: 80px;
}

.box h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

a:active.box h3,
a:focus.box h3,
a:hover.box h3 {
  color: #DEA677;
  transition: color 0.15s ease-in-out 0s;
}

.icon {
  color: #FFFFFF;
  margin-bottom: 15px;
}

a:active > .icon,
a:focus > .icon,
a:hover > .icon {
  color: #DEA677;
  transition: color 0.15s ease-in-out 0s;
}

/* Featured Work Styles */
#featured-work {
  background-color: #47535E;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  position: relative;
}

#featured-work h4 {
  margin-bottom: 20px;
}

#featured-work ul {
  list-style: none;
  padding: 0;
}

#featured-work li {
  margin-bottom: 20px;
}

.thumbs {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.hover-box {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
}

.hover-box:hover {
  transition: all 0.15s ease-in-out 0s;
}

.hover-box .overlay {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(222, 166, 120, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.15s ease-in-out 0s;
}

.hover-box:hover .overlay {
  opacity: 1;
}

.hover-box img {
  position: relative;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #DEA677;
  transition: top 0.15s ease-in-out 0s;
}

.hover-box:hover img {
  position: relative;
  top: -75px;
}

.hover-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -32px;
  font-size: 64px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.15s ease-in-out 0s;
}

.hover-box:hover i {
  opacity: 1.0;
}

.hover-box h5 {
  position: absolute;
  margin: 0;
  padding: 30px 0;
  width: 100%;
  text-align: center;
  background-color: #DEA677;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  z-index: 2;
  left: 0;
  bottom: -77px;
  overflow: hidden;
  transition: bottom 0.15s ease-in-out 0s;
}

.hover-box:hover h5 {
  bottom: 0px;
}

/*
a:active.hover-box,
a:focus.hover-box,
a:hover.hover-box {
  background-color: #DEA677;
  transition: color 0.15s ease-in-out 0s;
}
*/

/* Footer Styles */
#social-footer {
  display: block;
  color: #ABABAB;
  text-align: center;
  font-size: 12px;
}

#social-footer ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

#social-footer ul li {
  display: inline-block;
  list-style: none;
  margin: 15px;
  font-size: 15px;
}

#social-footer ul li a i {
  display: block;
  color: #ABABAB;
  font-size: 32px;
  padding: 15px;
  margin: 0;
  background: transparent;
  border-radius: 4px 4px 4px 4px;
  transition: color 0.15s ease-in-out 0s;
  transition: background 0.15s ease-in-out 0s;
}

#social-footer ul li a:active i,
#social-footer ul li a:focus i,
#social-footer ul li a:hover i {
  background: #C1836A;
  color: #FFFFFF;
  text-decoration: none;
}

