
#info-page {
    background-color: white;
    overflow: auto;
}

#info-page .header {
    position: sticky;
    margin-top: 20px;
}

/* Default state when the menu is closed (black for info page) */
#info-page .header h1, 
#info-page .header h2 {
    color: black;
    transition: color 0.5s ease; /* Smooth transition */
}

#info-page .plus-icon::before,
#info-page .plus-icon::after {
    background: black; /* Icon starts as black */
    transition: background 0.5s ease; /* Smooth transition */
}

/* When the menu is open, make the plus icon and header white */
#info-page.menu-open .header h1, 
#info-page.menu-open .header h2 {
    color: white; /* Header text turns white when menu is open */
}

#info-page.menu-open .plus-icon::before,
#info-page.menu-open .plus-icon::after {
    background: white; /* Plus icon turns white when menu is open */
}

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

/*
.bio-section {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 60px;
    margin-left: 100px;
    margin-right: 150px;
    margin-top: 50px;
}

.bio-content {
    width: 50%;
}*/

/* Container for the bio section and gallery */
.bio-section {
    display: flex;
    justify-content: space-between; /* Aligns bio-content and gallery side by side */
    position: relative;
    align-items: stretch;
    margin-left: 100px;
    margin-right: 150px;
    margin-top: 50px;
    margin-bottom: 60px;
    gap: 60px;
}


/* Bio content on the left */
.bio-content {
    flex: 1; 
    z-index: 2; /* Ensures the bio content stays above the gallery */
    position: relative;
    padding: 20px;
}

/* Gallery container on the right side */
.gallery-container {
    flex: 1;
    position: relative;
    z-index: 1; /* Ensures it's behind the bio content */
    overflow: hidden; /* Ensure no overflow is shown */
    background-color: black;
    display: flex;
}

/* Slide container */
.gallery-slide {
    display: flex;
    flex: 1;
}

/* Each image in the gallery */
.gallery-slide img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Ensure images cover the area while maintaining aspect ratio */
}

/* Keyframes to slide the images */
@keyframes slide {
    0% { transform: translateY(0); }
    33% { transform: translateY(-100%); }
    66% { transform: translateY(-200%); }
    100% { transform: translateY(0); }
}

.bio-section p {
    font-family: "greycliff-cf", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    font-size: 0.9em;
    font-weight: 300;
    color: black;
    text-align: left;
    text-indent: 20px;
}

.contact-section {
    width: 84%;
    margin: auto;
    text-align: left;
}

.contact-header {
    padding-top: 0px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: black; /* This creates the border above the text */
    margin-bottom: 10px; /* Adds spacing between the line and the text */
}

.contact-header h2 {
    font-family: "spectral", sans-serif;
    font-weight: 400;
    font-style: italic;
    text-transform: lowercase;
   
    /*font-family: "greycliff-cf", sans-serif;
    font-weight: 1000;
    font-style: normal;
    text-transform: uppercase;*/
    font-size: 1em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-left: 500px;
    margin-top: -45px;
    margin-bottom: 40px;
}

.contact-item p {
    font-family: "greycliff-cf", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    font-size: 1em;
    font-weight: 300;
    color: black;
}

.contact-item a {
    color: black;
    text-decoration: none;
    font-family: "greycliff-cf", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    font-size: 1em;
    font-weight: 300;
    color: black;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-grid .contact-item:nth-child(1) {
    margin-top: 65px;
}

#department {
    font-weight: 1000;
}

.empty-item {
    background-color: transparent;
    height: 100px;
    width: 100%;
}

#gersh-logo {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 2.5em;
    color: black;
}
