<!--pacific.css-->


body {
	margin: 0;
	background-color: #90C7E3;
	color: #666666;
	font-family: Verdana, Arial, sans-serif;
	}

header {
	padding: 1em;
	background-color: #002171;
	color: #FFFFFF;
	font-family: Georgia, sans-serif;
	}

h1 {
	text-align: center;
    font-size: 2em;
	letter-spacing: .2em;
	}

nav {
    text-align: center;
    background: #FFFFFF;
	}

nav a:link {
        color: #5C7FA2;
}
nav a:visited {
        color: #A52A2A;
}
nav a:hover {
        color: #A52A2A;
}

nav ul {
        flex-direction: column;
		margin: 0;
        padding-left: 0em;
}

nav li {
        padding-top: 0.5em;
		padding-bottom: 1em;
		width: 100%;
		border-bottom: solid 1px;
		flex-direction: column;
		margin: 0;
        padding-left: 0em;
}
h2 {
	color: #1976D2;
	font-family: Georgia, serif;
	}

h3 {
	font-family: Georgia, serif;
	}

dt {
	color: #002171;
	font-weight: bold;
	}

.resort {
	color: #1976D2;
	font-size: 1.2em;
	}

footer {
    color: #FFFFFF;
	margin-left: 170px;
    font-size: small;
	font-style: italic;
	text-align: center;
	padding: 1em;
	}

main {
	padding: 0 1em 1em 0;
	}

#wrapper {    
}

#homehero {
	height: 300px;
	background-image: url('coast.jpg');
	background-size: 200% 100%;
	background-repeat: no-repeat;
	}

#yurthero {
 	height: 300px;
	background-image: url('yurt.jpg');
	background-size: 200% 100%;
	background-repeat: no-repeat;
	}
	
#trailhero {
	height: 300px;
	background-image: url('trail.jpg');
	background-size: 200% 100%;
	background-repeat: no-repeat;
	}

section {
    padding-left: .5em;
    padding-right: .5em;
}

header a:link, header a:visited {
    text-decoration: none;
    color: #FFFFFF;
}
header a:hover {
        color: #90C7E3;
}

#mobile{
	display: inline;
}

#desktop{
	display: none;
}

table {
	border-collapse: collapse;
	border: 1px solid #3399CC;
}

.table-container {
        display: flex;
        justify-content: center;
		width: 100%;
		max-width: 100%;
		}

thead{
		color: #df0f0f;
		font-weight: bold;
	}

td, th {
	border: 1px solid #3399CC;
	padding: 5px;
}

td {
	text-align: center;
}

.text {
	text-align: left;
}

tr:nth-child(even) {
	background-color: #DFEDF8;
}

@media screen and (min-width:600px) {
	h1 {
		font-size: 2em;
		letter-spacing: .25em;
	}
	nav ul {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
	}
	nav li {
		width: 12em;
		border-bottom: none;
	}
	section {
		padding-left: 2em;
		padding-right: 2em;
	}
	#flow{
		display: flex;
		flex-direction: row;
	}
	#mobile {
		display: none;
	}
	#desktop {
		display: inline;
	}
	#homehero{
		background-size: 100% 100%;
	}
	#yurthero{
		background-size: 100% 100%;
	}
	#trailhero{
		background-size: 100% 100%;
	}
}


@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%;
	}
}