/* -- EXTERNAL SOURCES -- */
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900|Droid+Serif:400,400italic);
/* ^^ EXTERNAL SOURCES ^^ */


*{
  box-sizing:border-box;
}
*:focus{
  outline:none;
}
html,body{
  height:100%;
}
html,body,div{
  padding:0;
  margin:0;
}
a{
  color:inherit;
  text-decoration:none;
}
/* ^^ CSS RESETS ^^ */


/* -- GLOBAL ATTRIBUTES -- */
body{
  font-family: 'Source Sans Pro', sans-serif;
  color:#333333;
}
/* ^^ GLOBAL ATTRIBUTES ^^ */


/* [Page] */
.page{
  /*width:calc(80%);
  min-width:600px;
  margin:0px auto;*/
  padding:30px 0px;
}


/* [Header] */
.head{

}
.head .logo{
  /*
  Logo as image
  width:100%;
  padding:40px 60px;
  */
}
.head .logo .subtitle{
  color:#333333;
  text-transform:uppercase;
  font-weight:bold;
  letter-spacing:1.5px;
  text-align:center;
  margin-bottom:-4px;
}
.head .logo .title{
  color:#f96541;
  font-weight:bolder;
  text-transform:uppercase;
  font-size:3em;
  /*text-shadow:0px 0px 4px #f0a800;*/
  text-align:center;
}
.nav{
  margin:30px 0px;
  display:block;
  text-align:center;
}
.nav a{
  display:inline-block;
  font-size:1.25em;
  position:relative;
  font-weight:bold;
  margin:20px;
  text-transform:uppercase;
}
.nav a:first-child{
  margin-left:0px;
}
.nav a:last-child{
  margin-right:0px;
}
.nav a::before,.nav a::after{
  content:"";
  position:absolute;
  left:0px;
  width:100%;
  height:2px;
  background:#f96541;
  opacity:0;
  border-radius:1px;
  transition:opacity 0.2s,transform 0.2s;
}
.nav a::before{
  top:0px;
  transform:translateY(-10px);
}
.nav a::after{
  bottom:0px;
  transform:translateY(10px);
}
.nav a:hover:before, .nav a:hover:after{
  opacity:1;
}
.nav a:hover:before{
  transform:translateY(-5px);
}
.nav a:hover:after{
  transform:translateY(5px);
}
.pic-grid{
  width:100%;
  font-size:0px;
}
.pic-grid .grid-item{
  width:calc(100% / 3);
  height:100px;
  padding:0px;
  z-index:5;
  display:inline-block;
}
.pic-grid .grid-item .pic{
  width:100%;
  height:100%;
  background-position:center center;
  background-size:cover;
  box-shadow:0px 0px 60px -1px rgba(0,0,0,0.5) inset;
  transition:transform 0.2s,box-shadow 0.2s;
}
.pic-grid .grid-item:hover .pic{
  transform:scale(1.05);
  z-index:6;
  box-shadow:0px 0px 30px -1px rgba(0,0,0,0.9);
}


/* [Imgur Album] */
.imgur-album,.imgur-embed-pub,.imgur-embed-iframe-pub,#imgur-embed-iframe-pub-a-2E32Y{
  display:block;
  width:calc(100%);
  max-width:600px;
  margin:60px auto !important;
}


/* [Overview] */
.overview{
  width:calc(80%);
  max-width:750px;
  margin:60px auto;
  line-height:1.75em;
  font-family:'Droid Serif',serif;
}
.overview p{
  margin-top:10px;
  text-align:justify;
}
.overview p:not([data-noindent]):before{
  content:"";
  margin-left:30px;
}

/* [Head Text] */
h3{
  margin-top:60px;
}
h3:first-child{
  margin-top:0px;
}
h3.question::before{
  display:inline-block;
  content:"Q:";
  background:#f96541;
  color:#ffffff;
  margin-right:8px;
  border-radius:2px;
  padding:0px 3px;
}


/* [Submit photo] */
.contact-email{
  text-align:center;
}
.contact-email .button{
  display:inline-block;
  font-size:1.0em;
  background:rgba(0,0,0,0.05);
  border:1px solid rgba(0,0,0,0.05);
  padding:30px;
  border-radius:4px;
}
.contact-email .button a{
  color:#f96541;
  margin-top:5px;
  text-decoration:underline;
}
