/* Universal styles */
* {
    box-sizing: border-box;
}

/* Global styles for the document */
body {
    background-color: ##90C7E3; /* Changed background color */
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
    margin: 0em;
}

/* Styles for the header element */
header {
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
    padding: 1em;
}

/* Styles for the h1 element */
h1 {
    text-align: center;
    font-size: 1.5em; /* Added font size */
    color: #FFFFFF; /* Set H1 text color to white */
}

/* Remove underline from header link */
header a {
    text-decoration: none; /* Remove underline */
    color: #FFFFFF; /* Ensure link color is white */
}

/* Styles for the nav element */
nav {
    font-weight: bold;
    background-color: inherit; /* Inherit background from wrapper */
}

/* Remove underline from hyperlinks in nav */
nav a {
    text-decoration: none;
}

/* Styles for nav link states */
nav a:link {
    color: #5C7FA3; /* Unvisited hyperlinks */
}

nav a:visited {
    color: #344873; /* Visited hyperlinks */
}

nav a:hover {
    color: #A52A2A; /* Hover state */
}

/* Styles for the unordered lists in nav */
nav ul {
    flex-direction: column;
    list-style-type: none; /* No list markers */
    padding-left: 0em; /* Set left padding */
    margin: 0em;
}

nav li {
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    border-bottom: 1px solid;
}

/* Styles for the h2 element */
h2 {
    color: #1976D2;
    font-family: Georgia, serif;
}

/* Styles for the h3 element */
h3 {
    font-family: Georgia, serif;
}

/* Styles for the dt element */
dt {
    color: #002171;
    font-weight: bold;
}

/* Styles for a class named resort */
.resort {
    color: #1976D2;
    font-size: 1.2em;
}

/* Styles for the footer element */
footer {
    font-size: 0.70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: #FFFFFF; /* Added background color 
}

/* Style rule for the wrapper ID */
#wrapper {
    background-color: #FFFFFF; /* Changed background color */
    background: linear-gradient(#FFFFFF, #90C7E3); /* Added gradient background */
}

/* Styles for the main element */
main {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 1em;
    padding-right: 1em;
    display: block; /* For IE compatibility */
}

form { display: flex;
flex-direction: column;
padding-left: 1em; width: 80%;
width: 60%;}

.form-grid {
display: grid;
grid-template-columns: 1fr;
grid-gap: 1em;
width: 10em;
}


label {
font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}

.submit-button {
cursor: pointer;
width: 9em;
margin-top: 10px;
}

/* Styles for the hero image areas */
#homehero,
#yurthero,
#trailhero
#reshero {
    height: 300px;
    background-size: 200% 100%;
    background-repeat: no-repeat;
}

#homehero {
    background-image: url('coast.jpg');
}

#yurthero {
    background-image: url('yurt.jpg');
}

#trailhero {
    background-image: url('trail.jpg');
}

#reshero {
	background-image: url('ocean.jpg');
	background-size: 100% 100%;
}

/* Styles for the section element */
section {
    padding-left: 0.5em; /* Left padding */
    padding-right: 0.5em; /* Right padding */
}

#mobile {display: inline;    
}
    
#desktop {display: none;    
}