/* --- HAKKIMDA SAYFASI TASARIM DOSYASI --- */

/* 1. FONTLAR */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600&family=Pinyon+Script&display=swap');

/* TEMEL AYARLAR */
:root {
    --gold-primary: #b89352;
    --dark-text: #0f141e;
    --light-text: #333;
    --sidebar-width: 270px;
}

.main-content {
    margin-left: var(--sidebar-width);
    padding: 50px 40px;
    max-width: 1400px;
    background: #fff;
    min-height: 100vh;
}

/* SAYFA DÜZENİ (YAN YANA) */
.about-page-wrapper {
    display: flex;
    flex-direction: row;    
    align-items: flex-start; 
    gap: 50px;                
    font-family: 'Montserrat', sans-serif;
}

/* --- SOL SÜTUN (BAŞLIK + GÖRSEL) --- */
.about-left-col {
    flex: 0 0 400px; 
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

/* BAŞLIK TASARIMI (GÜNCELLENDİ: Üst Sola Kaydırıldı) */
.about-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1c2331; /* Lacivert */
    font-weight: 700;
    margin: 0;
    position: relative;
    font-style: italic; 
    text-align: left; 
    
    /* Konum Ayarları */
    margin-top: -10px;    /* Yukarı kaydır */
    margin-left: 0;       /* Tam sol */
    margin-bottom: 20px;  
    
    line-height: 1;
    position: relative;
    padding-bottom: 15px;
    display: block;
    
    /* Yazı gölgesini kesin olarak kaldır */
    text-shadow: none !important;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold-primary);
}

/* GÖRSEL ÇERÇEVESİ */
.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-bottom: 4px solid var(--gold-primary);
    width: 100%;
    margin: 0; /* Dış boşlukları sıfırla */
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}
.image-frame:hover img { transform: scale(1.05); }


/* --- SAĞ SÜTUN (METİN + İMZA + İSTATİSTİK) --- */
.about-right-col {
    flex: 1; 
    padding-top: 85px; /* Başlık hizasına göre metni aşağı iter */
}

/* İÇERİK METNİ (GÜNCELLENDİ: GÖLGE KALDIRILDI) */
.about-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    text-align: justify;
    margin-bottom: 40px;
    
    /* Yazı arkasındaki tüm gri efektleri/gölgeleri temizle */
    text-shadow: none !important;
    background-color: transparent !important;
    background: none !important;
    box-shadow: none !important;
}

/* Paragraflar için de aynı temizliği yap */
.about-text-content p { 
    margin-bottom: 20px;
    text-shadow: none !important;
    background: transparent !important;
}

/* DROP CAP (İlk Harf) */
.about-text-content p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: var(--gold-primary); 
    float: left;
    line-height: 0.85;
    margin-right: 15px;
    margin-top: 5px;
    font-weight: 700;
    text-shadow: none !important; /* İlk harfteki gölgeyi de kaldır */
}

/* İMZA ALANI (DÜZ) */
.about-signature-area {
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: right; 
    padding-right: 10px;
}

.sig-text {
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: none !important;
}

.sig-name {
    font-family: 'Pinyon Script', cursive; 
    font-size: 3rem; 
    color: var(--gold-primary); 
    font-weight: 400; 
    display: inline-block;
    line-height: 1.2;
    transform: none !important; 
    text-shadow: none !important; /* İmzadan da gölgeyi kaldırdık */
}

/* İSTATİSTİK KARTI */
.about-stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fcfcfc; 
    border-top: 3px solid var(--gold-primary);
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
    /* Kutunun kendi gölgesi kalabilir (şık durur), ama yazınınki gitti */
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    gap: 15px;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
    text-shadow: none !important;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-shadow: none !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-content { margin-left: 0; padding: 0; }
    .about-page-wrapper { 
        flex-direction: column; 
        gap: 30px; 
        padding: 30px 20px; 
    }
    .about-left-col { flex: 0 0 100%; width: 100%; }
    .about-right-col { padding-top: 0; } 
    .about-main-title { font-size: 2.5rem; margin-top: 0; }
    .about-stats-box { grid-template-columns: 1fr; gap: 20px; }
    .about-text-content { text-align: left; }
    .about-signature-area { text-align: center; margin-top: 30px; }
}