
#about-us {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
    font-family: 'Fredoka';
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 36px;
    color: rgb(247, 161, 175);
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.about-content div {
    width: 45%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h3 {
    font-size: 28px;
    color: rgb(115, 228, 115); /* Use a child-friendly, warm color */
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
    color: #444;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #333;
}



#our-staff {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
    font-family: 'Fredoka';
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 36px;
    color: rgb(247, 161, 175);
    margin-bottom: 40px;
}

.staff-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.staff-member {
    background-color: white;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-10px);
}

.staff-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
}

.staff-member h3 {
    font-size: 24px;
    color: rgb(115, 228, 115); /* Friendly and vibrant color */
    margin-top: 15px;
}

.staff-member p {
    font-size: 16px;
    color: #777;
    margin-top: 5px;
}

/* ==========================
   STAFF POPUP
=========================== */

#staff-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;        /* JS will change this to flex */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.staff-popup-card {
    background: white;
    width: 90%;
    max-width: 380px;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    animation: popupIn 0.25s ease;
}

.staff-popup-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* #staff-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
} */

@keyframes popupIn {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Close Button */
#staff-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 30px;
    cursor: pointer;
}

/* Popup Image */
#popup-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .staff-grid {
        flex-direction: column;
        align-items: center;
    }

    .staff-member {
        width: 80%;
    }
}


/* Add a style for the optional info icon */
.staff-info-icon {
    margin-top: 10px;
    color: rgb(247, 161, 175); /* Match your header pink */
    font-size: 1.5em;
}

/* Add some padding/style for the bio text in the modal */
.staff-bio {
    margin-top: 10px;
    font-size: 15px;
    color: #444;
}