/* Team Hero */
.team-hero-section {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../Media/TeamPagePhoto.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.team-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ana İçerik */
.team-main-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

/* Takım Bölümü */
.team-section {
    margin-bottom: 5rem;
}

.team-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
    position: relative;
}

.team-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2563eb;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-items: center;
}
.team-section.technical-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}
.team-member-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    min-width: 280px;
    max-width: 380px;
    width: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member-photo-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-photo {
    transform: scale(1.05);
}

.team-member-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #2563eb;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.team-member-info {
    padding: 2rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.team-member-position {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-education {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-member-social a {
    color: #2563eb;
    background-color: rgba(37, 99, 235, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-member-social a:hover {
    background-color: #2563eb;
    color: white;
}

/* İşbirlikleri */
.partners-section {
    margin-top: 6rem;
}

.partners-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.partner-logo {
    height: 80px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;

}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .team-hero-title {
        font-size: 2.5rem;
    }
    
    .team-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-photo-container {
        height: 250px;
    }
    
    .partners-logos {
        gap: 2rem;
    }
    
    .partner-logo {
        height: 60px;
    }
    .team-section.technical-team .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

}
@media (max-width: 480px) {
    .team-section.technical-team .team-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}