/*
 * EKİBİMİZ SAYFASI - MOBILE RESPONSIVE (v4.0)
 * Mobile-first, ana sayfa uyumlu, cozy tasarım
*/

/* ===================================
   1. TEAM HERO
=================================== */
.team-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(30, 77, 43, 0.88) 0%,
            rgba(30, 77, 43, 0.75) 100%);
    z-index: 1;
}

.team-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
}

.team-hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 244, 242, 0.9);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 30px;
}

.team-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(240, 244, 242, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ===================================
   2. TEAM SECTION - ANA SAYFA STİLİ
=================================== */
.section-featured-team {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
}

.section-title span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.section-title p {
    font-size: 1rem;
    color: var(--color-text);
    max-width: 100%;
    margin: 0 auto;
}

/* Team Grid - Ana Sayfadaki Gibi */
.team-grid-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Team Card - Pastel Renkler */
.team-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Pastel Arkaplanlar - Ana Sayfadaki Gibi */
.team-card:nth-child(4n+1) {
    background-color: #e4dcff;
    /* Lavanta */
}

.team-card:nth-child(4n+2) {
    background-color: #ffe7cc;
    /* Şeftali */
}

.team-card:nth-child(4n+3) {
    background-color: #d8f9ea;
    /* Mint */
}

.team-card:nth-child(4n+4) {
    background-color: #ffe0ed;
    /* Pembe */
}

/* Card Image - Ana Sayfadaki Gibi */
.team-card-image {
    width: 80%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.08);
}

/* Card Content */
.team-card-content {
    text-align: center;
    width: 100%;
}

.team-card-name {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.team-card-bio {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Specialties - Ana Sayfadaki Gibi */
.team-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 12px;
}

.specialty-tag {
    font-size: 0.7rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.4);
    color: #222;
    padding: 4px 10px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.specialty-tag:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Stats */
.team-card-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card-stat {
    text-align: center;
}

.card-stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 3px;
}

.card-stat-label {
    font-size: 0.65rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   3. CTA SECTION
=================================== */
.team-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    text-align: center;
}

.cta-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-white {
    display: inline-block;
    padding: 14px 35px;
    background: #FFFFFF;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===================================
   4. RESPONSIVE - TABLET & DESKTOP
=================================== */

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .team-hero {
        height: 70vh;
        min-height: 500px;
    }

    .team-hero-title {
        font-size: 3rem;
    }

    .team-hero-description {
        font-size: 1.15rem;
    }

    .team-hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section-featured-team {
        padding: 80px 0;
    }

    .section-title {
        padding: 0 40px;
        margin-bottom: 50px;
    }

    .section-title span {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1.05rem;
        max-width: 700px;
    }

    .team-grid-container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-card {
        padding: 30px 25px;
    }

    .team-card-name {
        font-size: 1.2rem;
    }

    .team-card-title {
        font-size: 0.85rem;
    }

    .team-card-bio {
        font-size: 0.9rem;
    }

    .specialty-tag {
        font-size: 0.75rem;
    }

    .card-stat-number {
        font-size: 1.2rem;
    }

    .card-stat-label {
        font-size: 0.7rem;
    }

    .team-cta-section {
        padding: 80px 0;
    }

    .cta-container {
        max-width: 700px;
        padding: 0 40px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.15rem;
    }

    .btn-white {
        padding: 16px 45px;
        font-size: 1rem;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .team-hero-title {
        font-size: 3.5rem;
    }

    .section-featured-team {
        padding: 100px 0;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .team-grid-container {
        max-width: 1400px;
        padding: 0 60px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .team-cta-section {
        padding: 100px 0;
    }

    .cta-container {
        max-width: 800px;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    .btn-white {
        padding: 18px 50px;
        font-size: 1.05rem;
    }
}

/* Desktop Large - 1200px+ */
@media (min-width: 1200px) {
    .team-hero-title {
        font-size: 4rem;
    }

    .team-hero-stats {
        gap: 50px;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .cta-title {
        font-size: 3rem;
    }
}