body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
}

header {
    position: relative;
}

.banner {
    background-image: url('Images/banner.jpg');
    background-size: cover;
    background-position: top;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-size: 2em;
}

nav {
    background-color: #008CBA;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    display: block;
}

.menu a:hover {
    background-color: #005f73;
}

main {
    padding: 20px;
    text-align: center;
}

footer {
    background: #f0f0f0;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    color: #666;
}

.menu li ul.dropdown li a {
    padding: 5px 10px;
    display: block;
    color: white;
    background-color: #008CBA;
    font-size: 1.3em
}

.menu li ul.dropdown li a:hover {
    background-color: #005f73; /* optional: a nice hover color */
}

.dropdown-description {
    list-style: none; /* <-- removes bullet */
    padding: 8px 10px;
    font-size: 1.5em;
    color: yellow;
    background-color: #0077a2; /* Optional: matches dropdown background */
    font-style: italic;
}

.home-link {
    margin: 15px;
    text-align: left;
}

.home-link a {
    text-decoration: none;
    font-size: 1.2em;
    color: #008CBA;
}

.home-link a:hover {
    color: #005f73;
    text-decoration: underline;
}
/* Responsive calendar container */
.calendar-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 75%; /* Maintains 4:3 aspect ratio */
    height: 0;
    overflow: hidden;
}

.calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Heading style for standalone pages like the calendar */
h1 {
    text-align: center;
    color: #0077b6; /* Adjust as needed */
    margin-top: 30px;
    font-size: 2em;
}
.calendar-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.calendar-sidebar {
    max-width: 200px;
    font-size: 1.1em;
    text-align: left;
}

.calendar-sidebar a {
    color: #0077b6;
    text-decoration: underline;
}

.calendar-sidebar a:hover {
    color: #005f73;
}

@media (max-width: 768px) {
    .calendar-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .calendar-sidebar {
        text-align: center;
        max-width: 100%;
    }
}
.home-link {
    margin: 15px;
    text-align: left;
}

.home-link a {
    text-decoration: none;
    font-size: 1.2em;
    color: #008CBA;
}

.home-link a:hover {
    color: #005f73;
    text-decoration: underline;
}

.calendar-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.calendar-sidebar {
    max-width: 200px;
    font-size: 1.1em;
    text-align: left;
}

.calendar-sidebar a {
    color: #0077b6;
    text-decoration: underline;
}

.calendar-sidebar a:hover {
    color: #005f73;
}

@media (max-width: 768px) {
    .calendar-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .calendar-sidebar {
        text-align: center;
        max-width: 100%;
    }

    .home-link {
        text-align: center;
    }
}

