/* Global styles for the document */
body {
    background-color: #90C7E3;
    background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
}

/* Styles for the wrapper id */
#wrapper {
    margin: 0 auto;
    width: 80%;
    background-color: #FFFFFF;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 3px 3px 3px #333333;
}

/* Restoring the sun banner background image in the header element */
header {
    background-color: #002171;
    color: #FFFFFF;
    background-image: url('sunset.jpg'); /* Restored: Background image */
    background-repeat: no-repeat;
    background-position: right;
    height: 60px;
    text-align: center;
    padding-top: 15px;
}

/* Styles for the h1 element */
h1 {
    margin-top: 0;
}

/* Styles for the nav element */
nav {
    background-color: #FFFFFF;
    text-align: center;
    padding: 1em;
}

/* Additional styles for the two-column layout */
#left-column {
    float: left;
    width: 20%; /* Adjust the width as needed */
    background-color: #FFFFFF;
    min-height: 100vh;
    padding: 1em;
}

#right-column {
    float: left;
    width: 80%; /* Adjust the width as needed */
    padding: 1em 2em; /* Adjust the padding as needed */
}

/* Adjust styles to align the navigation links on the left */
nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    margin-bottom: 1em;
}

nav a {
    text-decoration: none;
    color: #000; /* Adjust the color as needed */
    display: block;
}

/* Ensure the right column content doesn't wrap around the navigation */
main {
    overflow: hidden;
}

/* Reset the background image for the header */
header {
    background-image: none;
}

/* Styles for the main element */
main {
    padding: 20px;
    display: block;
}

/* Styles for the h2 element */
h2 {
    text-shadow: 1px 1px #CCCCCC;
}

/* Styles for the footer element */
footer {
    padding: 2em;
}

/* Styles for the hero images */
#homehero,
#yurthero,
#trailhero {
    background-size: cover; /* Use cover to fully cover the container */
}
