/* Apply a clean background to the page */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #EAEAEA;
    text-align: center;
    margin: 0;
}

/* Universal Selector */
* {
    box-sizing: border-box;
}

/* Wrapper */
#wrapper {
    width: 80%;
    min-width: 960px;
    max-width: 2048px;
    background-color: #90C7E3;
    box-shadow: 3px 3px 10px #333333;
    margin: 0 auto;
    text-align: left;
    border: 1px solid #000033;
    padding-bottom: 20px;
}

/* Header */
header {
    background-color: #000033;
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 2.2em;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: bold;
}

/* Header hyperlinks */
header a:link, header a:visited {
    text-decoration: none;
    color: #FFFFFF;
}

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

/* Navigation (Left Sidebar) */
nav {
    float: left;
    width: 160px;
    padding: 1.5em;
    font-size: 1.3em;
    text-align: left;
}

/* Style for Navigation Menu List */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-bottom: 15px;
}

/* Style for Unordered Lists in Main Content */
main ul {
    list-style-image: url('marker.gif');
    padding-left: 20px; 
}

main ul li {
    margin-bottom: 5px;
}

/* Navigation Link Styles */
nav a:link {
    color: #5C7FA3;
    text-decoration: none;
    font-weight: bold;
}

nav a:visited {
    color: #344873;
}

nav a:hover {
    color: #A52A2A;
}




/* Hero Image */
#homehero, #yurthero, #trailhero {
    height: 320px;
    width: calc(100% - 190px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    float: right;
}

#homehero {
    background-image: url('coast2.jpg');
}

#yurthero {
    background-image: url('yurt.jpg');
}

#trailhero {
    background-image: url('trail.jpg');
}

/* Main Content */
main {
    background-color: #FFFFFF;
    margin-left: 190px;
    padding-left: 30px;
    overflow: auto;
}


/* Page Title */
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8em;
    color: #003366;
    font-weight: bold;
    text-align: center;
}

/* Three-Column Layout */
section {
    float: left;
    width: 33%;
    padding: 2em 2em;
    text-align: center;
}

/* Activity Headings */
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #000033;
}

/* Activity Descriptions */
p {
    font-size: 1em;
    line-height: 1.5;
    font-family: Georgia, "Times New Roman", serif;
}

/* Footer */
footer {
    background-color: #FFFFFF;
    margin-left: 190px;
    padding: 20px;
    text-align: center;
    font-size: 90%;
    font-style: italic;
    border-top: 1px solid #000033;
    margin-top: 30px;
}

/* Footer Email Link */
footer a {
    color: #0000EE;
    text-decoration: underline;
}
