/*
-----------------------------------------------
    General
----------------------------------------------
*/

body {
  font-family: 'Raleway', sans-serif;
}

a {
  color: #fff;
  transition: all .4s;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: #8e0717;
}

#site {
  position: relative;
  overflow-x: hidden;
}

.logo {
  display: block;
  margin: 0 auto;
}

#content {
  position: relative;
}


#content .inner {
  width: 92%;
  margin: 30px auto;
  padding: 40px;
  background: rgba(0,0,0,.6);
  color: #eee;
}

#content a:hover {
  text-decoration: underline;
}

.hero-heading {
  display: inline-block;
  font-size: 52px;
  color: #fff;
  padding: 40px 60px;
  background: rgba(0,0,0,.3);
  font-family: 'Oswald', sans-serif;
}

.img-full {
  width: 100%;

}


/*
-----------------------------------------------
    Nav
----------------------------------------------
*/
#menu {
  display: none;
  width: 250px;
  background: rgba(0,0,0,.3);
  position: absolute;
  top: 0;
  left: 0;
}

.menu-items {
  position: relative;
  z-index: 3;
  padding: 60px 40px;
}

.menu-item {
  display: block;
  margin: 0 0 8px 0;
  color: #eee;
  font-size: 13px;
}

.menu-item:hover,
.menu-item.current-menu-item {
  color: #fff;
  padding-left: 5px;
}

.menu-item.current-menu-item {
  font-weight: 600;
  padding-left: 0;
}

#menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  background: #000;
  z-index: 5;
  transition: all .5s;
}

.menu-items.mobile-nav {
  z-index: 3;
}

.menu-items.mobile-nav a {
  font-size: 24px;
  z-index: 3;
}

.mobile-nav .menu-item:hover{
  padding-left: 0;
}

#nav-open {
  display: none;
  position: fixed;
  top: 10px;
  right: 25px;
  font-size: 32px;
  color: #eee;
  z-index: 4;
  cursor: pointer;
}

#menu-close {
  position: fixed;
  top: 10px;
  right: -120%;
  color: red;
  font-size: 24px;
  z-index: 5;
  cursor: pointer;
  transition: all .5s;
}


/*
-----------------------------------------------
    Home
----------------------------------------------
*/
body.home-page #site {
  background: #000 url(img/home.jpg) no-repeat;
  background-size: cover;
}


/*
-----------------------------------------------
    Overview
----------------------------------------------
*/
body.overview-page #site {
  background: #000 url(img/overview.jpg) no-repeat;
  background-size: cover;
}


/*
-----------------------------------------------
    Mission
----------------------------------------------
*/
body.mission-page #site {
  background: #000 url(img/mission.jpg) no-repeat;
  background-size: cover;
}


/*
-----------------------------------------------
    Team
----------------------------------------------
*/
body.team-page #site {
  background: #000 url(img/team.jpg) no-repeat;
  background-size: cover;
}


/*
-----------------------------------------------
    Contact
----------------------------------------------
*/
body.contact-page #site {
  background: #000 url(img/contact.jpg) no-repeat;
  background-size: cover;
}


/*
-----------------------------------------------
    Events
----------------------------------------------
*/
body.events-page #site {
  background: #000 url(img/events.jpg) no-repeat;
  background-size: cover;
}

.event {
  text-align: justify;
  margin-bottom: 50px;
}

.event h3 {
  margin-top: 0;
}


/*
-----------------------------------------------
    Media queries
----------------------------------------------
*/
@media screen and (min-width: 1140px) {
  #content {
    padding-left: 250px;
  }

  #content .inner {
    width: 50%;
  }

  #menu {
    display: block;
  }

}

@media screen and (max-width: 1139px) {
  #nav-open {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  #content .inner {
    width: 70%;
  }
}

