/* Global Styles */

* {
  box-sizing: border-box;
}

body {
  background-color: #EAEAEA;
  color: #666666;
  font-family: Verdana, Arial, sans-serif;
}

/* Media Query for Screens 1024px and Wider */

@media screen and (min-width: 1024px) {

  body {
    background: linear-gradient(to bottom, #FFFFFF 20%, #90C7E3 60%, #FFFFFF 100%);
  }

  nav ul {
    padding-left: 10%;
    padding-right: 10%;
  }

  #wrapper {
    margin: auto;
    width: 80%;
  }

}

/* Header Styles */

header {
  background-color: #002171;
  color: #FFFFFF;
  font-family: Georgia, serif;
  height: 120px;
}

h1 {
  font-size: 3em;
  letter-spacing: 0.25em;
  text-align: center;
  padding-top: 0.5em;
}

/* Navigation Styles */

nav {
  font-weight: bold;
  padding: 0;
  font-size: 1.2em;
  float: left;
  width: 160px;
  background-color: inherit;
  position: fixed;
}

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

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

nav a:visited {
  color: #344873;
  text-decoration: none;
}

nav a:hover {
  color: #A52A2A;
  text-decoration: none;
}

/* Main Content Styles */

main {
  padding: 0;
  margin-left: 170px;
  background-color: #FFFFFF;
  overflow: auto;
}

#homehero,
#yurthero,
#trailhero {
  margin-left: 170px;
  height: 300px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

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

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

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

/* Footer Styles */

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

/* Header Link Styles */

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

header a:hover {
  color: #90C7E3;
  text-decoration: none;
}
