* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    background-color: transparent;
    color: #333;
}

/* Background image with opacity */
body::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* Fixed Left Navigation */
.nav-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: transparent;
    z-index: 1000;
    padding-top: 12.5vh;
    padding-left: 48px;
}

.nav-title {
    padding: 20px 20px 0 0;
    color: #1F0B79;
    font-size: 24px;
    font-weight: normal;
    text-align: left;
    margin-bottom: 24px;
}

@media (min-width: 769px) {
    .nav-title {
        margin-bottom: 40px;
    }
}

.nav-subtitle {
    color: #1F0B79;
    font-size: 0.9rem;
    margin-left: 0;
    display: block;
    margin-top: 4px;
    font-weight: normal;
}

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

.nav-item {
    
}

.nav-item:last-child {
    
}

.nav-link {
    display: block;
    padding: 20px 20px 20px 0;
    color: #1F0B79;
    text-decoration: none;
    font-size: 18px;
    text-align: left;
}

.nav-link:hover {
    color: #1F0B79;
}

h5 {
    color: #1F0B79;   
    font-size: 1.4rem;
    font-weight: 200;
}

p {
    color: #1F0B79;
    font-size: 1rem;
    font-weight: normal;
}

p2 { 
    color: #6154A1;
    font-size: 1rem;
    font-weight: normal;
}

.nav-link.active {
    background-color: transparent;
    color: #FF003E;
}

/* Increase spacing between events on the Future page */
#future .event,
#future .past-event {
    margin-bottom: 40px;
}

/* Match spacing on the Past page */
#past .event,
#past .past-event {
    margin-bottom: 40px;
}

/* Dim past events */
.past-event {
    opacity: 0.4;
}

/* Main Content Area */
.main-content {
    margin-left: 240px;
    padding: 0 40px 40px 40px;
    padding-top: calc(12.5vh + 20px);
    min-height: 100vh;
}

.content-section {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.content-section.active {
    display: block;
}

/* Removed .section-title styles; titles deleted from markup */

.section-content {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.present-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        width: 100%;
        height: auto;
        position: relative;
        padding-top: 6.25vh;
        padding-right: 48px;
    }

    .nav-menu {
        display: flex;
        flex-wrap: wrap;
    }

    .nav-item {
        flex: 1;
        border-bottom: none;
        border-right: none;
    }

    .nav-item:last-child {
        border-right: none;
    }

    .main-content {
        margin-left: 0;
        padding: 20px 48px 20px 48px;
    }
}
