/******************************************************************************
* Title: general.css
* Author: Hunter Schoonver ~ Web Designer ~ hunter@skoonie.com
* 
* Purpose:
* 
* This cascading style sheet provides a general look and feel for the entire 
* website, which is why it is in the "sitewide" folder. To provide a consistent
* style across the site, this css file should be included in all pages.
*
* Example usage (using root-relative path):
* 		<link rel="stylesheet" href="/sitewide/general.css">
*
*/

/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */
/* BASIC SECTION -- styling that applies to basic elements that affect all sections */

body, html {
	width: 100%;
	height: 100%;
	color: #fff;
	font-family: "Open Sans", sans-serif; 
	font-size: 0;
	margin: 0;
	padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-attachment: fixed;
    background-color: rgb(246, 246, 246);
	background-image: url('../images/mainCar.jpg');
	background-position: center -400px; 
	background-repeat: no-repeat;    
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* end of BASIC SECTION */
/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */


/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */
/* HEADER SECTION */

#headerSection {
	width: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    border-bottom: 2px #d9d9d9 solid;
    display: inline-block;
    padding: 100px 20px 20px 20px;
}

#mainMenu {
    width: 100%;
    border-top: 1px #8080ff solid;
    color: #8080ff; 
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    text-align: right;
}
#mainMenu:hover {
    border-top: 1px #fff solid;
}


#mainMenu li {
	border-bottom: 0;
	box-sizing: border-box;
	display: inline-block;
	font-family: 'Lato', sans-serif;
	font-size: 25px;
    margin: 0 5px 0 5px;
	text-align: center;
}

#mainMenu li a {
	color: #8080ff;
    display: block;
	padding: 10px;
    text-align: center;
    text-decoration: none;
	transition: background-color, border-color 0.35s ease;
	
}
#mainMenu li a:hover {
	color: #fff;
}

#shawnMontoyaPageTitle {
    width: 100%;
	color: #8080ff;
	float: left;
    font-family: Helvetica, Arial;
    text-shadow: 1px 1px 1px #000;
	font-size: 90px; 
    font-weight: bold; 
}

#shawnMontoyaPageTitle a {
	color: #8080ff;
	text-decoration: none;
}
#shawnMontoyaPageTitle a:hover {
    color: #8080ff;
	text-decoration: none; 
}

/* Styling for when narrower than 610px */
@media (max-width: 610px) {
    
    #shawnMontoyaPageTitle {
        font-size: 45px;
    }
    
}

/* end of HEADER SECTION */
/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */
/* CONTENT SECTION */

#contentSection {
    width: 100%;
    min-height: 100%;
    background-color: rgb(246, 246, 246);
    display: inline-block;
    text-align: center;
}

.searchBar {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border: 1px rgb(85, 85, 85) solid;
    border-radius: 5px;
    color: rgb(85, 85, 85);
    font-size: 25px;
    margin: 0;
    padding: 12px;
    text-align: left;
}

.searchButton {
    width: 100%;
    max-width: 500px;
    display: inline-block;
    margin: 20px 0 0 0;
    text-align: center;
}

.searchButton a {
    border: 2px solid #5656ff;
    color: #5656ff;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    margin: 0;
    padding: 8px 60px;
    text-decoration: none;
    transition: all 250ms linear;
}
.searchButton a:hover {
    background-color: #5656ff;
    color: #fff;
    transition: all 250ms linear;
}

.selectMake {
    width: 100%;
    max-width: 300px;
    /* Remove default appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* end Remove default appearance */
    background-color: #fff;
    background-image: url('images/selectorDownArrow.png');
	background-position: calc(100% - 13px) center; 
	background-repeat: no-repeat;
    border: 1px rgb(85, 85, 85) solid;
    border-radius: 5px;
    color: rgb(85, 85, 85);
    display: inline-block;
    font-size: 25px;
    padding: 12px;
    margin: 0;
    outline: 0;
    position: relative;
    text-align: left;
}

/* Styling for when narrower than 550px */
@media (max-width: 550px) {
    
    .searchBar {
        font-size: 20px;
        padding: 15px;
    }
    
    .selectMake {
        font-size: 20px;
        padding: 15px;
    }
    
}

/* end of CONTENT SECTION */
/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */
/* FOOTER SECTION -- Styling for the footer section */

#footerSection {
	width: 100%;
	height: 40px;
	background-color: #000;
    border-top: 2px #d9d9d9 solid;
	color: rgb(77, 77, 77);
	display: inline-block;
	font-size: 14px;
	margin: 0;
	padding: 10px;
	text-align: center;
}

/* end of FOOTER SECTION */
/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */