/*style guides for web-pages*/
/*re-organize as list and webpage order?*/
/*don,t forget to add <link rel="stylesheet" href="Pacific.css"> to head area*/
/*image url goes through files*/

/*header style*/
header {
        background-color: #002171;
        height: 120px;
        color: #FFFFFF;
        font-family: Georgia;
}

header a:link {
    text-decoration: none;
    color: #FFFFFF;
}

header a:visited {
    color: #FFFFFF;
}

header a:hover {
    color: #90C7E3;
}

/*body style*/
body {
    background-color: #EAEAEA;

    color: #666666;
    font-family: Arial;
}

/*heading style*/
h1 {
    text-align: center;
    padding-top: .5em;
    font-size: 3em;
    letter-spacing: 0.25em;
}

h2 {
    color: #1976D2;
    font-family: Georgia;
}

h3 {
    font-family: Georgia;
}

/*navigation style*/
nav {
    font-weight: bold;

    padding-top: .5em;
    padding-right: .5em;
    padding-bottom: .5em;

    float: left;
    width: 160px;
    padding: 0;
    font-size: 1.2em;
    position: fixed;
}

nav a:link {
    color: #5C7FA3;
    text-decoration: none;
}

nav a:visited {
    color: #344873;
}

nav a:hover {
    color: #A52A2A;
}

nav ul {
    padding-left: 1em;
    list-style-type: none
}

/*main style*/
main {
    padding-left: 2em;
    padding-right: 2em;
    display: block;
    background: #FFFFFF;
    margin-left: 170px;
    overflow: auto;
}

/*description list style*/
dt {
    color: #002171;
    font-weight: bold;
}

/*footer style*/
footer {
    font-size: 0.70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: #FFFFFF;
    margin-left: 170px;
}

/*class style*/
/*"." is used to mark class*/
.resort {
    color: #1976D2;
    font-size: 1.2em;
}

/*ID style*/
/*"#" used to mark ID*/
#wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 5px 5px 3px;
    background-image: linear-gradient(#FFFFFF, #90C7E3);
}

#homehero {
    height: 300px;
    background-image: url(pacific_images/coast.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-left: 170px;
}

#yurthero {
    height: 300px;
    background-image: url(pacific_images/yurt.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-left: 170px;
}

#trailhero {
    height: 300px;
    background-image: url(pacific_images/trail.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-left: 170px;
}
/*section format */
section {
    float: left;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;
}
/*box*/
* {
    box-sizing: border-box;
}
