/*
Theme Name: K-HOLE
Theme URI: http://khole.net
Author: K-HOLE
Author URI: http://khole.net
Version: 1.0.0
Text Domain: khole
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

K-HOLE is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

@import url(./reset.css);
@import url(./webfonts/bau/stylesheet.css);
@import url(./webfonts/benton/stylesheet.css);
@import url(./webfonts/benton_alt/stylesheet.css);

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

body {
  font-family: 'FFBauWeb';
  font-size: 16px;
  line-height: auto;
  z-index: 99;
  }

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Header + Spinner
--------------------------------------------------------------*/

#site-navigation {
  position: fixed;
  right: 33px; top: 33px;
  text-transform: lowercase;
  z-index: 999;
  border-bottom: 1px #666 dotted;
}

#site-navigation:hover {
  border-bottom: 1px rgba(0,0,0,0) solid;
}
.site-title #logo {
  display: block;
  position: fixed;
  left: 33px; top: 33px;
  width: 110px;
  z-index: 999;
  -webkit-transform: translate3d(0, 0, 0);
}
.site-title #logo {
  -webkit-animation-name: rotateThis;
  -webkit-animation-duration:20s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:linear;
  -moz-animation-name: rotateThis;
  -moz-animation-duration:20s;
  -moz-animation-iteration-count:infinite;
  -moz-animation-timing-function:linear;
}
@-webkit-keyframes rotateThis {
  from {-webkit-transform:rotate(0deg);}
  to {-webkit-transform:rotate(360deg);}
}
@-moz-keyframes rotateThis {
  from {-moz-transform:rotate(0deg);}
  to {-moz-transform:rotate(360deg);}
}

.site-title #logo:hover {

}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

#hero {
  position: relative;
  top: 0;
  z-index: 0;
  display: block;
  height: 640px; width: 100%;
}

#hero-copy {
  font-family: 'BentonGothicCondBlack';
  text-transform: uppercase;
  position: absolute;
  text-align: center;
  top: 50%; left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
}

#hero-copy:hover {
  opacity: 0.8;
}

#hero-copy h1 {
  font-size: 64px; 
}

#hero-copy h2 {
  position: absolute;
  bottom: -75px; left: 50%;
  -webkit-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  transform: translate(-50%,0);
  text-align: center;
  font-size: 32px;
}

/*--------------------------------------------------------------
# Basic
--------------------------------------------------------------*/

#content {
  position: relative;
}

#sub-site-navigation {
  position: relative;
}
  
#sub-site-navigation ul {
  position: relative;
  margin: 60px auto;
  text-align: center;
}

#sub-site-navigation li {
  font-family: BentonGothicCondBlack;
  font-size: 32px;
  list-style-type: none;
  display: inline;
  text-align: center;
  text-transform: uppercase;
  margin: 0 8px;
  color: #ccc;
}

body.post-type-archive-project #sub-site-navigation li.projects,
body.single-project #sub-site-navigation li.projects,
body.post-type-archive-issue #sub-site-navigation li.issues,
body.single-issue #sub-site-navigation li.issues,
body.home #sub-site-navigation li.issues {
  color: #000;
}

body.post-type-archive-project #sub-site-navigation li.issues a:hover,
body.single-project #sub-site-navigation li.issues a:hover,
body.post-type-archive-issue #sub-site-navigation li.projects a:hover,
body.single-issue #sub-site-navigation li.projects a:hover,
body.home #sub-site-navigation li.projects a:hover {
  color: #666;
}

.entry-header {
  font-family: 'BentonGothicCondBlack';
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.entry-content {
  color: #666;
  line-height: 22px;
  text-align: center;
}

.entry-content a {
  border-bottom: 1px #666 dotted;
}

.entry-content a:hover {
  border-bottom: 1px rgba(0,0,0,0) solid;
}

article .links {
  margin-top: 20px;
  text-align: center;
  line-height: 22px;
}

.links .download {
  font-family: 'FFBauWebMedium';
}

/*--------------------------------------------------------------
# Archive
--------------------------------------------------------------*/

#grid {
  max-width: 1482px;
  margin: 0 auto 100px;
  display: block;
  position: relative;
}

@media only screen and (max-width:1600px) { /* This number is 600 + 250 + 35 + 35 + 35*/
  #grid {
    max-width: 986px;
  }
}

@media only screen and (max-width:1106px) { /* This number is 600 + 250 + 35 + 35 + 35*/
  #grid {
    max-width: 490px;
  }
}

#grid article {
  width: 440px;
  display: inline-block;
  vertical-align: top;
  margin: 0 25px 45px;
  text-align: left;
}

.carousel {
  width: 440px; height: 260px;
  margin-bottom: 40px;
  overflow: hidden;
}

.carousel .block {
  display: block; width: 440px; height: 260px; position: relative;
}

.carousel .block img {
  width: auto; max-width: 100%;
  height: auto; max-height: 100%;
  position: absolute;
  top: 50%; left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  }

ul.issuefive {
  overflow: hidden;
  height: 29px;
}

/*--------------------------------------------------------------
# Single
--------------------------------------------------------------*/

body.single article {
  margin: 0 90px 100px;;
}

.post-copy {
  margin: 0 auto;
  width: 440px;
  text-align: left;
}

.bigpic {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 40px;
}

.bigpic img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
  position: fixed;
  bottom: 0; width: 100%; height: 44px;
  font-size: 12px;
  line-height: 44px;
  background: #fff;
  color: #666;
  text-align: right;
  z-index: 99;
}

.site-footer ul {
  margin-right: 33px;
}

.site-footer ul li {
  list-style-type: none;
  display: inline;
}

.site-footer li:before {
  content: '\02014';
  margin: 0 5px; padding: 0;
}

.site-footer li:first-child:before {
  content: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

body.page-id-58 {
  background: #000;
  color: #fff;
}
body.page-id-58 .site-title #logo {
  fill: #fff;
}
body.page-id-58 #sub-site-navigation {
  display: none;
}
body.page-id-58 #colophon {
  display: none;
}
body.page-id-58 #grid {
  margin-top: 250px;
}
body.page-id-58 .entry-header {
  color: #fff; text-align: left;
}
body.page-id-58 .entry-content {
  color: #fff; text-align: left;
}

body.page-id-58 .entry-content p {
  margin-bottom: 22px;
}
.post-58 .entry-content {
/*  font-family: 'FFBauWebMedium';*/
}
/*--------------------------------------------------------------
# Index
--------------------------------------------------------------*/
body.home {

}

.error-404 {
  position: fixed;
  top: 50%; left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  font-family: 'BentonGothicCondBlack';
  text-transform: uppercase;
  font-size: 32px;
}