html, body {
	height: 100%;	
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: "Montserrat", arial, sans-serif;
}

#site-header {
	position: absolute;
	top: -50px;
	padding-top: 80px;
	width: 100%;
	text-align: center;
	height: 125px;
	background-image: url("images/header_signature.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 350px auto;
	color: #FFF;
	z-index: 50;
}

#site-header.home {
	background-image: url("images/header_signature_white.png");
}

#site-header.bio,
#site-header.contact {
	background-image: url("images/header_signature_white.png");
}

#site-header.writing {
	background-image: url("images/header_signature_black.png");
}

#site-header #logo {
	width: 100%;
	text-transform: uppercase;
	font-size: 2em;
	letter-spacing: 0.3em;
	padding-bottom: 50px;
}

#site-header #logo a {
	color: #FFF;
	text-decoration: none;
}

#site-navigation {
	font-family: "Roboto Condensed";
	text-transform: uppercase;
}

#site-navigation a {
	color: #FFF;
	display: inline-block;
	padding: 0 2em;
	text-decoration: none;
}

#site-navigation a:hover {
	color: #fdc1ad;
}

#site-navigation a.current {
	color: #eefcb1;
}





.mobile-nav-toggle {
    position: relative;
    z-index: 30;
	margin: 0 auto;
    padding: 0;
    line-height: 16px;
    cursor: pointer;
    user-select: none;
    width: 22px;
    height: 22px;
    display: none;
    margin-top: -20px;
}

.mobile-nav-toggle .top-bar, 
.mobile-nav-toggle .middle-bar,
.mobile-nav-toggle .bottom-bar {
    width: 22px;
    height: 2px;
    background-color: #FFF;
    transform-origin: 50% 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
    transition: 0.1s ease-out;
}

.mobile-nav-toggle .middle-bar {
    top: 7px;
}

.mobile-nav-toggle .bottom-bar {
    top: 14px;
}

.mobile-nav-toggle.toggled-on .top-bar {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.mobile-nav-toggle.toggled-on .middle-bar {
	opacity: 0;
}
.mobile-nav-toggle.toggled-on .bottom-bar {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 7px;
}



























img {
	max-width: 100%;
	height: auto;
}



.social {
	font-size: 1.5em;
	padding-right: 0.3em;
}

#hero {
	padding-top: 150px;
	background-size: auto 130%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


#hero.writing {
	background-image: url("images/writing_bg.jpg");
	background-size: cover;
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 5%;
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: space-between;
}


#hero.writing img  {
	max-width: 20%;
	height: 20%;
	margin-right: 5%;
	margin-top: 50px;
	border: 2px solid #000;
}


@media only screen and (max-width: 680px) {

	#hero.writing {
		flex-wrap: wrap;
	}
	
	#hero.writing img  {
		max-width: 40%;
		height: 40%;
		margin-top: 25px;
	}

}



#hero.podcast {
	background-image: url("images/timeline_bg.jpg");
	background-size: cover;
	position: relative;
}



/*//////////////  TIMELINE  //////*/

#timeline_container {
	position: relative;
	height: calc(75vh - 150px);
}

#timeline {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}


.timeline_item {
	display: block;
	position: absolute;
	height: 40%;
	width: auto;
	transition: 0.3s ease-out;
	z-index: 15;
}

.timeline_item.above {
	bottom: 100vh;
	opacity: 0;
}

.timeline_item.below {
	top: 100vh;
	opacity: 0;
}


.timeline_item.above.placed {
	bottom: 51%;
	opacity: 1;
}

.timeline_item.below.placed {
	top: 49%;
	opacity: 1;
}

.timeline_item img {
	max-height: 100%;
	width: auto;
}

.item_one {
	left: 5%;
}

.item_two {
	left: 12%;
}

.item_three {
	left: 20%;
}

.item_four {
	left: 30%;
}

.item_five {
	left: 40%;
}

.item_six {
	left: 50%;
}

.item_seven {
	left: 60%;
}

.item_eight {
	left: 68%;
}

.item_nine {
	left: 75%;
}

.item_ten {
	left: 85%;
}





/*//////////////  END TIMELINE //////*/





#hero.contact {
	background-image: url("images/bio_hero.jpg");
}

#hero.bio {
	background-image: url("images/bio_hero.jpg");
}



#hero.home {
	background-image: url("images/home_hero.jpg");
	background-size: cover;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 680px) {
	#hero.home {
		min-height: 100vh;
	}
}

.hero_slide {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	transition: 0.3s ease-out;
	width: 100%;
	position: absolute;
}

.hero_slide.next {
	transform: translateX(100%);
}


.hero_slide.prev {
	transform: translateX(-100%);
}

#next_button {
	position: absolute;
	right: 5%;
	height: 100%;
	display: block;
	font-size: 3em;
	opacity: 0.5;
	z-index: 20;
}

