/* Birimler Sayfası Ortak Stilleri */
.birim-page {
    font-family: 'Open Sans', sans-serif;
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.birim-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1.page-title {
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h1.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

/* Profil Kartı Stili */
.profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease 0.3s forwards;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 89, 56, 0.2);
}

/* Profil Resmi Stili */
.profile-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

/* İletişim Bilgileri Stili */
.birim-page .contact-info {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(37, 89, 56, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease 0.6s forwards;
}

.birim-page .contact-info h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #255938;
    padding-bottom: 0.5rem;
}

.birim-page .contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.birim-page .contact-info-item:hover {
    background: #edf2ff;
    transform: translateX(5px);
}

.birim-page .contact-info-item i {
    color: #255938;
    font-size: 1.2rem;
    width: 30px;
    margin-right: 1rem;
}

.birim-page .contact-info-item span {
    color: #333;
    font-size: 1.1rem;
}

/* Özgeçmiş Bölümü Stilleri */
.ozgecmis-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(37, 89, 56, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease 0.9s forwards;
}

.ozgecmis-section h3 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #255938;
    padding-bottom: 0.5rem;
}

.ozgecmis-content {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .birim-content {
        padding: 0 2rem;
    }

    h1.page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .birim-page {
        padding: 1rem 0;
    }

    .profile-card {
        margin-bottom: 1.5rem;
    }

    .birim-page .contact-info {
        padding: 1.5rem;
    }

    .birim-page .contact-info h2 {
        font-size: 1.3rem;
    }

    .ozgecmis-section {
        padding: 1.5rem;
    }

    .ozgecmis-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1.page-title {
        font-size: 1.8rem;
    }

    .birim-page .contact-info-item {
        padding: 0.6rem;
    }

    .birim-page .contact-info-item span {
        font-size: 1rem;
    }

    .ozgecmis-content {
        font-size: 1rem;
    }
} 