/*
Theme Name:   Madara Child SEO
Theme URI:    https://mangaraw.space
Description:  Child theme of Madara optimized for SEO & AI Overview
Author:       mangaraw.space
Template:     madara
Version:      1.0.0
Text Domain:  madara-child-seo
*/

/* ============================================================
   SEO CONTENT ENHANCEMENTS
   ============================================================ */

/* Breadcrumb nổi bật hơn để Google hiểu cấu trúc */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 0;
    font-size: 13px;
    color: #888;
}
.breadcrumb a {
    color: #e74c3c;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Schema-friendly manga info box */
.manga-detail-block {
    background: #1a1a2e;
    border: 1px solid #2d2d4e;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

/* Chapter page: thêm không gian cho structured content */
.reading-content {
    position: relative;
}

/* Hiển thị alt text ảnh đẹp hơn (hỗ trợ accessibility & SEO) */
.reading-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* FAQ / AI Overview section */
.manga-faq-section {
    margin: 30px 0;
    padding: 24px;
    background: #f9f9f9;
    border-left: 4px solid #e74c3c;
    border-radius: 0 8px 8px 0;
}
.manga-faq-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}
.faq-item {
    margin-bottom: 16px;
}
.faq-item .faq-question {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 14px;
}
.faq-item .faq-answer {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   STRUCTURED DATA VISIBILITY
   ============================================================ */
.manga-author-name,
.manga-artist-name {
    font-weight: 600;
}

.manga-genres .badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    margin: 2px;
    text-decoration: none;
}

/* Chapter list với ngày tháng rõ ràng */
.wp-manga-chapter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.wp-manga-chapter:hover {
    background: #fff5f5;
}
.wp-manga-chapter .chapter-manhwa-title {
    font-weight: 500;
    color: #222;
}
.wp-manga-chapter .chapter-release-date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

/* ============================================================
   PERFORMANCE & CORE WEB VITALS
   ============================================================ */

/* Prevent layout shift cho ảnh cover */
.manga-detail-cover img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Lazy load placeholder */
img[loading="lazy"] {
    background: #f0f0f0;
}

/* ============================================================
   DARK THEME (phù hợp với manga site)
   ============================================================ */
@media (prefers-color-scheme: dark) {
    .manga-faq-section {
        background: #1a1a2e;
        color: #ccc;
    }
    .faq-item .faq-question { color: #eee; }
    .faq-item .faq-answer { color: #aaa; }
}
