* {
	box-sizing: border-box;
}

body {
	font-family: "Barlow", sans-serif;
	color: var(--global--color);
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	line-height: 1.5;
}

.dark-mode {
	--global--color: #fff;
	--global--link-color: #fff;
	--global--link-hover-color: #def2ff;
	--global--background-shade: rgba(40, 40, 50, 0.65);
}

.light-mode {
	--global--color: #000;
	--global--link-color: #000;
	--global--link-hover-color: #6a6a6a;
	--global--background-shade: rgba(255, 255, 255, 0.75);
}

b, strong {
	font-weight: 600;
}

a {
	color: var(--global--link-color);
}

a:hover {
	color: var(--global--link-hover-color);
}

section a {
	text-decoration: underline 1px transparent;
  text-decoration-color: transparent;
	text-underline-offset: 0.3em;	
}

section a:hover {
  text-decoration-color: var(--global--link-hover-color);
}

p.caption {
	margin-top: 4px;
	font-size: .825em;
	text-align: right;
}

h2, h3 {
	font-weight: 300;
	font-size: 1.75em;
}

h3 {
	font-size: 1.5em;
}

#wrapper {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.home #wrapper {
	background-image: url(../images/home-back.jpg);
	background-position: 70% center;
	background-size: cover;
}

.bio-page #wrapper {
	background-image: linear-gradient(rgba(255, 255, 255, 0.80) 40%, transparent), url(../images/bio-back.jpg);
	background-position: center top, 70% center;
	background-size: 100% 350px, cover;
}

#wrapper > * {
	width: 95%;
	margin: 0 auto;
}

#top {
	padding-top: 20px;
}

.home #top {
	min-height: 100vh;
}

#header-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#header-text h1 {
	font-size: 2.5em;
	font-weight: 100;
	text-align: center;
	letter-spacing: 4px;
	word-spacing: 12px;
	text-transform: uppercase;
}

#header-text h1 span {
	color: #35A0B6;
}

#nav {
	display: flex;
	justify-content: center;
}

#nav a {
	margin: 0 10px;
	text-decoration: none;
	font-size: 1.35em;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#main-content {
	position: relative;
	padding-top: 36px;
	min-height: 100%;
}

.home main {
	min-height: 100%;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: bottom;
}

.home #main-content {
	margin-top: auto;
	margin-bottom: 0;
}

#main-content section {
	max-width: 600px;
	padding: 20px 30px;
	margin: 0 auto 20px auto;
	background: var(--global--background-shade);
}

.posters img {
	display: block;
	width: 240px;
	height: auto;
	margin: 20px auto;
}

.section-box {
	margin-top: 30px;
	padding-bottom: 20px;
}

.section-box ul {
	list-style: none;
	margin-top: 0;
}

.section-box ul li {
	margin: 4px 0;
}

.section-box h3 {
	margin-bottom: 8px;
}

#contact h2 {
	text-align: center;
	margin: 0 0 20px 0;
}

#contact a {
	display: flex;
	justify-content: center;
}

#contact a {
	text-decoration: none;
	font-weight: 400;
}

#contact svg {
	fill: var(--global--link-color);
	margin-right: 6px;
}

#contact .phone svg {	
	width: 23px;
	height: 23px;
}

#contact .imdb svg {	
	width: 30px;
	height: 30px;
}

#contact a:hover * {
	fill: var(--global--link-hover-color);
	color: var(--global--link-hover-color);
}

footer {
	padding: 20px 0;
	text-align: left;
}

footer p {
	color: #fff;
}

@media screen and (min-width: 640px) {
	
	.posters {
		display: flex;
		height: 360px;
		justify-content: space-between;
	}
	
	.posters div {
		height: 100%;
		width: auto;
	}
	
	.posters img {
		height: 100%;
		width: auto;
		margin: 0;
	}
	
}

@media screen and (min-width: 700px) {
	
	.bio-page #wrapper {
		background-position: center top, 55% center;
	}
	
	.home #wrapper {
		background-position: center;
	}
	
}

@media screen and (min-width: 900px) {
	
	#wrapper > * {
		width: 90%;
		max-width: 1280px;
	}
	
	#top #header-inner {
		display: flex;
		justify-content: space-between;
	}
	
	#header {
		display: flex;
		justify-content: justify;
		align-items: center;
	}
	
	#header-text {
		flex-direction: row;
	}

	#header-text h1 {
		text-align: left;
	}
	
	#nav {
		display: flex;
		align-items: center;
	}
	
	#social-links {
		max-width: 450px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
	}
	
	#main-content section {
		margin: 0 0 20px 0;
	}
	
}

@media screen and (min-width: 1200px) {
	
	#header-text h1 {
		font-size: 3em;
	}
	
}	