/* Encapsulation using specific prefixes */
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@300;900&display=swap");

body {
    font-family: 'Dosis', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-y: auto;
}

a {
    -moz-transition: border-color 0.2s ease-in-out;
    -webkit-transition: border-color 0.2s ease-in-out;
    -ms-transition: border-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out;
    border-bottom: dotted 1px;
    color: inherit;
    outline: 0;
    text-decoration: none;
}

    a:hover {
        border-color: transparent;
    }

.calendar-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
}

.event:last-child {
    border-bottom: none;
}

.event-time {
    font-size: 1.25rem;
    font-weight: 900;
    color: #555;
}

.event-desc {
    font-size: 1.25rem;
    flex-grow: 1;
    margin-left: 1rem;
    font-weight: 300;
}

.event-day {
    font-size: 1.25rem;
    color: #333;
    font-weight: 900;
}

.upcoming-events-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem; /* Space between upcoming events and calendar */
}

.upcoming-events-header {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
}

.upcoming-events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upcoming-event {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
}

.upcoming-event:last-child {
    border-bottom: none;
}

.upcoming-event-time {
    font-size: 1.25rem;
    font-weight: 900;
    color: #555;
}

.upcoming-event-desc {
    font-size: 1.25rem;
    flex-grow: 1;
    margin-left: 1rem;
    font-weight: 300;
}

.map-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-header {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: #555;
}

.map-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    padding: 10px;
    border-top: 1px solid #ddd;
}
