/* Team Overview Page Styles */

/* Hero Section */
.team-hero {
    position: relative;
    min-height: 50vh;
    padding: 180px 0 100px;
    background-color: var(--bg-primary);
    overflow: hidden;
    text-align: center;
}

.team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.team-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.team-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 10%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 2;
    filter: blur(20px);
    opacity: 0.6;
    transform: translateZ(0);
}

.team-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Grid Layout */
.team-leadership,
.team-vps {
    padding: 100px 0;
}

.team-leadership {
    background-color: var(--bg-secondary);
}

.team-vps {
    background-color: var(--bg-primary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--color-orange);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Team Card Styles */
.team-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-tertiary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.team-card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 95, 11, 0.3), rgba(61, 126, 255, 0.3));
    opacity: 0.5;
    z-index: 1;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-info {
    padding: 1.5rem;
}

.team-card-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-card-title {
    font-size: 1rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-card-description {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Values Section */
.team-values {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--bg-tertiary);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background-color: rgba(255, 95, 11, 0.1);
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-orange);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Contact Section */
.team-contact {
    padding: 100px 0;
    background-color: var(--bg-tertiary);
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .team-title {
        font-size: 3.5rem;
    }
    
    .team-subtitle {
        font-size: 1.3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 150px 0 80px;
    }
    
    .team-title {
        font-size: 2.8rem;
    }
    
    .team-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-leadership,
    .team-vps,
    .team-values,
    .team-contact {
        padding: 70px 0;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 2.4rem;
    }
    
    .team-card-image {
        height: 250px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
} 