/* pacific.css */

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

/* Global styles */
body {
  background-color: #EAEAEA;
  color: #666666;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Wrapper id Selector */
#wrapper {
  background-image: linear-gradient(to bottom, #FFFFFF, #90C7E3);
  border: 1px solid #000033;
  margin: 0 auto;
  width: 80%;
  min-width: 960px;
  max-width: 2048px;
  background-color: #90C7E3;
  box-shadow: 3px 3px 3px #333333;
}

/* Header styles */
header {
  background-color: #002171;
  color: #FFFFFF;
  margin-bottom: 0;
  height: 120px;
  padding-top: 30px;
  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;
  font-size: 1.2em;
  font-weight: bold;
}

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

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

nav a:hover {
  color: #A52A2A;
}

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

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

/* Heading styles */
h1 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3em;
  letter-spacing: 0.25em;
}

h2 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #1976D2;
  text-shadow: 1px 1px #CCCCCC;
}

h3 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #000033;
}

dt {
  color: #002171;
}

/* Footer styles */
footer {
  margin-left: 190px;
  background-color: #FFFFFF;
  padding: 2em;
  font-size: 75%;
  font-style: italic;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
}

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

/* Configure the unordered list in the main content area */
main ul {
  list-style-type: none;
  padding-left: 30px;
  list-style-image: url('marker.gif');
}

/* Hero image styles */
#homehero {
  width: calc(100% - 190px);
  height: 300px;
  background-image: url('coast2.jpg');
  background-size: cover;
  margin-left: 190px;
  margin-right: auto;
}

#yurthero {
  width: calc(100% - 190px);
  height: 300px;
  background-image: url('yurt.jpg');
  background-size: cover;
  margin-left: 190px;
  margin-right: auto;
}

#trailhero {
  width: calc(100% - 190px);
  height: 300px;
  background-image: url('trail.jpg');
  background-size: cover;
  margin-left: 190px;
  margin-right: auto;
}

/* Resort class styles */
.resort {
  font-weight: bold;
  color: #1976D2;
}

/* Contact id styles */
#contact {
  font-size: 90%;
}

/* Section styles */
section {
  float: left;
  width: 33%;
  padding-left: 2em;
  padding-right: 2em;
}
