* {
	box-sizing: border-box;
}

:root {
	--text-color-primary: #3b4242;
	--text-color-secondary: #697777;
	--text-color-secondary-large: #889696;
	--text-color-accent: #a06603;
	--text-color-accent-large: #ce8e03;
	--text-color-dark: #000;
	--text-color-pale: #d5e1df;
}

body {
	font-family: "Roboto Condensed", sans-serif;
	color: var(--text-color-secondary);
	font-size: 16px;
	font-weight: 300;
	margin: 0;
	line-height: 1.5;
}

b {
	font-weight: 700;
}

a {
	color: var(--text-color-accent);
}

a:hover {
	color: var(--text-color-dark);
}

p, li {
	color: var(--text-color-primary);
}

p.caption {
	margin-top: 4px;
	font-size: .825em;
	text-align: right;
}

p.contact-button a {
	position: relative;
	width: 200px;
	height: 50px;
	padding: 0 10px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-size: 1.5em;
	border: 1px solid var(--text-color-accent);
	border-radius: 10px;
}

#contact p.contact-button svg {
	margin-right: 0;
}


h2, h3 {
	color: var(--text-color-secondary-large);
	font-weight: 400;
	font-size: 2em;
}

h3 {
	font-size: 1.5em;
}

.center {
	text-align: center;
}

#wrapper {
	width: 95%;
	margin: 0 auto;
}

#top {
	padding-top: 20px;
}

#header-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#header-text #logo {
	width: 80px;
	height: 80px;
	margin-right: 10px;
	background: url(../images/logo-orig.png);
	background-size: 100%;
}

#header-text h1 {
	color: var(--text-color-dark);
	font-size: 2em;
	font-weight: 700;
	text-align: center;
	line-height: 1;
}

#header-text h1 span {
	color: var(--text-color-accent-large);
}

#nav {
	display: flex;
	justify-content: center;
}

#nav a {
	margin: 0 10px;
	text-decoration: none;
}

.intro, #featured-quote p, #featured-quote h3 {
	display: block;
	font-size: 1.25em;
	color: var(--text-color-secondary-large);
	font-weight: 400;
	margin-bottom: .5em;
	text-align: center;
	max-width: 460px;
	margin: 1em auto;
}

#featured-quote p, #featured-quote h3 {
	max-width: 500px;
	color: var(--text-color-accent-large);
}

#banner {
	width: 100%;
	margin-top: 40px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--text-color-pale);
}

#banner img {
	width: 100%;
	height: auto;
}

#main-content {
	padding-top: 36px;
}

#main-content section {
	padding-bottom: 40px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--text-color-pale);
}

#contact p:not(.contact-button), #contact p:not(.contact-button) a {
	display: flex;
	align-items: center;
}

#contact a {
	text-decoration: none;
	font-weight: 400;
}

#contact svg {
	fill: var(--text-color-accent);
	margin-right: 20px;
}

#contact .phone svg {	
	width: 23px;
	height: 23px;
}

#contact .imdb svg {	
	width: 30px;
	height: 30px;
}

#contact a:hover * {
	fill: var(--text-color-dark);
	color: var(--text-color-dark);
}

#icon-links {
	display: flex;
	margin-top: 30px;
}

footer {
	padding: 30px 0 60px 0;
}

@media screen and (min-width: 600px) {

	#featured-quote p, #featured-quote h3 {
		font-size: 1.75em;
	}

}

@media screen and (min-width: 900px) {
	
	#wrapper {
		width: 90%;
		max-width: 1800px;
	}
	
	#top {
		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;
	}
	
	.intro, #featured-quote p, #featured-quote h3 {
		font-size: 1.5em;
		width: 640px;
		max-width: 100%;
		text-align: left;
		margin: 1em 0 .75em 0;
	}
	
	#featured-quote p, #featured-quote h3 {
		text-align: center;
		max-width: 600px;
		margin: 1em auto;
		font-size: 2em;
	}
	
	#banner {
		margin-top: 60px;
	}
	
	#main-content section {
		display: flex;
		justify-content: space-between;
	}
	
	.content-right {
		width: calc(100% - 300px);
		max-width: 1000px;
		padding-top: 24px;
	}
	
}

@media screen and (min-width: 1200px) {
	
	#header-text h1 {
		font-size: 3em;
	}
	
	#header-text #logo {
		width: 90px;
		height: 90px;
	}

	#featured-quote p, #featured-quote h3 {
		max-width: 700px;
		font-size: 2.25em;
	}
	
}	