header{
    text-align: center;
}

#navigationBar{
    background-color: darkgrey;
    text-align: center;
    position: sticky;
    top: 0;
}

#navigationBar a{
    color:antiquewhite;
    text-decoration: none;
    display: inline-block;
    padding: 1vw;
}

.websiteStyle {
    font-family: 'Raleway', sans-serif;
    }

.pageContent {
    font-family: 'Raleway', sans-serif;
    display: flex;
    padding: 2vw 5vw;
    }

.sidebar {
    width: 250px;
    flex-shrink: 0; /* Prevent the sidebar from shrinking */
    padding-right: 30px; /* Add space between sidebar and main content */
}
    
.main {
    font-family: 'Raleway', sans-serif;
    flex-grow: 1;
}

/* General image styling - more conservative default */
img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1025px) {
    #navigationBar {
        position: relative;
    }    

    #AtoZ {
        position: relative;
    }    
}

footer{
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 2rem 5vw;      /* Add some vertical space around the footer */
    font-size: 0.8rem;      /* Make the font smaller than the main body text */
    color: #777;           /* Use a lighter gray so it's less visually demanding */
    line-height: 1.5;       /* Improve readability for the smaller text */
}


#AtoZ{
    background-color: darkgrey;
    text-align: center;
    top: 0;
}

#AtoZ {
    color:antiquewhite;
    text-decoration: none;
}

ul.tabnav-letter-list {
    list-style-type: none;
    display:flex;
    padding: 1vw;
    letter-spacing: 5px;
}

.fact-sheet {
    display: none;
}

/* Home page intro section */
.intro-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.profile-image {
    width: 300px;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.intro-text {
    flex: 1;
}

.schedule-note {
    font-weight: 600;
    color: #2c5aa0;
    font-size: 1.1em;
    margin-bottom: 1rem;
}

/* Button styling */
.button {
    display: inline-block;
    background-color: #2c5aa0;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin: 8px 0;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #1e3d6f;
}

/* Responsive design for mobile */
@media screen and (max-width: 768px) {
    .pageContent {
        flex-direction: column; /* Stack sidebar on top of main content */
    }

    .sidebar {
        width: 100%; /* Allow sidebar to take full width on mobile */
        padding-right: 0; /* Remove side padding */
        margin-bottom: 2rem; /* Add space below the sidebar */
    }

    .intro-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-image {
        width: 250px;
        max-width: 80%;
        margin-bottom: 1rem;
    }
    
    .intro-text {
        text-align: left;
    }
}
