/* CSS Variables */
:root {
	--primary: #dddddd;
	--dark: #333333;
	--light: #ffffff;
	--red: #ff0000;
	--black: #000000;
	--shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
	--block: 3px 3px 1px rgba(0, 0, 0, 0.5);
	--blocksmall: 3px 3px 1px rgba(0, 0, 0, 0.5);
}

html{
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--dark);
}

body{
	background: #cccccc;
	margin: 30px 50px;
	line-height: 1.4;
}

.btn{
	background: var(--dark);
	color: var(--light);
	padding: 0.6rem 1.3rem;
	text-decoration: none;
	border: 0;
}

img{
	max-width: 100%;
}

.wrapper{
	display: grid;
	grid-gap: 20px;
	max-width: 980px;
	margin: 0px auto 0px auto;
	padding: 0 1rem; 
}

/* Navigation */

.main-nav  ul {
	display: grid;
	grid-gap: 20px;
    padding: 0px;
    list-style: none;
    grid-template-columns: repeat(4, 1fr);
}

.main-nav a {
	background: var(--red);
	display: block;
	text-decoration: none;
	padding: 0.8rem;
	text-align: center;
	color: var(--dark);
	text-transform: uppercase;
	font-size: 1.1rem;
	box-shadow: var(--shadow);
}

.main-nav a:hover {
	background: var(--black);
	color: var(--light);
}

/* Subnavigation */

.sub-nav  ul {
	display: grid;
	grid-gap: 10px;
    padding: 0px;
    list-style: none;
    grid-template-columns: repeat(5, 1fr);
}

.sub-nav a {
	background: var(--dark);
	display: block;
	text-decoration: none;
	padding: 0.5rem;
	text-align: center;
	color: var(--light);
	/*text-transform: uppercase;*/
	font-size: 1rem;
	box-shadow: var(--shadow);
}

.sub-nav a:hover {
	background: var(--black);
	color: var(--light);
}



/* Top Container */
.top-container {
	display: grid;
	grid-gap: 10px;
	grid-template-areas: 
	'showcase showcase';
}

/* Showcase */
.showcase {
	grid-area: showcase;
	/*min-height: 350px;
	background: url(../images/block_small.png) no-repeat center 0px;
	background-size: cover;
	background-position: center;
	padding: 3rem;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*box-shadow: var(--shadow);*/
}

.showcase h1 {
	font-family: 'Bevan', cursive;
	font-size: 3rem;
	margin-bottom: 0;
	color: var(--black);
	text-shadow: var(--block);
}

.showcase h2 {
	font-family: 'Verdana', sans-serif;
	font-size: 3rem;
	margin-top: -1.5rem;
	margin-bottom: 1rem;
	color: var(--black);
	text-shadow: var(--block);
}

.showcase p {
	font-size: 1.3rem;
	margin-top: 0;
	color: var(--light);
}

.showcase p.subhead {
	font-family: 'Anton', sans-serif;
	color: var(--black);
	font-size: 2.5rem;
	letter-spacing: 1px;
	margin-top: -5px;
	/*margin-bottom: 10px;*/
}

.showcase a {
	text-decoration: none;
	color: var(--black);
}

.showcase a:hover {
	text-decoration: underline;
}


/* Archive */
.showcase p.archive {
	font-size: 1.3rem;
	margin-top: 0;
	color: var(--light);
}

.showcase p.archive a {
	color: var(--light);
}

.showcase p.archive a:hover {
	background: var(--light);
	color: var(--dark);
	text-decoration: none;
}

/* Scripts Container */
.scripts-container {
	display: grid;
	grid-gap: 10px;
	grid-template-areas: 
	'scripts scripts';
}

/* Scripts */

.scripts {
	grid-area: scripts;
	/*min-height: 350px;
	background: url(../images/block_small.png) no-repeat center 0px;
	background-size: cover;
	background-position: center;
	padding: 3rem;*/
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: left;
	/*box-shadow: var(--shadow);*/
}
.scripts p {
	font-size: 1.3rem;
	margin-top: 10px;
	color: var(--black);
}

.scripts h1 {
	font-size: 1.2rem;
	margin-bottom: 0;
	color: var(--black);
	text-align: left;
}

.scripts a {
	text-decoration: none;
	color: var(--black);
	background: #ffffff;
	padding: 2px; 
}

.scripts a:hover {
	background: #434343;
}

.scripts ul {
	margin: 0;
}

.scripts  li {
	margin: .5rem 0;
}

/* Top Box */
.top-box {
	background: var(--primary);
	display: grid;
	align-items: center;
	justify-items: center;
	box-shadow: var(--shadow);
	padding: 1rem;
}

.top-box h4 {
	margin-bottom: 0;
}

.top-box .bio {
	font-size: 1.3rem;
	text-align: center; 
}

.top-box-a {
	grid-area: top-box-a;
}

.top-box-a a {
	color: #ffffff;
	text-decoration: none;
}

.top-box-b {
	grid-area: top-box-b;
}

.top-box-b a {
	color: #ffffff;
	text-decoration: none;
}

