@charset "utf-8";

/*
@font-face {
    font-family: 'SleekUI';
    src: url('../fonts/weblysleek_ui/weblysleek_ui_normal.eot');
    src: local('weblysleek_ui_normal'),
        url('../fonts/weblysleek_ui/weblysleek_ui_normal.eot?#iefix') format('embedded-opentype'),
        url('../fonts/weblysleek_ui/weblysleek_ui_normal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*/

@font-face {
    font-family: 'SleekUI Semi Light';
    src: url('../fonts/weblysleek_ui/weblysleek_ui_sl.eot');
    src: local('weblysleek_ui_sl'),
        url('../fonts/weblysleek_ui/weblysleek_ui_sl.eot?#iefix') format('embedded-opentype'),
        url('../fonts/weblysleek_ui/weblysleek_ui_sl.woff') format('woff');
}



/** ************************ **
 ** General Layout & Styling **
 ** ************************ **/
html {
    min-width: 768px;
}

body {
	background-color: #fff;
    color: rgba(0, 0, 0, .7);
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 12pt;
    font-family: 'SleekUI Semi Light', sans-serif; /* If using Google fonts: 'Raleway', sans-serif */
}

.container {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.background {
    width: 100%;
    height: auto;
    padding-bottom: 3%;
}

.background:first-of-type {
    box-shadow: 0 1px 2px #999;
    padding-top: 9%;
    padding-bottom: 1%;
}

.background:last-of-type {
    border-bottom: 1px #ccc solid;
}

.content {
	width: 720px;
    height: auto;
	margin: 0 auto;
    margin-bottom: 2%;
    position: relative;
}

div#about {
    padding-top: 5%;
}

h1 {
    color: #ffffff;
    font-size: 6em;
    font-family: 'Source Sans Pro', sans-serif;
    margin-top: 55px;
    margin-bottom: 5px;
}

.content h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 3.33em;
    border-bottom: 1px #ccc solid;
    margin-bottom: 0;
    padding-bottom: 7px;
}

.content h3 {
    font-size: 1.5em;
}

.content h3 a {
    font-size: .66em;
    margin-left: 1%;
}

.content h3 a:first-of-type {
    margin-left: 3%;
}

a, a:visited {
	color: rgba(27, 161, 226, .8);
	text-decoration: none;
}

a:hover {
    color: rgba(27, 161, 226, 1);
}



/** ************ **
 ** Splash/Intro **
 ** ************ **/
.intro {
    width: 768px;
    min-height: 450px;
    position: relative;
    display: block;
}

.intro-left {
    display: block;
    float: left;
    height: 240px;
    width: 240px;
    border: 5px #fff solid;
    margin-top: 25px;
    /*border: 1px #eee solid;*/
    -webkit-border-radius: 125px; /* 125 b/c of border */
    -moz-border-radius: 125px;
    border-radius: 125px;
    background: url(../images/headshot/headshot250x250.jpg) center no-repeat;
}

.intro-right {
    display: block;
    width: 488px; /* 30px gap */
    float: right;
}



/** ********** **
 ** Navigation **
 ** ********** **/
.intro nav {
    font-size: 1em;
}

.intro-links li {
    margin-right: 10px;
}

.intro-links a {
    color: #fff;
    font-size: 1.2em;
}

.intro-links a:hover {
    text-decoration: underline;
}

#footer nav {
	text-align: center;
}

nav ul {
	list-style: none;
	border: 0;
	margin: 0;
	padding: 0;
}

nav ul li {
	display: inline;
	white-space: nowrap;
}

nav a {
	padding: 1% 1.2% 0 1.2%;
    margin-bottom: 1%;
}



/** ********************** **
 ** Image Layout & Styling **
 ** ********************** **/




/** ************ **
 ** Contact Form **
 ** ************ **/
.contact-form {
    background: transparent;
    height: 100%;
    width: 100%;
    margin-top: 20px;
}

.contact-form input, textarea {
    background: white;
    border: 1px solid;
    border-color: rgba(27, 161, 226, 1);
    color: rgba(0, 0, 0, .8);
    font-family: "SleekUI Semi Light", sans-serif;
    height: 40px;
    box-shadow: none;
    margin-bottom: 1.75%;
    padding: 0 1% 1px 1%;
    width: 46.7%; /* Dependent on #name margin (.5x) and form dimensions. */
}

.contact-form textarea {
    height: 190px;
    resize: none;
    width: 97.3%;
}

.contact-form input[type=submit] {
    color: rgba(0, 0, 0, .5);
    width: 49.2%; /* padding does not affect submit button */
    transition: color 0.3s ease-in-out;
}

.contact-form input[type=submit]:hover {
    color: rgba(0, 0, 0, .8);
}

.contact-form input.error {
    border: 1px solid;
    border-color: rgba(229, 20, 0, 1);
}

#name {
    margin-right: 1%;
}

#email {
    display: none;
    visibility: hidden;
}



/** ************* **
 ** Footer Layout **
 ** ************* **/
#footer {
	clear: both;
    color: rgba(0, 0, 0, .8);
    margin-top: 20px;
	text-align: center;
}



/** ******************* **
 ** Large Screen Layout **
 ** ******************* **/
@media (min-width: 1920px) {
    .background:first-of-type {
        padding-top: 10%;
    }
    
    .intro {
        min-height: 600px;
    }
}



/** ******************* **
 ** Small Screen Layout **
 ** ******************* **/
@media (max-width: 480px) {
    html {
        min-width: 480px;
    }
    
    body {
        font-size: 8.5pt;
    }
    
    .background:first-of-type {
        padding-top: 25%;
    }
    
    h1 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .content {
        width: 450px;
    }
    
    .intro {
        width: 480px;
        min-height: 400px;
    }
    
    .intro-left {
        height: 146px;
        width: 146px;
        margin-top: 20px;
        -webkit-border-radius: 73px;
        -moz-border-radius: 73px;
        border-radius: 73px;
        background: url(../images/headshot/headshot150x150.jpg) center no-repeat;
    }
    
    .intro-right {
        width: 320px;
    }
}


/** Background Colors
 *
 *  Credit: http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402557%28v=vs.105%29.aspx
 **/
.crimson {
	background-color: rgba(162, 0, 37, 1);
}

.magenta {
	background-color: rgba(216, 0, 115, 1);
}

.red {
	background-color: rgba(229, 20, 0, 1);
}

.orange {
	background-color: rgba(250, 104, 0, 1);
}

.amber {
	background-color: rgba(240, 163, 10, 1);
}

.yellow {
	background-color: rgba(250, 238, 38, 1);
}

.lime { /* Unused */
	background-color: rgba(164, 196, 0, 1);
}

.green {
	background-color: rgba(96, 169, 23, 1);
}

.emerald {
	background-color: rgba(0, 138, 0, 1);
}

.pine2 { /* Unused */
	background-color: rgba(24, 180, 90, 1);
}

.pine {
	background-color: rgba(0, 133, 69, 1);
}

.cyan {
	background-color: rgba(27, 161, 226, 1);
}

.teal {
	background-color: rgba(0, 171, 169, 1);
}

.blue {
	background-color: rgba(0, 87, 164, 1);
}

.dark-grey {
	background-color: rgba(78, 77, 77, 1);
}
