/*Pacific Trails Resort Stylesheet */

/*Global styles for page */
body{
background: linear-gradient(to bottom, #FFFFFF, #90c7e3); /*gradient from white to light blue*/
background-repeat: no-repeat;
color:#666666;             /*Medium gray text*/
font-family: Verdana, Arial, sans-serif; /*Sans-serif font stack*/
}

/*Wrapper: White centered content with drop area*/
#wrapper{
    background-color: #FFFFFF; /*wrapper background white*/
	min-width: 960px; /*minimum width*/
	max-width: 2048px; /*maximum width*/
    width:80%; /*Centers page with 80%*/
	margin-left:auto; 
	margin-right:auto; 
	box-shadow: 3px 3px 3px #333;
}    

/*Header*/
/* Uses a background image (sunset.jpg)*/
header{
    background-color: #002171; /*dark blue behind image*/
	background-image: url(sunset.jpg);/*header image*/
	background-repeat: no-repeat;
	background-position: right center;
    background-size: 72px;
	height: 72px;
	color: #FFFFFF;
	font-family: Georgia, 'Times New Roman', Times, serif;
}

/*H1 inside header */
h1{
	text-align: center; /*centered title*/
	padding-top: 0.5em;
}

/*Navigation bar*/
nav{
	padding: 0.5em; /*top, right, bottom, left*/
	text-align: center; /*centered text*/
	
}

nav a{
	text-decoration: none;
	color: #002171;
	font-weight: bold;
}

/*Subheadings*/
h2{
	color:#1976D2;
	font-family:Georgia,'Times New Roman', Times, serif;
}

/*Subheadings*/
h3{
	font-family: Georgia, 'Times New Roman', Times, serif;
}

main{
	display: block;
	padding-left: 2em;
	padding-right: 2em;
}

#homehero{
	background-image: url(coast.jpg);
	height: 300px;
	background-size: 100% 100%; /*fills space*/
	background-repeat: no-repeat;
	background-position: center;
}

#yurthero{
	background-image: url(yurt.jpg);
	height: 300px;
	background-size: 100% 100%; /*fills space*/
	background-repeat: no-repeat;
	background-position: center;
}

#trailhero{
	background-image: url(trail.jpg);
	height: 300px;
	background-size: 100% 100%; /*fills space*/
	background-repeat: no-repeat;
	background-position: center;
}
/* FAQ term (for yurts page) */
dt{
	color:#002171; /*Dark Blue*/
	font-weight:bold;
}

/*Custom resort class styling*/
.resort{
	color: #1976d2;
	font-size: 1.2em;
}

/*footer styles*/
footer{
	padding: 1em;
	font-size:0.70em;
	font-style:italic;
	text-align:center;
}
