/* =========================================
   BLOG DETAY SAYFASI STILLERI
   ========================================= */
@charset "UTF-8";

/*.blog-detail-section {
    padding: 50px 20px 80px;
    background-color: var(--bg-warm, #FAF7F2);
}

.blog-container {
    max-width: 760px; /* Rahat okuma genişliği (Editorial typography standardı) 
    margin: 0 auto;
}  */


/* --- BLOG SAYFASI TAM EKRAN ARKA PLAN AYARI --- */

/* 1. Sayfanın en dıştaki kapsayıcısını tam ekran yapın */
.blog-detail-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* En az ekran yüksekliği kadar olsun */
    padding: 60px 20px 120px;
    /* Arka plan görseli özellikleri */
    background-image: url('/img/arkaplan.jpg');
    background-size: cover; /* Görseli uzatmadan/daraltmadan alanı kaplar */
    background-position: center; /* Görseli ortalar */
    background-repeat: no-repeat; /* Görseli tekrar etmez */
    background-attachment: fixed; /* (İsteğe bağlı) Sayfa kaydırılırken görsel sabit kalır */
}

    /* 2. YAZI OKUNABİLİRLİĞİ İÇİN ONAY KATMANI (Overlay) */
    /* Bu katman, arka plan görseli ile yazıların arasına girerek yazıları netleştirir. */
    .blog-detail-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Sitenizin genel krem tonu (#FAF7F2) üzerinde hafif bir opaklık veriyoruz. */
        /* Saydamlığı (0.85) değiştirerek görseli daha belirgin veya daha silik yapabilirsiniz. */
        background-color: rgba(250, 247, 242, 0.75);
        pointer-events: none; /* Tıklamayı engellemez, altındaki linklere tıklanabilir */
        z-index: 1; /* Arka plan görselinin üzerinde, içerik metninin altında kalır */
    }

/* 3. İÇERİĞİ KATMANIN ÜZERİNE ÇIKARMA */
/* Blog başlığı ve metinlerinin overlay katmanının üzerinde görünmesini sağlar */
.blog-container {
    position: relative;
    z-index: 2; /* Overlay katmanından daha yüksek bir değer */
    max-width: 760px;
    margin: 0 auto;
}

/* 4. BEYAZ ALANLARI ŞEFFAFLAŞTIRMA (Gerekirse) */
/* Eğer alt kısımdaki CTA kutusunun (.blog-cta-box) beyaz kalmasını istiyorsanız bu adımı atlayın. */
/* Eğer onun da arka planın bir parçası gibi görünmesini isterseniz: */
.blog-cta-box {
    background-color: rgba(255, 255, 255, 0.9); /* Hafif şeffaf beyaz */
    border: none;
}

/* Breadcrumb */
.blog-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted, #6B726F);
    margin-bottom: 25px;
}

    .blog-breadcrumb a {
        color: var(--text-muted, #6B726F);
        text-decoration: none;
        transition: color 0.2s;
    }

        .blog-breadcrumb a:hover {
            color: var(--btn-color, #21352F);
        }

/* Başlık Alanı */
.blog-header {
    margin-bottom: 40px;
    text-align: left;
}

.blog-badge {
    display: inline-block;
    background-color: #EAF0EE;
    color: var(--btn-color, #21352F);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.blog-post-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-dark, #2E3330);
    margin-bottom: 22px;
}

.blog-author-meta {
    border-bottom: 1px solid rgba(46, 51, 48, 0.1);
    padding-bottom: 20px;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark, #2E3330);
}

.post-read-time {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted, #6B726F);
    margin-top: 2px;
}

/* Metin İçeriği (Typography) */
.blog-content {
    color: var(--text-dark, #2E3330);
    font-size: 1.1rem;
    line-height: 1.8;
}

    .blog-content p {
        margin-bottom: 24px;
    }

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #373e3a;
    font-weight: 400;
}

.blog-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--btn-color, #21352F);
    margin-top: 45px;
    margin-bottom: 18px;
}

/* Alıntı (Blockquote) */
.blog-quote {
    margin: 40px 0;
    padding: 24px 30px;
    background-color: #F3EAE4;
    border-left: 3px solid #385b40;
    border-radius: 0 16px 16px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-dark, #2E3330);
}

/* Soru ve Madde Listeleri */
.question-list, .bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 28px 0;
}

    .question-list li, .bullet-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

        .question-list li::before {
            content: "\2014"; /* Uzun çizgi (em-dash) için evrensel unicode */
            position: absolute;
            left: 4px;
            color: #8c9e92;
            font-weight: 600;
        }

        .bullet-list li::before {
            content: "\2022"; /* Standart yuvarlak madde imi unicode kodu */
            position: absolute;
            left: 8px;
            color: #385b40;
            font-size: 1.3rem;
            line-height: 1.2;
        }

/* Kapanış Düşünce Kutusu */
.closing-reflection {
    background: #EAF0EE;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.reflection-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 600;
    font-style: italic;
    color: var(--btn-color, #21352F);
    margin-bottom: 10px !important;
}

/* Alt CTA Kartı */
.blog-cta-box {
    margin-top: 55px;
    background-color: #ffffff;
    border: 1px solid rgba(220, 205, 190, 0.6);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

    .blog-cta-box h3 {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 1.6rem;
        color: var(--btn-color, #21352F);
        margin-top: 0;
        margin-bottom: 12px;
    }

    .blog-cta-box p {
        font-size: 0.98rem;
        line-height: 1.7;
        color: var(--text-muted, #6B726F);
        margin-bottom: 16px;
    }

.cta-actions {
    margin-top: 24px;
}

.blog-detail-section {
    padding: 50px 20px 120px; /* Üst, Sağ-Sol, Alt */
    background-color: var(--bg-warm, #FAF7F2);
}

/* Kutuya alt dış boşluk (margin-bottom) ekleyin */
.blog-cta-box {
    margin-top: 55px;
    margin-bottom: 40px; /* Kutunun hemen altına ek boşluk ekler */
    background-color: #ffffff;
    border: 1px solid rgba(220, 205, 190, 0.6);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}


/* =========================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================= */

@media (max-width: 768px) {

    .blog-detail-section {
        padding: 30px 16px 80px; /* Mobilde alt boşluk 80px olur */
    }

    .blog-cta-box {
        margin-bottom: 20px;
    }


    .blog-post-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .blog-content {
        font-size: 1.02rem;
        line-height: 1.75;
    }

    .lead-paragraph {
        font-size: 1.12rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
        margin-top: 35px;
    }

    .blog-quote {
        font-size: 1.2rem;
        padding: 18px 20px;
        margin: 30px 0;
    }

    .blog-cta-box {
        padding: 24px;
        border-radius: 18px;
    }
}
