
/* YÖNETİM ŞEMASI ÖZEL STİLLERİ - GÜNCELLENMİŞ */
.management-chart {
    margin: 2rem 0;
}

/* Başkan Yardımcıları Grid */
.vice-presidents-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Başkan Yardımcısı Kartı */
.vice-president-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.vice-president-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.vp-card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    display: flex;
    align-items: center;
}

.vp-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid rgba(255,255,255,0.3);
}

.vp-info {
    flex: 1;
}

.vp-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.vp-title {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* Yeni eklenen linkler için stil */
.vp-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.vp-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.vp-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.vp-link i {
    margin-right: 0.4rem;
    font-size: 0.8rem;
}

.vp-card-body {
    padding: 1.5rem;
}

.department-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.department-item {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f1f2f6;
}

.department-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.department-link {
    display: block;
    padding: 0.6rem 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.department-link:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.department-manager-name {
    display: block;
    font-weight: 600;
    color: #3498db;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .vice-presidents-grid {
        grid-template-columns: 1fr;
    }
    
    .president-name {
        font-size: 1.5rem;
    }
    
    .president-image {
        width: 120px;
        height: 120px;
    }
    
    .vp-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .vp-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .vp-links {
        justify-content: center;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.president-card {
    animation: fadeIn 0.6s ease-out;
}

.vice-president-card {
    animation: fadeIn 0.6s ease-out;
}

.vice-president-card:nth-child(1) { animation-delay: 0.1s; }
.vice-president-card:nth-child(2) { animation-delay: 0.2s; }
.vice-president-card:nth-child(3) { animation-delay: 0.3s; }
.vice-president-card:nth-child(4) { animation-delay: 0.4s; }
.vice-president-card:nth-child(5) { animation-delay: 0.5s; }
.vice-president-card:nth-child(6) { animation-delay: 0.6s; }
.vice-president-card:nth-child(7) { animation-delay: 0.7s; }