/* ============================================
   Bonisabet Child - custom.css
   Blog ve iç sayfa ek stilleri
   (Ana sayfa/front-page.php kendi stilini taşır)
   ============================================ */

/* Navbar scrolled gölge */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.12);
}

/* Sayfa başlıkları */
.page-header,
.entry-header {
    margin-bottom: 2rem;
}
.page-title,
.entry-title {
    color: #1E293B;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* İçerik tipografisi */
.entry-content h2 { color: #1E3A8A; margin-top: 2rem; }
.entry-content h3 { color: #1E293B; margin-top: 1.5rem; }
.entry-content a { color: #3B82F6; text-decoration: underline; }
.entry-content a:hover { color: #1E3A8A; }

/* Blockquote */
.entry-content blockquote {
    border-left: 4px solid #3B82F6;
    background: #F8FAFC;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    color: #475569;
}

/* Sayfalama */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #1E293B;
    margin: 0 3px;
    text-decoration: none;
    transition: all 0.25s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #3B82F6;
    color: #fff;
    border-color: #3B82F6;
}

/* Reveal animasyon (iç sayfalar) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease-out;
}
.reveal.on {
    opacity: 1;
    transform: translateY(0);
}

/* Tablolar */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.06);
}
.entry-content th {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: #fff;
    padding: 0.9rem 1rem;
    text-align: left;
}
.entry-content td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.entry-content tr:hover td {
    background: #F8FAFC;
}
