/* =============================================================
   teams.css — styles for our_team.php and prince_peal_halder.php
   ============================================================= */

/* ── Section label ── */
.oz-team-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ── CEO card ── */
.oz-ceo-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background: #110d1e;
    border: 1.5px solid #7c3aed;
    border-radius: 20px;
    padding: 40px 44px;
}
@media (max-width: 575px) {
    .oz-ceo-card { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
    .oz-ceo-meta { justify-content: center; }
    .oz-ceo-offices { justify-content: center; }
}

.oz-ceo-avatar {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(124,58,237,0.18);
    border: 2px solid rgba(124,58,237,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #a78bfa;
    letter-spacing: 1px;
}

.oz-ceo-avatar--photo {
    padding: 0;
    overflow: hidden;
    background: rgba(124,58,237,0.18);
}
.oz-ceo-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}

.oz-ceo-body { flex: 1; }

.oz-ceo-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.oz-ceo-name {
    font-size: 24px;
    font-weight: 700;
    color: #f0eaff;
}

.oz-role-badge {
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 20px;
    padding: 5px 16px;
}

.oz-role-badge--dev {
    color: #34d399;
    background: rgba(16,185,129,0.12);
    border-color: rgba(16,185,129,0.3);
}

.oz-role-badge--devops {
    color: #22d3ee;
    background: rgba(6,182,212,0.12);
    border-color: rgba(6,182,212,0.3);
}

/* ── Skill tags ── */
.oz-ceo-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.oz-skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 4px 10px;
}

.oz-skill-tag svg { flex-shrink: 0; color: #6b7280; }

.oz-ceo-desc {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 18px;
}

.oz-ceo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.oz-ceo-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: #9ca3af;
}

.oz-ceo-meta-item svg { flex-shrink: 0; width: 16px; height: 16px; }

.oz-ceo-meta-link {
    text-decoration: none;
    transition: color 0.2s;
}
.oz-ceo-meta-link:hover { color: #a78bfa; }

/* ── Office addresses (CEO card) ── */
.oz-ceo-offices {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 48px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.oz-ceo-office { min-width: 220px; }

.oz-office-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 8px;
}

.oz-office-addr {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0 0 6px;
}

.oz-office-phone {
    font-size: 15px;
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.oz-office-phone:hover { color: #c4b5fd; }

/* ── View full profile button (our_team page) ── */
.oz-ceo-profile-link-row {
    margin-top: 20px;
}
.oz-view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
    text-decoration: none;
    border: 1px solid rgba(124,58,237,0.35);
    border-radius: 8px;
    padding: 9px 18px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.oz-view-profile-btn:hover {
    background: rgba(124,58,237,0.14);
    color: #c4b5fd;
    border-color: rgba(124,58,237,0.6);
}

/* ── Back to team button (prince_peal_halder page) ── */
.oz-back-team-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 8px;
    padding: 10px 20px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.oz-back-team-link:hover {
    background: rgba(124,58,237,0.12);
    color: #a78bfa;
    border-color: rgba(124,58,237,0.5);
}

/* ── Member cards ── */
.oz-member-card {
    background: #110d1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
}
.oz-member-card:hover {
    border-color: rgba(124,58,237,0.4);
    transform: translateY(-4px);
}

.oz-member-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    letter-spacing: 1px;
}

.oz-avatar--teal   { background: rgba(16,185,129,0.18);  color: #34d399; border: 2px solid rgba(16,185,129,0.3); }
.oz-avatar--purple { background: rgba(124,58,237,0.18);  color: #a78bfa; border: 2px solid rgba(124,58,237,0.3); }
.oz-avatar--cyan   { background: rgba(6,182,212,0.18);   color: #22d3ee; border: 2px solid rgba(6,182,212,0.3); }
.oz-avatar--amber  { background: rgba(245,158,11,0.18);  color: #fbbf24; border: 2px solid rgba(245,158,11,0.3); }

.oz-member-name {
    font-size: 20px;
    font-weight: 700;
    color: #f0eaff;
    margin-bottom: 6px;
}

.oz-member-role {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
}

.oz-member-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.oz-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.oz-social-icon:hover {
    background: rgba(124,58,237,0.25);
    color: #a78bfa;
}
