/* General Page Styling */
body {
    background-color: #90C7E3;
    background: linear-gradient(white, #90C7E3);
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Wrapper for the centered content */
#wrapper {
    width: 80%;
    min-width: 960px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 5px #333333;
    padding-bottom: 20px;
}

/* Header Styling */
header {
    background-color: #002171;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 28px;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: bold;
}

/* Navigation Bar */
nav {
    background-color: white;
    text-align: center;
    padding: 10px;
}

nav a {
    text-decoration: none;
    color: #002171;
    font-weight: bold;
    padding: 10px 20px;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Image */
#homehero {
    height: 300px;
    background-image: url('assets/coast.jpg'); /* Ensure image path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Heading Styles */
h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
}

h1 {
    margin-top: 0;
}

h2 {
    color: #1976D2;
    text-shadow: 1px 1px 1px #CCCCCC;
}

h3 {
    color: #000033;
}

/* Main Content */
main {
    padding: 20px;
}

/* List Styling */
ul {
    list-style-image: url('assets/marker.gif');
}

/* Definition List */
dt {
    color: #002171;
}

/* Custom Styling for "Resort" Text */
.resort {
    color: #1976D2;
    font-weight: bold;
}

/* Footer Styling */
footer {
    padding: 10px;
    font-size: 75%;
    font-style: italic;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
}

/* Contact Information */
#contact {
    font-size: 90%;
}
