body {
    font-family: Roboto, sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8ECEF 100%); /* Changed to start with VCU Health White */
    color: #000000; /* Matches VCU Health Black, suitable for typography */
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    box-sizing: border-box;
}
header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%); /* Kept VCU Health Gold, #FFA000 is close enough to maintain gradient intent */
    color: #000000; /* Matches VCU Health Black, suitable for typography */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #FFB300; /* Changed to VCU Health Gold for consistency */
}

h1 {
    margin: 0;
    font-size: 2.8em; 
    font-family: Arial, sans-serif;
    font-weight: 700; 
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); 
    letter-spacing: 0.02em; 
}

.profile-instruction {
    font-size: 1.3em; /* Slightly larger for visibility */
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin: 1em 0;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); 
}

.team {
    max-width: 800px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.team section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.group-divider {
    width: 100%;
    height: 30px; 
    padding: 20px;
    background: linear-gradient(90deg, #FFB300 0%, #FFA000 100%); 
    color: #000000;
    font-size: 1.6em; 
    font-weight: 700;
    font-family: Arial, sans-serif; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    border-radius: 5px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); 
}


.member {
    background: linear-gradient(180deg, #FAFAFA 0%, #F0F0F0 100%); 
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-in-out, box-shadow 0.3s ease;
}

.member:hover {
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.5);
}

.member.visible {
    opacity: 1;
}

.member h2 {
    color: #000000;
    font-size: 2em; 
    font-family: Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.01em; 
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); 
    transition: color 0.3s ease; 
}

.member h2:hover {
    color: #333333; /* Slight darken on hover */
}

.member h3 {
    color: #FFB300;
    font-size: 1.4em; 
    font-family: Arial, sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.member p {
    display: none;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
    margin: 10px 0 20px 0;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.member.show-bio p {
    display: block;
    max-height: 500px;
}

.photo {
    width: 200px;
    height: 200px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px !important;
    display: block;
    border: 3px solid #FFB300;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.photo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.7);
}

.photo-bm, .photo-li, .photo-aa, .photo-jw, .photo-kk, .photo-cm, .photo-so, .photo-kh, .photo-da, .photo-nc, .photo-rc, .photo-sm, .photo-ab, .photo-en {
    margin-top: 0;
}

.photo-bm {
    object-position: 50% 20%;
}

.photo-so {
    object-position: 50% 80%;
}

.photo-kh {
    object-position: 50% 10%;
}

.photo-da {
    object-position: 50% 30%;
}

.photo-ab {
  	object-position: 50% 100%;
}

.photo-en {
  object-position: 100% 0%;
}














