﻿/*Section Selector*/
section{
    float: left;
    width: 33%;
    padding: 2em;
}

/*Universal Selector*/
*{
    box-sizing: border-box;
}

/*Global styles*/
body
{
    background-color: #EAEAEA; /*White background*/
    background-repeat: no-repeat;
    color: #666666; /*Dark gray text*/
    font-family: Arial, Helvetica, sans-serif; /* Set font to Arial, Helvetica or sans-serif*/
}


/*Wrapper Styles*/
#wrapper{
    margin: 0 auto;
    width: 80%;
    background-color: #90C7E3;
    border: 1px solid #000033;
    background: linear-gradient(#FFFFFF, #90C7E3);
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 3px 3px 3px #333333;
}

/*Header styles*/
header {
    background-color: #002171;
    height: 120px;
    padding-top: 15px;
    padding-left: 3em;
    text-align: center;
}

/*Navigation styles*/
nav{
    padding: 1.5em;
    font-size: 120%;
    float: left;
    width: 160px;
}

nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li{
    margin-bottom: 1em;
}

nav a{
    text-decoration: none;
    color: #002171;
}

nav a:link{
    color: #5C7FA3;
}

nav a:visited{
    color: #344873;
}

nav a:hover{
    color: #A52A2A;
}

header a:link,
header a:visited{
    color: #FFFFFF;
    text-decoration: none;
}

header a:hover{
    color: #90C7E3;
}

/*Main element styles*/
main{
    background-color: #FFFFFF;
    margin-left: 190px;
    padding-left: 30px;
    overflow: auto;
}

main ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/*h2 element styles*/
h2{
    color: #1976D2; /*Medium blue text*/
    font-family: Georgia, Times New Roman, serif;
    text-shadow: 1px 1px #CCCCCC;
}

/* dt element styles (for questions)*/
dt{
    color: #002171; /*Dark blue text*/
}

/* Class for resort name*/
.resort{
    color: #1976D2; /*Medium blue text*/
    font-weight: bold;
}

/*h1 styles*/
h1{
    font-size: 3em;
    letter-spacing: 0.25em;
}

/*h3 styles*/
h3{
    font-family: Georgia, Times New Roman, serif;
    color: #000033;
}

/*ul styles*/
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    list-style-image: url('marker.gif');
}

/*Footer styles*/
footer{
    margin-left: 190px;
    background-color: #FFFFFF;
}

/*Contact ID styles*/
#contact{
    font-size: 90%;
}

/*Hero Sections*/
#homehero{
     height: 300px;
     background-image: url('coast2.jpg');
     background-size: 83% 100%;
     background-position: right;
     background-repeat: no-repeat;
}

#yurthero {
    height: 300px;
    background-image: url('yurt.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: 20px solid #FFFFFF;
    box-sizing: border-box;
    margin-left: 190px;
}

#trailhero {
    height: 300px;
    background-image: url('trail.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: 20px solid #FFFFFF;
    box-sizing: border-box;
    margin-left: 190px;
}