/* team.css */
.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-banner {
    height: 100px;
    background: linear-gradient(45deg, #0984e3, #00cec9);
}

.card-body {
    padding: 20px;
    position: relative;
    text-align: center;
}

.avatar-wrap {
    margin-top: -50px;
    margin-bottom: 15px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.role-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(9, 132, 227, 0.1);
    color: #0984e3;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.member-bio {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-details {
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #636e72;
    font-size: 0.9rem;
}

.detail-item i {
    color: #0984e3;
}

.contact-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #0984e3;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #0873c5;
    color: #fff;
    transform: translateY(-2px);
}

.contact-btn i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .team-title {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .member-name {
        font-size: 1.25rem;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.team-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-banner {
    height: 80px;
    background: linear-gradient(45deg, #00b0ff, #00e5ff);
}

.card-body {
    padding: 20px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.avatar-wrap {
    margin-top: -60px;
    margin-bottom: 10px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    object-fit: cover;
}

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,176,255,0.1);
    color: #00b0ff;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 10px;
}

.member-bio {
    color: #636e72;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
    min-height: 60px; /* Minimum height to maintain alignment */
}

.member-details {
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    margin-top: auto; /* Push to bottom of flex container */
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #636e72;
    font-size: 0.875rem;
}

.contact-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #00b0ff;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 15px;
}

.contact-btn:hover {
    background: #0091ea;
    color: #fff;
}

@media (max-width: 768px) {
    .team-title {
        font-size: 1.75rem;
        text-align: center;
    }
}
