/* ==================== TEAM SECTION STYLES ==================== */

/* Section Genel Ayarları - Koyu Tema */
#team-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background-color: #1f2226; /* Sitenin ana koyu arka planı */
    overflow: hidden;
    font-family: 'Open Sans', Arial, sans-serif; 
    
    /* ÖNEMLİ: Menü tıklandığında başlığın üstte kalmasını engeller */
    scroll-margin-top: 120px; 
}

/* Arka Plan Noktaları (Canvas) */
#team-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2; /* Noktaların silik görünmesi için */
}

/* --- BAŞLIK ALANI (HEADER) --- */
.team-header-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
}

.team-header-wrapper h2 {
    color: #ffffff;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.team-header-wrapper p {
    color: #cccccc; /* Okunabilir gri ton */
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Başlık Altındaki Pembe Çizgi */
.separator-line {
    width: 100px;
    height: 3px;
    background-color: #e44c65; /* YönTek Pembe Rengi */
    margin: 0 auto;
    border-radius: 2px;
}

/* --- KART YAPISI --- */
.team-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kart Tasarımı */
.team-card {
    background: #2a2d33; /* Koyu gri kart zemini */
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
    padding: 0 0 30px 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a3e45;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* Avatar (Resim) Alanı */
.avatar-holder {
    width: 120px;
    height: 120px;
    margin: -60px auto 20px auto;
    background: #2a2d33;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid #e44c65; /* Resim etrafında pembe çember */
}

.avatar-holder img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Kart İçeriği */
.card-content {
    padding: 0 20px;
}

.team-card h2 {
    font-size: 1.4em;
    color: #ffffff;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.team-card .job-title {
    display: block;
    font-size: 0.9em;
    color: #e44c65; /* Pembe unvan */
    margin-bottom: 15px;
    font-weight: 600;
}

/* Dekoratif Renk Şeridi */
.color-band {
    width: 100%;
    height: 2px;
    margin: 15px 0;
    background: #e44c65;
    opacity: 0.5;
}

.desc {
    font-size: 0.9em;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

/* --- BUTONLAR --- */
.actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-action {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s;
    font-size: 0.9em;
    font-weight: 600;
    color: #ffffff;
    border: 2px solid #e44c65;
    background: transparent;
}

.btn-action i {
    margin-right: 6px;
    font-size: 1.1em;
    color: #e44c65;
}

/* Buton Hover Efekti */
.btn-action:hover {
    background: #e44c65;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(228, 76, 101, 0.4);
}

.btn-action:hover i {
    color: #ffffff;
}

/* --- MOBİL UYUMLULUK --- */
@media screen and (max-width: 736px) {
    .team-header-wrapper h2 {
        font-size: 1.5em;
    }
    .team-header-wrapper p {
        font-size: 0.9em;
    }
}