/* Boxes */
.boxes {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.box {
	background: var(--primary);
	text-align: center;
	padding: 1.5rem 2rem;
	box-shadow: var(--shadow);
}

/* Info */

.info {
	background: var(--primary);
	box-shadow: var(--shadow);
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	justify-items: center;
	padding: 1rem;
}

/* Portfolio */
.portfolio {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.portfolio img {
	width: 100%;
	box-shadow: var(--shadow);
}

/*Production Container*/

.production-container {
	display: grid;
	grid-gap: 10px;
	grid-template-areas: 
	'production production';
}

/* Current Production */

.production {
	grid-template-columns: 1fr;
	grid-area: production;
	/*min-height: 350px;
	background: url(../images/block_small.png) no-repeat center 0px;
	background-size: cover;
	background-position: center;
	padding: 3rem;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
}

.production a {
	color: var(--red);
	text-decoration: none;
}

.production a:hover {
	text-decoration: underline;
}

.production ul {
	margin: 0px;
}

.production ul li {
	font-size: 1.2rem;
}

/* Mailing List */

#mc_embed_signup {
	padding: 1rem;
	box-shadow: var(--shadow);
}

.mc-field-group {
	margin-bottom: 1rem;
}

.indicates-required {
	margin-bottom: 1rem;	
}

/* Footer */

footer {
	margin-top: 2rem;
	/*background: var(--dark);*/
	color: var(--dark);
	padding: .1rem;
	text-align: center;
}

footer a {
	color: var(--dark);
}

footer a:hover {
	text-decoration: none;
}

/* HR */

.hrblack {
	clear:left;
	border-bottom: 1px solid black;
	height: 1px;
	margin: 1em auto;
	width: 80%;
}

hr {
	width: 50%;
}

#25 {
	width: 25%;
}

.hrgrey {
	clear:left;
	border-bottom: 24px solid #C0C0C0;
	height: 6px;
	margin: 1em auto;
	width: 80%;
}

.hrgrey hr {
	display: none;
}

.hrred {
	clear:left;
	border-bottom: 0.5em double red;
	height: 1px;
	margin: 1em auto;
	width: 80%;
}

.hrred hr {
	display: none;
}

.hrblack {
	clear:left;
	border-bottom: 1px solid black;
	height: 1px;
	margin: 1em auto;
	width: 80%;
}

.hrblack hr {
	display: none;
}

/* Styling */
.italic {
	font-style: italic;
}

.bold {
	font-weight: bold;
}

/* Pictures */
div.image-right {
	float: right;
	clear: both;
/*	margin-top: 20px;*/
	margin-left: 30px;
	border: none;
/*	-moz-box-shadow: 0 0 5px 5px #888;
	-webkit-box-shadow: 0 0 5px 5px #888;
	box-shadow: 0 0 5px 5px #888;*/
}

div.image-left {
	float: left;
	clear: both;
/*	margin-top: 20px;*/
	margin-right: 10px;
	border: none;
/*	-moz-box-shadow: 0 0 5px 5px #888;
	-webkit-box-shadow: 0 0 5px 5px #888;
	box-shadow: 0 0 5px 5px #888;*/
}

div.picturecaption100 {
	clear: both;
	width: 80px;
	text-align: center;
	font-size: .8em;
	text-indent: 0;
	padding-right: 10px;
	padding-left: 10px;
}

div.picturecaption200 {
	clear: both;
	width: 180px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: .85em;
}

div.picturecaption200 p {
	text-align: center;
	text-indent: 0;
	line-height: 1em;
}

/* Dropcap */
.dropcapthickest {
	float:left;
	font-family: 'Bevan', cursive;
	width: 1.25em;
	font-size: 5em;
	line-height: 70%;
}
.dropcapthick {
	float:left;
	font-family: 'Bevan', cursive;
	width: .85em;
	font-size: 5em;
	line-height: 70%;
}

.dropcapmid {
	float:left;
	font-family: 'Bevan', cursive;
	width: 0.75em;
	font-size: 5em;
	line-height: 70%;
}

.dropcapthin {
	float:left;
	font-family: 'Bevan', cursive;
	width: 0.5em;
	font-size: 5em;
	line-height: 70%;
}

.dropcapthin2 {
	float:left;
	font-family: 'Bevan', cursive;
	width: 0.6em;
	font-size: 5em;
	line-height: 70%;
}

.dropcapthin3 {
	float:left;
	font-family: 'Bevan', cursive;
	width: 0.7em;
	font-size: 5em;
	line-height: 70%;
}

/* Media Queries */

@media(max-width: 1000px) {
	.info {
		grid-template-columns: 1fr;
	}

	.showcase h1 {
		font-size: 2.5rem;
		text-shadow: none;
		line-height: 2.5rem;
	}

	.showcase h2 {
		font-size: 1.5rem;	
	}

	.showcase p.subhead {
		font-size: 2rem;
		margin-top: 10px;
		/*margin-bottom: 10px;*/
	}

	.sub-nav a {
		font-size: .85rem;
	}
}

@media(max-width: 700px) {
	.top-container {
		grid-template-areas:
		'showcase showcase'
		'top-box-a top-box-b';
	}

	.showcase h1 {
		font-size: 2.5rem;
		text-shadow: none;
		line-height: 2.5rem;
	}

	.showcase h2 {
		font-size: 1.5rem;	
	}

	.showcase p.subhead {
		font-size: 2rem;
		margin-top: 10px;
		/*margin-bottom: 10px;*/
	}

	.showcase p.archive {
		font-size: .9rem;
		margin-bottom: 2rem;
	}

	.main-nav ul {
		grid-template-columns: 1fr;
	}

	.sub-nav ul {
		grid-template-columns: 1fr;
	}

	.sub-nav a {
		font-size: 1rem;
	}

	.info {
		grid-template-columns: 1fr;
	}

	.info .btn {
		display: block;
		text-align: center;
		margin: auto;
	}

	.scripts ul {
		font-size: .9rem;
	}

	.scripts p {
		font-size: 1rem;
	}
}

@media(max-width: 500px) {
	.top-container {
		grid-template-areas:
		'showcase'
		'top-box-a'
		'top-box-b';
	}

	.scripts ul {
		font-size: .9rem;
	}

	.scripts p {
		font-size: 1rem;
	}

	.sub-nav a {
		font-size: 1rem;
	}

}