/* Apply a gradient background to the page */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
    text-align: center;
}

/* Wrapper for centered page layout */
#wrapper {
    width: 80%;
    min-width: 960px;
    max-width: 2048px;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 10px #333333;
    margin: 0 auto; /* Centering */
    text-align: left; /* Reset text alignment */
}

/* Header - background image */
header {
    background-image: url('sunset.jpg');
    background-position: right;
    background-repeat: no-repeat;
    background-color: #002171; /* Fallback color */
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1.8em;
}

/* Navigation bar */
nav {
    background-color: #FFFFFF;
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid #002171; /* Adds definition */
}

/* Navigation links */
nav a {
    color: #002171;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

nav a:hover {
    color: #1976D2;
}

/* Hero Image Sections */
#homehero, #yurthero, #trailhero {
    height: 300px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Individual Hero Image Backgrounds */
#homehero {
    background-image: url('coast.jpg');
}

#yurthero {
    background-image: url('yurt.jpg');
}

#trailhero {
    background-image: url('trail.jpg');
}

/* Main Content */
main {
    padding: 20px;
}

/* Headings */
h1 {
    font-family: Georgia, "Times New Roman", serif;
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #1976D2;
}

h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #000033;
}

/* Description list */
dt {
    color: #002171;
}

/* Unordered List - Custom Bullet Marker */
ul {
    list-style-image: url('marker.gif');
    padding-left: 20px; /* Ensure bullets align properly */
}

/* Footer */
footer {
    text-align: center;
    padding: 2em;
    font-size: 75%;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

/* Bold Text for Resort Name */
.resort {
    font-weight: bold;
}

/* Contact Info - Smaller Font */
#contact {
    font-size: 90%;
}
