/* css/blog-detay.css */

/* Blog Detay Sayfası Hero Alanı */
#blog-detay-hero {
    /* Resim yolu slider1.jpg olarak güncellendi */
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../images/slider1.jpg') no-repeat center center; 
    background-size: cover;
    color: white;
    padding-top: 6rem; 
    padding-bottom: 4rem;
    min-height: 400px; 
    display: flex;
    align-items: center;
}

/* Breadcrumb stilini hero alanına uyarlar */
#blog-detay-hero .breadcrumb {
    /* Breadcrumb ayracını (/) beyaz yapar */
    --bs-breadcrumb-divider-color: white;
}

#blog-detay-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: color 0.3s;
}

#blog-detay-hero .breadcrumb-item a:hover {
    color: var(--bs-warning) !important;
}

/* Makale Başlığı (h1) */
.article-title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Meta Bilgileri */
.article-meta .badge {
    font-size: 0.8rem;
    padding: 0.5em 0.8em;
    font-weight: 600;
}

/* Makale İçeriği Ana Alanı */
#article-content {
    background-color: #f8f9fa !important; 
}

/* Başlıklar Siyah Renge Çevrildi ve Altındaki Çizgi Kaldırıldı */
#article-content h2 {
    color: #000000; 
    padding-bottom: 0;
    margin-top: 3rem; 
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Listeler (SEO ve Okunabilirlik için) */
#article-content ul {
    list-style: none; 
    padding-left: 0;
}

#article-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

/* İkonlar Siyah Renge Çevrildi */
#article-content ul li::before {
    content: "\F26B"; /* Bootstrap Icons: bi-check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: #000000; /* Siyah İkon */
    font-weight: bold;
}

/* Call to Action (CTA) Alanı */
.call-to-action {
    background-color: var(--bs-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* "Hemen Kasko Teklifi Alın" Butonu: Siyah Zemin, Beyaz Yazı (Yeni Düzenleme) */
.btn-primary-custom {
    background-color: #000000; /* Siyah arka plan */
    border-color: #000000;
    color: white; /* Beyaz metin */
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
}

/* Hover Durumu: Sarı Zemin, Siyah Yazı (Yeni Düzenleme) */
.btn-primary-custom:hover {
    background-color: #ffc107; /* Sarı arka plan (Bootstrap warning) */
    border-color: #ffc107;
    color: #000000; /* Siyah metin */
}

/* Etiketler (Tags) */
.article-tags .badge {
    background-color: #e9ecef !important;
    color: #495057 !important;
    padding: 0.4rem 0.8rem;
    font-weight: normal;
}

/* Görsel Stili */
#article-content img {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}