/* Team Page Styles */

.team-member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    height: 100%;
}

.team-image .rounded-circle {
    border: 2px solid var(--gold);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-image .rounded-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image:hover .rounded-circle {
    transform: scale(1.05);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon {
    color: #ffd700;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
}

.expertise-tag {
    background-color: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    font-size: 0.8rem;
    border-radius: 15px;
    padding: 2px 10px;
    margin: 2px;
    display: inline-block;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 2rem;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    position: relative;
    display: inline-block;
}

.value-icon:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.join-team {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/team-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 215, 0, 0.3);
}

.department-section {
    margin-bottom: 4rem;
}

.role-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.team-social-links {
    margin-top: 1rem;
}

.team-social-links a {
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}