/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --accent-color: #e84545; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.team-container {
    background-color: #fefbf6;
}

.member {
    text-align: center;
    margin-bottom: 20px;
}
.member-img {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}
.member-img .social a {
    color: var(--contrast-color);
    margin: 0 5px;
    transition: 0.3s;
}
.member-img .social a:hover {
    color: #f4b351;
}
.member:hover .social {
    visibility: visible;
    opacity: 1;
}
.member-info {
    padding-top: 15px;
}
.member-info h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}
.member-info span {
    font-style: italic;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: block;
}