/* Global */
body {
	background-color: #E95C41;
	border-top: solid 10px #333;
	font-family: Alegreya Sans, Arial, Helvetica, sans-serif;
}

/* Header */
.logo {
	font-family: Cookie;
	font-size: 3em;
	color: #111;
	padding: .5em;
	text-align: center;
}

@media (min-width: 850px){
	.logo{
		text-align:left;
	}
}

/* Navigation */
.primary-nav a {
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.9em;
	padding: 1em 2em;
	background-color: rgba(255, 255, 255, 0.5);
	color: #333;
	margin-bottom: 1px;
}
.primary-nav a:hover {
	background-color: #FFF;
	color: #000;
}
.primary-nav a:active {
	color: #723A17;
}

@media (min-width: 850px){
	.primary-nav{
		position: absolute;
		top: .6em;
		right: 0;
	}
	.primary-nav ul{
		display: flex;
		text-decoration: none;
	}
	.primary-nav a{
		margin-right: 1px;
	}
	.primary-nav li:last-child a{
		margin-right: 0;
	}
}

/* Intro */
.intro {
	padding: 3em 1.5em;
}

@media (min-width: 850px){
	.wrapper{
		background-image: url(../images/washoe.jpg);
		background-repeat: no-repeat;
		background-position: left 2.5em;
		max-width: 60em;
		margin: 0 auto;
	}
	.intro{
		margin-left: 30em;
		min-height: 24em;
	}
}
.intro-headline {
    color: #fff;
    font-size: 3.5em;
    font-weight: bold;
    line-height: 0.9;
    margin-bottom: 0.25em;
}
.intro-headline-highlight {
	font-style: normal;
	color: #90c7f0;
}
.intro-quote {
	font-family: alegreya, serif;
	font-style: italic;
	font-size: 1.5em;
	color: #fff;
	margin-bottom: 1em;
}
.intro-citation {
	font-family: alegreya sans;
	font-size: 0.75em;
	font-weight: bold;
	letter-spacing: 0.5px;
}
.intro-citation:before {
	content: "—";
	margin-left: .5em;
	margin-right: .125em;
}
.mailinglist {
	margin: 1em 0;
}
.mailinglist-button {
	display: inline-block;
	background-color: #4d4d46;
	border-radius: 1em;
	box-shadow: .5em .5em 0 rgba(0, 0, 0, 0.25);
	color: #fff;
	font-family: Cookie;
	font-size: 1.5em;
	letter-spacing: 1.5px;
	padding: .75em 1.5em;
	text-decoration: none;
}

/* Explore */
.explore {
	background-color: white;
	border-top: 10px solid #333;
	padding: 1.75em 1.5em;
	margin-bottom: 1.5em;
}
@media (min-width: 850px){
	.explore-columns{
		display: flex;
	}
}
.explore-headline {
	color: #e95c41;
	font-size: 2em;
	margin-bottom: 0.75em;
}
.explore-item {
	margin-bottom: 3em;
}
.explore-item h3 {
	font-size: 1.1em;
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: .5em;
	color: #333;
}
.explore-item p {
	color: #333;
	font-size: 1em;
	line-height: 140%;
	margin-bottom: 1em;
}
.learn-more {
    background-color: #eee;
    box-shadow: 0.25em 0.25em #aaa;
    color: #999;
    display: inline-block;
    font-size: 0.75em;
    font-weight: bold;
    padding: 0.5em 1.5em;
    text-decoration: none;
    text-transform: uppercase;
}
.explore-item img {
	width: 100%;
	max-width: 20em;
}
@media (min-width: 850px){
	.explore-item{
		width: 33.33%;
		margin-right: 2em;
	}
}
/* Footer*/
.site-footer {
	background-color: #333;
	padding: 2em 1.75em;
}
.site-footer p {
	color: #999;
	margin: 0 auto;
	font-size: .85em;
}