/* FONTS */

/*font-family: 'Oswald', sans-serif;
font-family: 'Lato', sans-serif;*/

/* COLORS */
/*
black: #303030
burnt orange: #be5f27
brown: #8e5942
golden: #d49b30
light tan: e0d7c5
light brown: c3bbac
off-white: f2f2f2
*/

body {
	padding: 0;
	background: #f2f2f2;
	margin: 0;
	
}

.container {
	max-width: 1260px;
	margin: 0 auto;
}
.navigation {
	max-width: 1260px;
}

/* FONTS */
h1,
h2,
h2 a, 
h2 a:hover, 
footer p {
	font-family: 'Oswald', sans-serif;
}
h3,
h4,
p,
p a,
p a:hover,
nav p {
	font-family: 'Lato', sans-serif;
}
h1 {
	font-size: 2.1em;
	color: #303030;
}
h2 {
	font-size: 1.56em;
	color: #f2f2f2;
}
h2 a {
	font-size: 1.56em;
	color: #f2f2f2;
	font-style: italic;
	text-decoration: underline;
}
h2 a:hover {
	font-size: 1.56em;
	color: #d49b30;
	font-style: italic;
	text-decoration: underline;
}
h3 {
	font-weight: 900;
	font-size: 1.125em;
	color: #8e5942;
	text-transform: uppercase;
}
h4 {
	font-weight: 300;
	font-weight: 1.125em;
	color: #8e5942;
	text-transform: uppercase;
}
p {
	font-weight: 400;
	font-size: 1em;
	color: #303030;
	line-height: 1.6em;
}
p a {
	font-weight: 700;
	font-size: 1em;
	font-style: italic;
	color: #be5f27;
}
p a:hover {
	font-weight: 700;
	font-size: 1em;
	font-style: italic;
	color: #d49b3c;
	text-decoration: underline;
}
nav p a {
	font-weight: 400;
	font-size: 1.06em;
	color: #303030;
}
footer p {
	font-size: 0.9em;
	color: #f2f2f2;
}

/* NAVIGATION */
.navActive {
	font-weight: 700;
	font-size: 1.06em;
	font-style: italic;
	color: #d49b3c;
	text-decoration: underline;
}


/* HEADER */
.logo {
	max-width: 70px;
	transition: max-width 0.5s ease-out;
}

a {
	text-decoration: none;
}
/* HEADER */
.hero {
	height: 35vh;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
	background-position: 50% 0;
}
header a {
	font-weight: 400;
	font-size: 1em;
}

.navigation {
	background: #f2f2f2;
	opacity: 0.9;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 100px;
	padding: 2% 1.5%;
	text-transform: uppercase;
	position: fixed;
	z-index: 100;
	width: 100%;
	transition: height 0.5s ease-out;
}

/* HEADER ON SCROLL */
.scrollUp .navigation{
	height: 60px;
	transition: 0.5s ease-in;
}
.scrollUp .logo{
	max-width: 45px;
	transition: 0.5s ease-in;
}
.scrollUp nav p a {
	font-size: 0.9em;
}


/* MAIN SECTION */
.main-section {
	display: flex;
}
h1 {
	background: #d49b30;
	color: #f2f2f2;
	display: inline-block;
	padding: 1%;
	margin: 0;
	text-align: center;
}

/* INTERESTED IN CUSTOM ORDERS */
.interested {
	font-size: 1.5em;
	background: #8e5942;
	padding: 3% 2%;
	text-align: center;
}
.interested p {
	color: #f2f2f2;
	font-weight: 300;
}
.interested .bold {
	font-weight: 900;
}
.interested .custom {
	font-style: italic;
	text-decoration: underline;
	color: #f2f2f2;
	font-weight: 300;
}
.interested .custom a{
	color: #f2f2f2;
}

/* FOOTER */
footer {
	background: #be5f27;
	text-align: center;
}
.contact p:first-of-type {
	text-transform: uppercase;
	padding-top: 2%;
	margin-top: 0;
}

.social ul {
	display: flex;
	justify-content: space-around;
	list-style: none;
	-webkit-padding-start: 0;
}

.social li {
	height: 38px;
}

.social p {
	margin-bottom: 0;
	padding-bottom: 2%;
}

.desktop-only {
	display: none;
}



/* ############# */
/* MEDIA QUERIES */
/* ############# */

@media screen and (min-width: 0px) and (max-width: 350px) {
	
	/* HEADER */
	.logo {
		max-width: 50px;
	}

	nav p a {
		font-size: .90em;
	}

	.navigation {
		max-height: 150px;
		padding: 0;
	}
	
}

@media screen and (min-width: 480px) {
	/* HEADER */
	.logo {
		max-width: 140px;
	}

	.navigation {
		height: 150px;
		padding: 0;
	}

	/* MAIN SECTION HEADER */

	/* FOOTER */
	.desktop-only {
		display: inline-block;
	}
	footer {
		text-align: initial;
		display: flex;
		justify-content: space-around;
		align-items: center;
		padding: 2.5% .5%;
		vertical-align: bottom;
	}
	footer .logo {
		max-width: 100px;
	}
	footer li {
		padding: 0 5%;
	}
	.social p {
		text-align: center;
	}

}



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

	/* MAIN SECTION */
	h1 {
		max-width: 200px; 
		position: absolute;
		left: 0;
		right: 0;
		margin-left: auto; 
  		margin-right: auto;
	}

	/* INTERESTED IN CUSTOM ORDERS */
	.interested {
		font-size: 2em;
	}
}

@media screen and (min-width: 650px) {

	/* MAIN SECTION */
	h1 {
		flex-grow: initial;
	}
}

@media screen and (min-width: 700px) {	

	/* INTERESTED IN CUSTOM ORDERS */
	.interested {
		font-size: 1.5em;
	}

}