/* General Page Styling */
body {
    background-color: #90C7E3;
    background: linear-gradient(white, #90C7E3);
    color: #333333;
    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: 3px;
}

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

/* Navigation Bar */
nav {
    background-color: #E3F2FD;
    width: 200px;
    float: left;
    padding: 20px;
    min-height: 600px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    margin-bottom: 10px;
}

nav a {
    text-decoration: none;
    color: #002171;
    font-weight: bold;
    font-size: 16px;
    display: block;
    padding: 5px 10px;
}

nav a:hover {
    background-color: #BBDEFB;
    border-radius: 5px;
}

/* Hero Image */
img {
    max-width: 100%;
    height: auto;
}

/* Heading Styles */
h2 {
    color: #002171;
    font-size: 24px;
    margin-top: 0;
    text-align: center;
}

h3 {
    color: #000033;
    font-size: 18px;
}

/* Main Content */
main {
    margin-left: 250px; /* Adjusting to align content properly */
    padding: 20px;
}

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

/* Section Styling */
.sections-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.section {
    flex: 1;
    padding: 15px;
    background-color: white;

}

.section h3 {
    font-weight: bold;
}

/* Footer Styling */
footer {
    padding: 15px;
    font-size: 14px;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #E3F2FD;
    margin-top: 20px;
}

/* Contact Information */
footer a {
    color: #002171;
    text-decoration: none;
}

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