/* +------------------------------------------------------------------------------------------------------------------------+
   | 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 purple is based on University |
   | of Washington colors or #39275b. |
   | Because this is too dark for my  |
   | implementation, I have used a    |
   | a 40% version derived using the  |
   | color picker available from      |
   | W3Schools.                       |
   |                                  |
   | All other colors are as used in  |
   | previous version of this site.   |
   +----------------------------------+ */

/* ========== BODY STUFF ========== */
body {
	margin: 0 auto;
	padding: 0px;
	background-color: #fcfcfc;
	font-family: 'Roboto', sans-serif;
}

::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #5a3d8f;
}

::selection {
    color: #fff;
    background: #5a3d8f;
}

@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: 'Share Tech', 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;
}

.purple {
	color: #5a3d8f;
}

@media (max-width: 599px) { /* PHONE */
	.jobtitles {
		margin-top: -30px;
		margin-bottom: 30px;
	}
}

@media (min-width: 600px) { /* TABLET */
	.jobtitles {
		margin-top: -30px;
		margin-bottom: -30px;
	}
}

@media (min-width: 1200px) { /* DESKTOP */
	.jobtitles {
		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;
}

.hidden-span {
	display: none;
}

.visible-span {
	display: inline;
}

.magic-link-unclicked {
	border-bottom: 3px solid #5a3d8f;
	cursor: pointer;
}

.magic-link-clicked {
	border: none;
	cursor: arrow;
}

.skills-list {
	list-style-type: square;
	margin-top: -20px;
}

.skills-list li {
	margin: 10px 0px;
}

code { 
	font-size: 16px;
}

.labels {
	padding: 2px 5px;
	margin-top: -10px;
	color: #000000;
	background-color: transparent;
	border: 1px solid #000000;
	font-size: 12px;
}

.purple-button {
	padding: 10px 20px 10px 20px;
	color: #ffffff;
	background-color: #5a3d8f;
	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;
}

.purple-reset-button {
	padding: 5px 10px;
	margin-top: -40px;
	float: right;
	color: #ffffff;
	background-color: #5a3d8f;
	font-family: 'Share Tech', sans-serif;
	font-size: 14px;
	font-weight: bold;
	border-top: none;
	border-right: none;
	border-bottom: 7px solid #39275b;
	border-left: none;
	cursor: pointer;
}

.purple-reset-button:hover {
	background-color: #704db3;
}

/* ========== NAVIGATION STUFF ========== */
.navigation {
	background-color: #5a3d8f;
	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: #000;
	color: #fff;
}

#footerbar {
	width: 100%;
	height: 7px; 
	background-color: #5a3d8f;
}

#footercontent {
	width: 100%;
	height: 50px;
	font-size: 14px;
	text-align: center;
	line-height: 50px;
}