/**
 * Team Page Styles
 */

/* General Styles */
.team-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2A6478;
}

/* Team Hero Section */
.team-hero {
    background-color: #2A6478;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.team-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Team Members Section */
.team-members {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

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

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

.member-info {
    padding: 25px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2A6478;
}

.member-position {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-bio {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #555;
}

.member-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #2A6478;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2A6478;
    color: #fff;
    transform: translateY(-3px);
}

/* Team Values Section */
.team-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 100, 120, 0.1);
    border-radius: 50%;
    color: #2A6478;
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2A6478;
}

.value-description {
    font-size: 0.95rem;
    color: #555;
}

/* Join Team Section */
.join-team {
    padding: 80px 0;
    text-align: center;
}

.join-team-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-team-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button-primary {
    background-color: #2A6478;
    color: #fff;
    border: 2px solid #2A6478;
}

.button-primary:hover {
    background-color: transparent;
    color: #2A6478;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .team-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 60px 0;
    }
    
    .team-title {
        font-size: 2.5rem;
    }
    
    .team-subtitle {
        font-size: 1.1rem;
    }
    
    .team-members, .team-values, .join-team {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .team-title {
        font-size: 2rem;
    }
    
    .team-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 250px;
    }
} 