/* +------------------------------------------------------------------------------------------------------------------------+
   | This file houses ALL styles for ALL screen sizes. It is the preferred stylesheet for scottmutter.us and alias domains. |
   |                                                                                                                        |
   | The contents of this file are provided with a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International  |
   | License. This means that you are free to use anything contained within as long as you attribute me and share it in a   |
   | similar fashion. Thank you!                                                                                            |
   +------------------------------------------------------------------------------------------------------------------------+ */
   
/* +----------------------------------+
   |           COLOR THEORY           |
   +----------------------------------+
   | My color choices are based on my |
   | fursona. The darker blue is my   |
   | fur color, the lighter blue is   |
   | the belly fur color, and the     |
   | purple is the nose, pawpads and  |
   | more.                            |
   +----------------------------------+ */

/* ========== BODY STUFF ========== */
body {
	margin: 0 auto;
	padding: 0px;
	background-color: #a3d3ff;
	font-family: 'Roboto', sans-serif;
}

::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #54a2f7;
}

::selection {
    color: #fff;
    background: #54a2f7;
}

@media (max-width: 599px) { /* PHONE */
	#main {
		margin-top: 70px;
	}

	#maincontent {
		width: 90%;
		height: auto;
		margin: 0px auto;
		padding: 0px;
	}
	
	.section-left {
		margin: 70px 0px 0px 0px;
	}
}

@media (min-width: 600px) { /* TABLET */
	#main {
		margin-top: 70px;
	}

	#maincontent {
		width: 85%;
		height: auto;
		margin: 0px auto;
		padding: 0px;
	}
	
	.section-left {
		width: 25%;
		padding-right: 10px;
		margin: 70px 0px 0px 0px;
		text-align: right;
		float: left;
	}
	
	.section-right {
		width: 65%;
		padding-left: 10px;
		margin: 70px 0px 0px 0px;
		float: left;
	}
}

@media (min-width: 1200px) { /* DESKTOP */
	#main {
		margin-top: 70px;
	}

	#maincontent {
		width: 1000px;
		height: auto;
		margin: 0px auto;
		padding: 0px;
	}
	
	.section-left {
		width: 120px;
		padding-right: 10px;
		margin: 70px 0px 0px 139px;
		text-align: right;
		float: left;
	}
	
	.section-right {
		width: 600px;
		padding-left: 10px;
		margin: 70px 139px 0px px;
		float: left;
	}
}

.clearfix {
	clear: both;
	margin-bottom: -30px;
}

.clearfix-last {
	clear: both;
	margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Jolly Lodger', sans-serif;
}

h1 {
	font-size: 2.75em;
}

h2 {
	font-size: 2.3em;
}

h3 {
	font-size: 1.8em;
}

h4 {
	font-size: 1.6em;
}

h5 {
	font-size: 1.4em;
}

h6 {
	font-size: 1em;
}

.dark-blue {
	color: #2f5784;
}

.regular-blue {
	color: #54a2f7;
}

.light-blue {
	color: #a3d3ff; 
}

.purple {
	color: #574283;
}

@media (max-width: 599px) { /* PHONE */
	.subtitles {
		margin-top: -30px;
		margin-bottom: 30px;
	}
}

@media (min-width: 600px) { /* TABLET */
	.subtitles {
		margin-top: -30px;
		margin-bottom: -30px;
	}
}

@media (min-width: 1200px) { /* DESKTOP */
	.subtitles {
		margin-top: -30px;
		margin-bottom: -30px;
	}
}

.section-title {
	margin: 0px;
}

.subsection-title {
	margin: 0px;
	line-height: 49px;
}

.subsection-text {
	margin: 0px 0px 22px 0px;
	line-height: 20px;
}

.purple-button {
	padding: 10px 20px 10px 20px;
	color: #ffffff;
	background-color: #574283;
	font-family: 'Share Tech', sans-serif;
	font-size: 20px;
	font-weight: bold;
	border-top: none;
	border-right: none;
	border-bottom: 7px solid #39275b;
	border-left: none;
	cursor: pointer;
}

.purple-button:hover {
	background-color: #704db3;
}

/* ========== NAVIGATION STUFF ========== */
.navigation {
	background-color: #2f5784;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
}

.navigation a {
	padding: 16px 16px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
	display: block;
}

.navigation a:hover, .navigation a:active {
	background-color: #555;
	color: #fff;
}

.navigation .icon {
	display: none;
}

@media (max-width: 599px) {
	.navigation a:not(:first-child) {
		display: none;
	}
	.navigation a.icon {
    	float: right;
    	display: block;
	}
}

@media (max-width: 599px) {
	.navigation.responsive {
		position: relative;
	}
	.navigation.responsive a.icon {
		position: absolute;
	    right: 0;
    	top: 0;
    }
	.navigation.responsive a {
    	text-align: left;
    	float: none;
    	display: block;
	}
}

/* ========== FOOTER STUFF ========== */
#footer {
	width: 100%;
	background-color: #2f5784;
	color: #fff;
}

#footerbar {
	width: 100%;
	height: 7px; 
	background-color: #54a2f7;
}

#footercontent {
	width: 100%;
	height: 50px;
	font-size: 14px;
	text-align: center;
	line-height: 50px;
}