/*
Project Name: Trillium Publishing
Client: Sunny Gagliano, Trillium Publishing
Author: Katie Campbell
*/


/******************************************
/* SETUP
/*******************************************/

/* Box Model Hack */
* {
  -moz-box-sizing: border-box; /* Firexfox */
  -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
  box-sizing: border-box; /* IE */
}

/* Clear fix hack */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/******************************************
/* BASE STYLES
/*******************************************/

body {
	font-family: 'Source Sans Pro', sans-serif;
  background-color: #c2ccd4;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  background-color: white;
}

#logo_bar {
  background-color: #097f73;
  height: 100px;
  width: 33.5%;
  float: left;
  text-align: center;
}

img#logo {
  margin-top: 25px;
}

#links_bar {
  height: 100px;
  width: 66.5%;
  float: right;
}

a {
  text-decoration: none;
}

.hamburger-menu {
  display: none;
}

/******************************************
/* RESPONSIVE CSS
/*******************************************/

@media screen and (max-width: 450px) {
  #logo_bar {
    width: 100%;
    float: none;
  }

  /*#links_bar.viewable {
    display: none;
  }*/

  #tagline_bar h2 {
    font-size: 32px;
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 36px;
  }

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

.hamburger-menu {
  position: relative;
  display: inline-block;
  color: #cee5e3;
  font-size: 24px;
  float: right;
  margin: -80px 20px 0 0;
  background-color: #097f73;
  float: right; 
}

#links_bar {
  display: inline-block;
  background-color: white;
  height: 0;
}

#links_bar ul {
  background-color:  #097f73;
  width: 45%;
  position: relative;
  z-index: 1;
}

ul.viewable {
  display: none;
}

.page_links {
  font-size: 18px;
  display: block;
  width: 90px;
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 10px;
  float: none;
  margin-top: 0;
}

.page_links a {
  color: white;
}

.page_links:nth-of-type(4) {
  padding-bottom: 20px;
}

}