/* Global styles for the document */
body {
    background-color: #90c7e3;
    background: linear-gradient(#ffffff, #90c7e3);
    background-repeat: no-repeat;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
}

/* Styles for the header element */
header {
    background-image: url(sunset.jpg);
    background-position: right;
    background-repeat: no-repeat;
    height: 72px;
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
}

/* Styles for the h1 element */
h1 {
    padding-top: 0.5em;
    text-align: center;  /* centered the text and adding padding */


}

/* Styles for the nav element */
nav {
    font-weight: bold;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-right: 0.5em;
    text-align: center;    
}

nav a { text-decoration: none; } /* Added this to remove the underline from the links in the navigation bar */

/* Styles for the h2 element */
h2 {
    color: #1976D2;
    font-family: Georgia, serif;
}

/* my own added Styles for the h3 element */

h3 { font-family: georgia, serif }

/* MY OWN ADDED Styles for the main element */

main { padding-left: 2em;
       padding-right: 2em;}

/* 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;  /* Added padding to the footer for better spacing */
}

/* Style rule for the wrapper ID */
#wrapper {
    background-color: #ffffff;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 0px 0px 10px rgba(12, 3, 3, 0.5);
    width: 80%; 
    margin-right: auto;
    margin-left: auto;
}

/* Style rule for the home hero image */
#homehero { height: 300px;
            background-image: url('coast.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
             /* Added margin to create space below the hero image */
}

/* Style rule for the yurt hero image */
#yurthero { height: 300px;
            background-image: url('yurt.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
}

/* Style rule for the trail hero image */
#trailhero { height: 300px;
            background-image: url('trail.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
}