#prev_button {
	position: absolute;
	left: 5%;
	height: 100%;
	display: block;
	font-size: 3em;
	opacity: 0.5;
	z-index: 21;
}

.publication {
	max-width: 40%;
	margin-left: 15%;
}

.quotation {
	color: #FFF;
	max-width: 30%;
	margin-right: 15%;
	position: relative;
}

.quotation p {
	padding: 0 0 0 5em;
	margin: 0;
}

.quotation::before {
	content: "\201C";
	font-family: "Lily Script One";
	font-size: 10em;
	position: absolute;
	top: -0.2em;
	left 0;
}






#the_ep {
	position: relative;
	background-image: url("images/timeline_bg.jpg");
	background-size: cover;
	text-align: center;
	padding-top: 50px;
}



#bio {
	min-height: 600px;
	background-image: url("images/suzanne-clores.jpg");
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right top;
	background-color: #4f504b;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#bio .body_copy {
	max-width: 400px;
	margin-left: 10%;
	color: #FFF;
}

#bio .read_more {
	display: block;
	text-align: right;
	text-transform: uppercase;
	font-size: 0.8em;
	margin-top: 10px;
	font-weight: bold;
}

.hero_copy {
	width: 600px;
	color: #FFF;
	margin: 0 auto;
	max-width: 90%;
	padding: 5%;
	line-height: 1.5em;
}

form div {
	margin-bottom: 1em;
}

form {
	width: 800px;
	max-width: 100%;
}

form input {
	padding: 1.5em 5%;
	width: 90%;
	color: #666;
	border-radius: 15px;
	border: none;
}

form textarea {
	padding: 1.5em 5%;
	width: 90%;
	color: #666;
	height: 5em;
	border-radius: 10px;
	border: none;
}

form input[type="submit"] {
	text-transform: uppercase;
	color: #000;
	font-weight: bold;
	border-radius: 5px;
	transition: 0.3s;
	padding: 1em;
	width: 100%;
	border: none;
}

form input[type="submit"]:hover {
	background-color: #fdc1ad;
	border-radius: 0;
}


.body_copy {
	color: #ccc;
	padding-bottom: 100px;
	line-height: 1.4em;
}

.skinny {
	width: 850px;
	margin: 0 auto;
	max-width: 90%;
	padding: 0 5%;
}



/*//////////////  PODCAST PAGE //////*/

.podcast_thumbnail {
    float: left;
    width: 200px;
    height: auto;
    margin-right: 15px;
}

.podcast_date {
	color: #666;
	font-style: italic;
	margin-bottom: 10px;
}

.podcast_container {
	clear: both;
	margin-top: 30px;
	border-top: 1px solid #333;
	padding-top: 30px;
}

.podcast_container audio {
	width: 100%;
	margin-top: 20px;
}

.podcast_season_divider {
	height: 100px;
}


.expandMe {
	height: 1px;
	overflow: hidden;
	opacity: 0;
	transform: 0.3s;
}

.expandMe.expanded {
	height: auto;
	opacity: 1;
}

/*//////////////  END PODCAST PAGE //////*/



/*//////////////  WRITING PAGE //////*/


.featured_writing {
	margin-top: 50px;
	margin-bottom: 100px;
}

.award_logo {
	max-width: 200px; 
	margin-left: 20px;
	float: right;
	text-align: right;
}

.award_logo img {
	max-width: 200px; 
	height: auto;
}

@media only screen and (max-width: 600px) {

	.award_logo {
		margin-right: 0;
		max-width: 100%;
		text-align: center;
		height: auto; 
		float: none;
		clear: both;
	}

}

/*//////////////  END WRITING PAGE //////*/


h1 {
	color: #FFF;
	margin-top: 30px;
	line-height: 1.3em;
}

h2 {
	line-height: 1.5em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

strong {
	font-weight: 600;
	color: #FFF;
}

a {
	color: #fdc1ad;
	text-decoration: none;
}

a:hover, a:active {
	color: #FFF;
}




















@media only screen and (max-width: 1000px) {
	h1 {
	  font-size: 2.5em;
  	}

	.story {
		padding: 30px 0;
	}
	
	iframe {
		width: 100%;
	}
	
	.hero_slide {
		display: block;
		max-width: 90%;
		padding: 0 5%;
	}
	
	.publication {
		max-width:  80%;
		margin: 0 auto;
		position: relative;
	}

	.quotation {
		max-width: 80%;
		margin: 0 auto;
		position: relative;
	}

	#bio.home {
		min-height: auto;
		background-image: none;
		display: block;
		max-width: 90%;
		padding: 5%;
	}

	#site-navigation a {
		display: block;
		padding: 0.5em;
	}
	
	#site-navigation {
		display: none;
		background-color: #000;
	}

	#site-navigation.show-mobile-nav {
		display: block;
	}
	
 	.mobile-nav-toggle {
	    display: block;
	}
	
	.no_mobile {
		display: none;
	}
 	
 	#timeline_container {
		height: 300px;
	}

}
