/* Universal styles */
* {
    box-sizing: border-box;
}

body {
    background-color: #90C7E3; /* Changed background color */
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
    margin: 0;
}

/* Styles for the header element */
header {
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
    padding: 1em;
}

main {
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 0em;
    padding-top: 0em;
}

/* Styles for the h1 element */
h1 {
    text-align: center;
    font-size: 1.5em; /* Added font size */
}

/* 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 {
    text-align: center;
    background-color: white;
}

/* 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 */
}

nav ul {
        flex-direction: column;
        margin: 0;
        padding-left: 0;
        list-style-type: none;
    }

nav li {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-right: 1em;
    padding-left: 1em;
    width: 100%;
    border-bottom: 1px;
}

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 */
}


#homehero {
    background-image: url('coast.jpg');
}

#yurthero {
    background-image: url('yurt.jpg');
}

#trailhero {
    background-image: url('trail.jpg');
}


#homehero,
#yurthero,
#trailhero {
    height: 300px;
    background-size: 200% 100%;
}

#desktop {
display: none;
}

#mobile {
display: inline;
}

section {
    padding-left: .5em; /* Left padding */
    padding-right: .5em; /* Right padding */
}


@media (min-width: 600px) {

    h1 {font-size: 2em;
        letter-spacing: 0.25em;
    }

    nav ul {
        justify-content: space-around;
        padding-right: 2em;
    }

nav li {
    width: 12em;
    border-bottom: none;

}

section{
    padding-left: 2em;
    padding-right: 2em;

}

#flow{
    container-type: row;
}

/* Style rule for the wrapper ID */
#wrapper {
        width: 80%;       /* width of wrapper content */
        margin: 0 auto;   /* centers wrapper */
        background-color: #FFFFFF; /* content background */
    }


/* Styles for the hero image areas */
#homehero,
#yurthero,
#trailhero {
    background-size: 100% 100%;
}

#mobile {
display: none;
}
}

/* Styles for the section element */
section {
    padding-left: .5em; /* Left padding */
    padding-right: .5em; /* Right padding */
}

@media (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%;
}
}
