/*green:  2C5942*/
/*orange: FF722b*/
/*gray: 282828*/

/**********
FONTS
**********/
body {
  font-family: 'Noto Serif', serif;
}
h1, h2, h3 {
  font-family: 'Noto Sans', sans-serif;
  color: #2C5942;
}

h1 {
  font-size: 3.5em;
}

/**********
HEADER STYLING
**********/
header {
  background-image: url(assets/Images/Seattle-Hero.jpg);
  background-size: cover;
  background-position: center bottom;
  height: 610px;
}
.navigation {
  background-color: #2C5942;
  height: 85px;
  max-width: 960px;
  margin: auto;
}
.navigation nav {
  display: inline-block;
  float: right;
  margin: 29px 30px;
}
.navigation nav a {
  text-decoration: none;
  color: white;
  margin-left: 15px;
}
.navigation nav a:hover {
  color: #FF722b;
}
.logo {
  height: 85px;
  width: 85px;
}
#mobilePic {
  display: none;
}
#openMenu {
  display: none;
}
#closeMenu {
  display: none;
  font-family: 'Noto Sans';
}

/**********
HISTORY SECTION STYLING
**********/
.history {
  max-width: 960px;
  margin: 75px auto;
}
.history h1 {
  margin-bottom: 5px;
}
.history p, .history a {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.history a, .neighborhoods a {
  color: #FF722b;
}
.history a:hover, .neighborhoods a:hover {
  color: #2C5942;
}

/**********
NEIGHBORHOOD SECTION STYLING
**********/
.neighborhoods {
  max-width: 960px;
  margin: 75px auto;
}
.neighborhoods a {
  text-decoration: none;
}
.neighborhoods h3:hover {
  color: #FF722b;
}
.neighborhoods h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.hood-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.hood {
  width: 300px;
  margin-right: 20px;
  margin-bottom: 45px;
}
.hood p {
  margin-top: 0;
  font-size: 1.1em;
  font-family: 'Noto Sans';
}
.neighborhoods a {
  color: #FF722b;
  font-size: 1.5em;
  margin-top: 0;
}
.thumbnail {
  width: 300px;
  height: 300px;
}
#loadMore {
  cursor: pointer;
  text-decoration: underline;
}

/**********
CONTACT SECTION STYLING
**********/
.contact {
  background-color: #2C5942;
  color: #FFF;
}
#contact-holder {
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact h1 {
  color: #FF722b;
  font-size: 3em;
}
#sign-up-text {
  width: 480px;
  margin: 45px 0;
}
#sign-up-form {
  width: 400px;
  margin: 45px 0 45px 25px;
}
.contact section p {
  font-size: 1.4em;
  margin-top: 5px;
  margin-bottom: 40px;
}
.contact form {
  width: 455px;
  height: 250px;
  background-color: #FFFFFF;
  color: #2C5942;
  margin-top: 50px;
}
.contact label {
  width: 50px;
  margin: 30px 15px 10px 30px;
  text-align: left;
  display: inline-block;
  font-size: 1.4em;
}
.contact input {
  width: 350px;
  border: none;
  border-bottom: 1px solid #2C5942;
  color: #000;
}
.contact button {
  background-color: #FF722b;
  border: none;
  width: 150px;
  height: 50px;
  font-family: 'Noto Sans';
  font-size: 1.6em;
}
.contact button:hover {
  color: #2C5942;
}

/**********
VIDEO SECTION STYLING
used this tutorial for responsive iframe: http://www.smashingmagazine.com/2014/02/making-embedded-content-work-in-responsive-design/;
**********/
.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#overlayPicture {
  width: 100%
}
#overlay {
  width: 100%;
  color: #FFF;
  position: absolute;
  z-index: 25;
  margin-top: 20%;
  text-align: center;
  font-size: 8em;
}
#overlay span {
  border: 10px solid #FFF;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  display: inline-block;
  padding-top: 30px;
  padding-left: 30px;
  cursor: pointer;
}
#overlay span:hover {
  border: 10px solid #FF722b;
  color: #FF722b
}
.video iframe {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**********
FOOTER SECTION STYLING
**********/
footer {
  background-color: #282828;
  color: #FFF;
  margin-top: -1px;
  padding: 75px 25px;
}
.footer-holder {
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
footer a {
  text-decoration: none;
}
.footer-holder section, .social-icons {
  width: 480px;
}
#footer-links {
  margin-top: 10px;
  margin-bottom: 25px;
}
#footer-links a {
  color: #FFF;
  font-size: 1.2em;
  margin: 5px 15px 25px 0;
}
#footer-links a:hover {
  color: #FF722b;
}
.footer-holder p {
  margin: 0;
}
.social-icons a {
  border-radius: 100%;
  background-color: #FFF;
  color: #282828;
  padding: 10px 10px 5px 10px;
  margin: 5px;
  float: right;
}
.social-icons img {
  height: 25px;
  width: 25px;
}
.social-icons a:hover {
  background-color: #FF722b;
}

/**********
MOBILE STYLING
**********/

@media (max-width: 650px) {
  /**********
  Mobile Header Styling
  **********/
  .logo {
    display: inline-block;
  }
  .navigation {
    height: 85px;
  }
  #menu {
    margin-top: 10px;
    float: none;
    display: none;
  }
  .navigation a {
    display: block;
  }
  header {
    height: 250px;
  }
  #mobilePic {
    display: inline-block;
    background-size: cover;
    width: 100%;
  }
  #openMenu, #closeMenu {
    display: inline-block;
    float: right;
    height: 75px;
    width: 75px;
    font-size: 3.5em;
    color: #FFF;
    background-color: #2C5942;
    border: none;
  }
  #closeMenu {
    display: none;
  }
  /**********
  Mobile History Styling
  *********/
  h1 {
    font-size: 2em;
  }
  .history p, .history a, .history h1 {
    margin-left: 15px;
    margin-right: 15px;
  }
  /**********
  Mobile Neighborhoods Styling
  *********/
  .hood, .neighborhoods a, .neighborhoods h1 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .neighborhoods h3 {
    margin-top: 0;
    margin-bottom: 0;
  }
  #loadMore {
    font-size: 1.2em;
  }
  /**********
  Mobile Contact Styling
  *********/
  #contact-holder {
    margin-left: 15px;
    margin-right: 15px;
  }
  #sign-up-text {
    margin-bottom: 0;
  }
  #sign-up-form {
    width: 300px;
    margin: 0 0 45px 0;
  }
  .contact form {
    width: 285px;
    height: 190px;
  }
  .contact input {
    width: 180px;
    margin: 15px 0;
  }
  .contact label {
    width: 65px;
    margin: 0 5px 0 10px;
  }
  /**********
  Mobile Video Styling
  *********/
  #overlay, #overlayPicture {
    display: none;
  }
  .video iframe {
    display: inline-block;
  }
  /**********
  Mobile Footer Styling
  *********/
  .footer-holder p {
    font-size: .9em;
    margin-top: 5px;
  }
  .social-icons {
    margin-top: 25px;
    margin-left: 0;
  }
  .social-icons a {
    margin-left: 0;
    float: left;
  }
}

