
/* YÖNETİM ŞEMASI ÖZEL STİLLERİ */
.management-chart {
    margin: 2rem 0;
}

/* Başkan Kartı */
.president-card {
    background: linear-gradient(135deg, #1a56db 0%, #1e429f 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.president-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f1c40f);
}

.president-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.3);
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.president-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.267);
}


.president-name h2 {
color:#fff;
}


.president-title {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Başkanın Birimleri */
.president-departments {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(5px);
}

.president-departments h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.department-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.department-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.department-card a {
    color: white;
    text-decoration: none;
    display: block;
}

.department-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.department-manager {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Başkan Yardımcıları Grid */
.vice-presidents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    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: 80px;
    height: 80px;
    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;
}

.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;
    }
    
    .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; }