/* ============================================
   TAKIM YAPISI - YENİ MODERN TASARIM
   ============================================ */

/* Takım Bölümü */
.team-section {
    margin-bottom: 3rem;
}

/* Takım Başlığı */
.team-header {
    margin-bottom: 2rem;
}

.team-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.team-icon.team-captain {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.team-icon.team-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.team-icon.team-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.team-icon.team-green {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
}

.team-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-captain {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Takım Ayırıcı Çizgi */
.team-divider {
    height: 4px;
    width: 100%;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.team-divider-captain {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, transparent 100%);
}

.team-divider-blue {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, transparent 100%);
}

.team-divider-orange {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 50%, transparent 100%);
}

.team-divider-green {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 50%, transparent 100%);
}

/* Üye Kartı */
.member-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.member-card.card-captain:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.member-card.card-blue:hover {
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.member-card.card-orange:hover {
    box-shadow: 0 20px 40px rgba(240, 147, 251, 0.3);
}

.member-card.card-green:hover {
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

.member-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Üye Resmi */
.member-image-wrapper {
    margin-bottom: 1.5rem;
}

.member-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

/* Üye İçeriği */
.member-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.2;
}

.member-role {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Sosyal Medya Linkleri */
.member-social {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .team-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .team-title {
        font-size: 1.5rem;
    }
    
    .member-card {
        padding: 1.2rem;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.8rem;
    }
    
    .member-bio {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Kaptanlar için özel düzenleme */
.col-lg-12 .member-card {
    max-width: 800px;
    margin: 0 auto;
}

.col-lg-12 .member-card-inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.col-lg-12 .member-image-wrapper {
    flex-shrink: 0;
    width: 200px;
    margin-bottom: 0;
}

.col-lg-12 .member-content {
    flex: 1;
}

@media (max-width: 768px) {
    .col-lg-12 .member-card-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .col-lg-12 .member-image-wrapper {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Yıl Tab Butonları */
.maviroket-nav-links {
    gap: 0.5rem;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.maviroket-nav-links::-webkit-scrollbar {
    height: 6px;
}

.maviroket-nav-links::-webkit-scrollbar-track {
    background: transparent;
}

.maviroket-nav-links::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.maviroket-nav-links::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.maviroket-nav-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.maviroket-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.maviroket-nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
