/* Programcılar Sayfası Stilleri */

/* Programcı Kartları */
.programci-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.programci-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.programci-image {
    position: relative;
    overflow: hidden;
}

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

.programci-card:hover .programci-image img {
    transform: scale(1.05);
}

.programci-content {
    padding: 25px;
}

.programci-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

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

.programci-content h3 a:hover {
    color: #007bff;
}

.programci-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.programci-location i {
    color: #007bff;
    margin-right: 8px;
}

.programci-excerpt {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Programcı Detay Sayfası */
.programci-detail-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 40px;
}

.programci-image-wrapper {
    text-align: center;
}

.programci-image {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.programci-info {
    padding-left: 30px;
}

.programci-name {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.contact-item i {
    width: 20px;
    margin-right: 15px;
    color: #007bff;
    font-size: 18px;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #007bff;
}

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

.social-media-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
    color: #fff;
}

.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;
}

/* Programcı Açıklaması */
.programci-description {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.programci-description h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.programci-description .content {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

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

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

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #ccc;
}

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

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

.breadcrumb-list li i {
    margin-right: 5px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* No Programcılar */
.no-programcilar {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-programcilar h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

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

.pagination-wrapper .page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.pagination-wrapper .page-numbers li {
    margin: 0;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    text-decoration: none;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-wrapper .page-numbers a:hover,
.pagination-wrapper .page-numbers .current {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .programci-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .programci-name {
        font-size: 28px;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .social-media-links {
        justify-content: center;
    }
    
    .programci-detail-card {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .programci-card {
        margin-bottom: 20px;
    }
    
    .programci-content {
        padding: 20px;
    }
    
    .programci-content h3 {
        font-size: 20px;
    }
    
    .programci-name {
        font-size: 24px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
} 