/* Ekip Üyeleri CSS */

/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    margin-right: 10px;
    color: #666;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-list li a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-list li a:hover {
    color: #0056b3;
}

/* Ekip Üyesi Detay Sayfası */
.ekip-uyesi-detail-section {
    padding: 60px 0;
}

.ekip-uyesi-image-wrapper {
    margin-bottom: 30px;
}

.ekip-uyesi-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ekip-uyesi-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.ekip-uyesi-image:hover img {
    transform: scale(1.05);
}

.ekip-uyesi-info {
    padding: 20px 0;
}

.ekip-uyesi-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* İletişim Bilgileri */
.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 18px;
    color: #667eea;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-item span,
.contact-item a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #667eea;
}

/* Sosyal Medya Bölümü */
.social-media-section {
    margin-bottom: 40px;
}

.social-media-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.social-media-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: white;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.youtube {
    background: #ff0000;
}

/* Hakkında Bölümü */
.about-section {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.about-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-content p {
    margin-bottom: 20px;
}

/* Ekip Üyeleri Listesi */
.ekip-uyeleri-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.ekip-uyesi-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.ekip-uyesi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ekip-uyesi-image {
    position: relative;
    overflow: hidden;
}

.ekip-uyesi-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ekip-uyesi-card:hover .ekip-uyesi-image img {
    transform: scale(1.1);
}

.ekip-uyesi-content {
    padding: 25px;
}

.ekip-uyesi-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ekip-uyesi-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ekip-uyesi-content h3 a:hover {
    color: #667eea;
}

.ekip-uyesi-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.ekip-uyesi-location i {
    margin-right: 8px;
    color: #667eea;
}

.ekip-uyesi-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Pagination */
.pagination-wrapper {
    text-align: center;
    margin-top: 50px;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .ekip-uyesi-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .social-media-links {
        justify-content: center;
    }
    
    .contact-item {
        padding: 10px;
    }
} 