/* Set a light blue background color for the entire page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa; /* Light blue */
    color: #000; /* Black text color */
}

header {
    background-color: #0277bd; /* Darker blue for the header */
    color: #000; /* Black text for the header */
    padding: 1em 0;
    text-align: center;
}

.site-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.dropdown-menu {
    position: relative;
    width: 200px;
    font-family: Arial, sans-serif;
}

.menu-toggle {
    background-color: #87CEFA; /* Light blue color */
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    border-radius: 8px; /* Rounds the edges */
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: #5ba4d1; /* Slightly darker blue for hover effect */
}

.menu-items {
    display: none; /* Initially hidden */
    background-color: #f7f7f7;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
}

.menu-items li {
    border-bottom: 1px solid #ddd;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-items a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.menu-items a:hover {
    background-color: #eee;
}

/* Show menu when toggled */
.dropdown-menu.active .menu-items {
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: #fff; /* White text for the navigation links */
    text-decoration: none;
}

main {
    padding: 1em;
}

.under-construction-banner {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin: 50px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.banner-text h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.banner-text p {
    color: #666;
    font-size: 1.2em;
}

/* Light blue for the section backgrounds, black text */
section {
    background-color: #b3e5fc; /* Lighter blue for sections */
    margin: 1em 0;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #000; /* Black text color for sections */
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #0277bd; /* Darker blue for the footer */
    color: #000; /* Black text for the footer */
}

/* Hero section for homepage */
.hero {
    text-align: center;
    background-color: #4fc3f7; /* Medium blue for hero section */
    color: #000; /* Black text in the hero section */
    padding: 5em 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

/* Adding a soft border and shadow to gallery images */
.gallery img {
    flex: 1 1 calc(25% - 1em);
    margin: 0.5em;
    max-width: calc(25% - 1em);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form styling with white background */
form {
    display: grid;
    gap: 0.5em;
    background-color: #fff; /* White background for forms */
    padding: 1em;
    border-radius: 5px;
    color: #000; /* Black text for forms */
}

form label {
    margin-bottom: 0.2em;
}

form input, form textarea, form button {
    padding: 0.5em;
    border: 1px solid #0277bd; /* Border matches the blue theme */
    border-radius: 5px;
    color: #000; /* Black text for form inputs */
}

/* Button styling */
form button {
    background-color: #0277bd; /* Blue button */
    color: #fff; /* White text for the button */
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #01579b; /* Darker blue on hover */
}

/* Success and Error message styles */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px solid #f5c6cb;
}