/* ATP Team Page Styles - Executive Theme */

:root {
    --exec-navy: #0B1D33;
    --exec-navy-dark: #060f1c;
    --exec-gold: #C9A24B;
    --exec-gold-light: #E5C878;
    --exec-teal: #1ABC9C;
}

.team-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--exec-navy) 0%, var(--exec-navy-dark) 100%);
    padding: 40px 20px;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Section */
.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--exec-gold), var(--exec-gold-light));
    color: #1a1405;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-badge .badge-icon {
    width: 20px;
    height: 20px;
    fill: #1a1405;
}

.team-header h1 {
    color: #ffffff;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.team-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Card */
.team-card {
    background: linear-gradient(145deg, var(--exec-navy), var(--exec-navy-dark));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 162, 75, 0.25);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--exec-gold), var(--exec-gold-light), var(--exec-teal));
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-member {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 75, 0.2);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-member-info {
    flex: 1;
    min-width: 0;
}

@media (max-width: 700px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.team-member:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 75, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.team-photo-frame {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--exec-gold), var(--exec-gold-light));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    background: var(--exec-navy-dark);
    border: 3px solid var(--exec-navy);
}

.team-name {
    color: #ffffff;
    font-size: 1.35em;
    font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
}

.team-title {
    color: var(--exec-gold-light);
    font-size: 0.95em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

@media (max-width: 700px) {
    .team-name,
    .team-title,
    .team-bio {
        text-align: center;
    }
}
