/* Yönetim Kurulu Sayfası Stilleri */

/* ============================================
   Genel Section Stilleri
   ============================================ */

.yonetim-kurulu-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.section-label {
    color: #c00e0e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #c00e0e 0%, #1f2950 100%);
    border-radius: 2px;
}

.section-title h2 {
    color: #1f2950;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   Profil Kartları (Mevcut footer-styles.css'den)
   ============================================ */

.yonetim-kurulu-section .profile-card {
    width: 100%;
    max-width: 280px;
    min-height: 320px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background-color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.yonetim-kurulu-section .profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1f2950 0%, #c00e0e 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yonetim-kurulu-section .profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 41, 80, 0.15);
    border-color: #c00e0e;
}

.yonetim-kurulu-section .profile-card:hover::before {
    transform: scaleX(1);
}

.yonetim-kurulu-section .img-small {
    width: 200px;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    border: 3px solid #f0f0f0;
}

.yonetim-kurulu-section .profile-card:hover .img-small {
    transform: scale(1.05);
    border-color: #c00e0e;
}

.yonetim-kurulu-section .isimBaslik {
    color: #1f2950;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    text-align: center;
    transition: color 0.3s ease;
}

.yonetim-kurulu-section .profile-card:hover .isimBaslik {
    color: #c00e0e;
}

.yonetim-kurulu-section .makamBaslik {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Görsel Placeholder
   ============================================ */

.team-image-placeholder {
    width: 200px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 10px;
    margin-bottom: 15px;
    color: #999;
    font-size: 64px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.yonetim-kurulu-section .profile-card:hover .team-image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    border-color: #c00e0e;
    color: #c00e0e;
}

/* ============================================
   Boş Durum
   ============================================ */

.no-team-members {
    padding: 60px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-team-members i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}

.no-team-members p {
    color: #666;
    font-size: 18px;
    margin: 0;
}

/* ============================================
   Responsive Tasarım
   ============================================ */

@media (max-width: 991px) {
    .yonetim-kurulu-section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .yonetim-kurulu-section .profile-card {
        max-width: 260px;
        min-height: 300px;
    }
    
    .yonetim-kurulu-section .img-small,
    .team-image-placeholder {
        width: 180px;
        max-height: 220px;
    }
}

@media (max-width: 767px) {
    .yonetim-kurulu-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .yonetim-kurulu-section .profile-card {
        max-width: 240px;
        min-height: 280px;
        padding: 15px;
    }
    
    .yonetim-kurulu-section .img-small,
    .team-image-placeholder {
        width: 160px;
        max-height: 200px;
    }
    
    .yonetim-kurulu-section .isimBaslik {
        font-size: 18px;
    }
    
    .yonetim-kurulu-section .makamBaslik {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .yonetim-kurulu-section .profile-card {
        max-width: 100%;
        min-height: auto;
    }
    
    .yonetim-kurulu-section .img-small,
    .team-image-placeholder {
        width: 140px;
        max-height: 180px;
    }
    
    .yonetim-kurulu-section .isimBaslik {
        font-size: 16px;
    }
}

