/* =========================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
   Dosya: aboutus.css
   ========================================= */

/* --- GENEL AYARLAR --- */
body {
    background-color: #fcfcfc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* --- SAYFA BAŞLIĞI (PAGE HEADER) --- */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1505663912202-ac22d4cb3707?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 0;
    border-bottom: 5px solid #800020; /* Altına Bordo Çizgi */
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 10px;
}

.page-header .lead {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
}

/* --- İÇERİK BÖLÜMLERİ --- */
.content-section {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #800020;
    margin-top: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- PROFİL FOTOĞRAFI VE BADGE --- */
.about-img-wrapper {
    position: relative;
    padding: 15px;
    display: inline-block;
}

.about-img-wrapper img {
    border-radius: 15px;
    transition: transform 0.4s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 1px solid #f0f0f0;
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

/* Resim Üzerindeki Buton (Badge) */
.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0px;
    background: linear-gradient(135deg, #800020 0%, #b3002d 100%); /* Bordo Gradyan */
    color: white !important;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white; /* Beyaz çerçeve */
    z-index: 2;
}

.experience-badge span {
    display: block;
    line-height: 1.2;
}

.experience-badge i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

/* Badge Hover Efekti */
.experience-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.5);
    background: linear-gradient(135deg, #b3002d 0%, #800020 100%);
}

.experience-badge:hover i {
    transform: translateX(5px);
}

/* --- MODERN İKON KUTULARI (UZMANLIK ALANLARI) --- */
.modern-icon-box {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover Efekti: Yukarı Kalkma ve Renk Değişimi */
.modern-icon-box:hover {
    background-color: #800020; /* Bordo Arka Plan */
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.2);
    border-color: #800020;
}

/* İkon Dairesi */
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #f8f1f3; /* Açık Pembe/Bordo Tonu */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 2rem;
    color: #800020; /* İkon Rengi */
    transition: all 0.3s ease;
}

/* Hover'da İkon Değişimi */
.modern-icon-box:hover .icon-circle {
    background-color: white;
    transform: scale(1.1) rotate(360deg);
}

.modern-icon-box:hover .icon-circle i {
    color: #800020;
}

/* Yazı Stilleri */
.modern-icon-box h4 {
    color: #333;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.modern-icon-box p {
    color: #666;
    font-size: 0.95rem;
    transition: color 0.3s;
    line-height: 1.5;
}

/* Hover'da Yazıların Beyaz Olması */
.modern-icon-box:hover h4,
.modern-icon-box:hover p {
    color: white;
}

/* --- VİZYON BÖLÜMÜ --- */
.bg-light {
    background-color: #f9f9f9 !important;
}

/* Vizyon kutusunun arka planındaki tırnak işareti */
.bi-quote {
    color: #800020;
    opacity: 0.05 !important; /* Çok silik görünüm */
    transform: rotate(180deg);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .about-img-wrapper {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%); /* Mobilde ortala */
        bottom: -20px;
        width: 80%;
    }
    
    /* Mobilde hover efektini bozmamak için */
    .experience-badge:hover {
        transform: translateX(50%) translateY(-5px); 
    }

    .section-title {
        font-size: 1.8rem;
    }
}