/* Team Page Styles */

/* Hero Section */
.team-hero-section {
    min-height: 35vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #228B70 0%, #1a6b5a 100%);
    overflow: hidden;
}

.team-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.team-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 139, 112, 0.9) 0%, rgba(26, 107, 90, 0.9) 100%);
}

.team-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 80px 0 60px 0;
}

.team-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.team-hero-section .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Introduction Section */
.team-intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228B70;
    margin-bottom: 1.5rem;
    text-align: center;
    white-space: nowrap;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.leadership-card .card-image,
.board-card .card-image,
.technical-card .card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #228B70 0%, #1a6b5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 139, 112, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .card-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: white;
    color: #228B70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #228B70;
    color: white;
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #228B70;
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Board Members Section */
.board-members-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.board-members-section .section-header {
    margin-bottom: 60px;
}

/* Technical Team Section */
.technical-team-section {
    padding: 80px 0;
    background-color: white;
}

.technical-team-section .section-header {
    margin-bottom: 60px;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #228B70 0%, #1a6b5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #228B70;
    margin-bottom: 1rem;
}

.value-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Stats Section */
.team-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #228B70 0%, #1a6b5a 100%);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Join Team Section */
.join-team-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #495057;
}

.benefit-item i {
    color: #228B70;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-card {
    background: linear-gradient(135deg, #228B70 0%, #1a6b5a 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(34, 139, 112, 0.3);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-brand {
    background: white;
    color: #228B70;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-brand i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .team-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        white-space: nowrap;
    }
    
    .leadership-card .card-image,
    .board-card .card-image,
    .technical-card .card-image {
        height: 250px;
    }
    
    .image-placeholder {
        font-size: 3rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 1.25rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .team-hero-section {
        min-height: 30vh;
    }
    
    .team-hero-section .hero-content {
        padding: 60px 0 40px 0;
    }
    
    .team-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .team-intro-section,
    .leadership-section,
    .values-section,
    .team-stats-section,
    .join-team-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 1rem;
    }
}
