body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: darkslategray;
}
.toolbar {
    background-color: hsl(177, 40%, 41%);;
    text-align: center;
    display: flex;
    justify-content: space-between;
    font-size: 1.5vw;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: fit-content;
    min-height: 70px;
    max-height: fit-content;
    z-index: 1;
    white-space: nowrap;
    border-bottom: 10px solid lightseagreen;
    text-shadow: 1px 1px 1px gray;
    z-index: 100;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.toolbar div {
    flex: 1;
    padding: 10px;
}
.toolbar a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    margin: 0.2vw;
    display: inline-block;
    border-radius: 1vw;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.toolbar a:hover {
    background-color: gray;
}
.toolbar-left {
    float: left;
    display: flex;
}
.toolbar-right {
    width:100%;
    text-align: right;
}
.logo {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    white-space: nowrap;
    font-size: 200%;
    font-weight: bold;
    text-shadow: 1px 1px 1px grey;
}
.content {
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 35vh;
    color: white;
}
.content a {
    color: inherit;
    text-decoration: inherit;
}
.content h1 {
    font-size: 6vh;
}
.content p {
    margin-top: 10vh;
    cursor: pointer;
    background: white;
    display: inline-block;
    border: 2px solid hsl(0, 100%, 20%);
    border-radius: 50px;
    padding: 2vh;
    color: hsl(0, 100%, 20%);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 2vh;
}
.content p:hover {
    background-color: hsl(0, 100%, 20%);
    color: white;
}
.content div {
    margin: 3vh;
    padding: 10px;
    width: 32vh;
    height: 32vh;
    min-width: 200px;
    border-radius: 2vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}
#programming {
    background-image: url('images/about/programming.jpg');
    background-color: hsl(60, 20%, 50%);
}
#staff {
    background-image: url('images/about/staff.jpg');
    background-color: hsl(120, 20%, 50%);
}
#contact {
    background-image: url('images/about/contact.jpg');
    background-color: hsl(240, 20%, 50%);
}

.main-content {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.main-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.main-image.active {
    opacity: 1;
    z-index: 2;
}
.main-image div {
    position: absolute;
    top: 5vh;
    left: 50%;
    transform: translate(-50%, 0);
}
.main-image-foreground img {
    margin: 0 auto;

    min-height: 100vh;
    object-fit: cover;
    overflow: hidden;
    vertical-align: top;
    display: grid;
    place-items: center;
    
}
.main-image-backdrop img {
    filter: blur(20px) brightness(0.5);
    width: 100vw;
    z-index: -1;
    overflow: hidden;
    max-height: 100vh;
    object-fit: cover;
}
.foot {
    color: lightgrey;
}
.short-foot {
    text-align: center;
    margin-top: 10vh;
    margin: 0 40vw;
}
.long-foot {
    text-align: center;
    margin-top: 10vh;
    margin: 0 30vw;
    font-size: 75%;
}


.staff-content {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20vh;
    padding: 0 15vw;
    justify-content: center;
}
.profile {
    width: 300px;
    text-align: center;
    color: white;
}
.profile img {
    object-fit: cover;
    overflow: hidden;
    width: 300px;
    height: 300px;
    border-radius: 1vw;

}
.profile h1 {
    font-size: 2em;
}
.profile p {
    font-size: 1.5em;
}
h2 {
    font-size: 4em;
    text-align: center;
    width: 100%;
    font-weight: bold;
    margin-top: 15vh;
    margin-bottom: 5vh;
    color: white;
}
h3 {
    font-size: 4em;
    text-align: center;
    width: 100%;
    font-weight: bold;
    margin-top: 12vh;
    margin-bottom: 5vh;
    color: white;
}
.contact-content {
    display: flex;
    gap: 10px;
    margin: auto;
    padding: 0 15vw;
    flex-direction: column;
    width: fit-content;
    
}
.contact{
    text-align: left;
    font-size: 2em;
    border-radius: 10%;
    display: inline-block;
    color: lightgrey;
    font-weight: bold;
    text-decoration: none;
    overflow: visible;
    white-space: nowrap;
}
.contact p {
    display: inline-block;
}
.contact img {
    width: 2vw;
    min-width: 50px;
    -webkit-filter: invert(1);
    filter: invert(1);
}
.donate-venmo {
    text-align: center;
}
.donate-venmo img {
    max-height: 60vh;
}
.principles {
    justify-content: space-between;
    padding: 0 40vw;
    margin-bottom: 2vh;
    font-size: 2em;
    color: white;
}
.infoButton {
    
    cursor: pointer;
    background: white;
    display: inline-block;
    border: 2px solid hsl(0, 100%, 20%);
    border-radius: 50px;
    padding: 1vh;
    color: hsl(0, 100%, 20%);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 2vh;
    text-decoration: none;
    margin: auto;
    margin-bottom: 20vh;
    margin-top: 20vh;
    display: flex;
    justify-content: center;
    width: fit-content;
}
.infoButton:hover {
    background-color: hsl(0, 100%, 20%);
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}
.fade-in.show {
    opacity: 1;
}
.donors-list {
    justify-content: space-between;
    padding: 0 40vw;
    margin-bottom: 2vh;
    font-size: 2em;
    color: white;
}

.about-header {
    color: white;
    font-size: 4vh;
    text-align: left;
    font-weight: bold;
    margin-bottom: 2vh;
}

.about-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 20vw;
    margin-bottom: 10vh;
    gap: 2vw;
}
.about-section img {
    max-width: 30vw;
    max-height: 50vh;
    object-fit: cover;
}
.about-text p {
    font-size: clamp(1em, 2vw, 2em);
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    color: lightgrey;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 50vh;
}

/* Hide hamburger on desktop, show toolbar */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 60px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    margin: 15px;
    margin-left: auto;
}
.hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu (hidden by default) */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: hsl(177, 40%, 41%);
    position: fixed;
    top: 70px; /* below toolbar height */
    left: 0;
    right: 0;
    z-index: 150;
    border-top: 5px solid lightseagreen;
}
.mobile-menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu a:hover {
    background-color: gray;
}

/* Responsive breakpoint */
@media (max-width: 768px) {
    .toolbar {
        display: none; /* hide desktop toolbar */
    }
    .hamburger {
        display: flex; /* show hamburger */
    }
}
