@import url(http://fonts.googleapis.com/css?family=Droid+Sans);
@import url(http://fonts.googleapis.com/css?family=Droid+Serif);

/*----------------------------------------------------------------
* Filename:			styles.css
* Description:		Global CSS
* Version:			1.0.0.0
* Author:			Jeremy Pratte
* Last Edited by: 	Jeremy Pratte

== STRUCTURE =====================================================

* Page width:		100%
* # of columns:		1 - 2

/* Color Scheme */
/*

	#003359: 	Blue					rgba: 0		51		89
	#592600: 	Brown					rgba: 89	38		0
	#303030: 	Dark Gray/body font		rgba: 48	48		48
	#d1d1d1:	Light Gray/footer bg	rgba: 209	209		209 

*/

body {
	background: #ffffff;
	color: #303030;
	font-size: 0.875rem;
}

/** The A Team **/

a:link {color: #003359; text-decoration: none;}
	a:visited {color: #003359; text-decoration: none;}
	a:active {color: #592600; text-decoration: none;}
	a:hover {color: #592600; text-decoration: underline;}

h1, h2, h3, h4, h5, h6 {
	color: #003359;
	font-family: 'Droid Sans', sans-serif;
	font-weight: normal;
}

h1 {
	border-bottom: 1px solid #303030;
	font-size: 1.8rem !important;
	margin-bottom: 1rem;
	padding-bottom: 15px;
	width: 100%;
}

h2 {
	font-size: 1.6rem !important;
}

img {
	height: auto;
	max-width: 100%;
}

.header-container {
	height: 125px;
	max-width: 100% !important;
	width: 100%;
} 

.socials {
	margin-top: 25px;
}

.main-nav-container {
	border-bottom: 1px solid #592600;
	border-top: 1px solid #592600;
	font-size: 1.125rem;
	max-width: 100% !important;
	padding: 20px 0; 
}

.main-nav-container ul.nav {
	width: auto;
}

.main-nav-container ul.nav li {
	border-right: 1px solid #592600;
	padding: 0 25px;
}

.main-nav-container ul.nav li:last-child {
	border-right: 0px;
}

.hero-container {
	border-bottom: 1px solid #592600;
	padding: 15px 30px;
	text-align: center;
	max-width: 100% !important;
}

section.main {
	padding: 15px 30px;
}

footer {
	background: #d1d1d1;
	border-top: 1px solid #592600;
	font-size: .75rem;
	padding: 30px 15px;
}

footer a:link {
	color: #303030;
	text-decoration: underline;
}

footer a:hover {
	color: #000000;
	text-decoration: none;
}

footer nav {
	margin-bottom: 80px;
}

footer ul.nav li {
	padding: 0 10px;
}

footer ul.nav li {
	border-right: 1px solid #303030;
}

footer ul.nav li:last-child {
	border-right: 0px;
}

.mobile {
	display: none;
}

@media screen and (max-width: 414px) {
	
	.desktop {
		display: none;
	}
	
	.mobile {
		display: block;
	}
	
}
