/*
 Theme Name:   Neve Child SEO 2026
 Template:     neve
 Description:  Tema turunan Neve yang dioptimalkan untuk Speed & Mobile Readability.
 Version:      1.0.0
*/

/* --- 1. MODERN SYSTEM FONT STACK (SUPER CEPAT) --- */
/* Tidak perlu download font eksternal. 0ms loading time. */
body, h1, h2, h3, h4, h5, h6, input, textarea, button {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}

/* --- 2. MOBILE READABILITY (AGAR PENGUNJUNG BETAH) --- */
p {
    /* Ukuran font dinamis: 18px di HP, lebih besar dikit di desktop */
    font-size: clamp(1.125rem, 2vw, 1.2rem); 
    line-height: 1.7; /* Spasi antar baris lega agar mata tidak lelah */
    color: #2d3748; /* Abu-abu gelap, lebih nyaman di mata daripada hitam pekat #000 */
    margin-bottom: 1.5em;
}

/* Heading yang Jelas tapi tidak memakan tempat di HP */
h1, h2, h3 {
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 0.8em;
    font-weight: 800;
}

h2 {
    margin-top: 2em; /* Memberi napas antar bab artikel */
}

/* --- 3. UI/UX OPTIMIZATION --- */
/* Link yang mudah ditap jari jempol (Touch Target) */
a {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    padding: 2px 0; /* Area tap sedikit lebih luas */
}

.container {
    max-width: 800px; /* Fokus baca di tengah, seperti Medium.com */
}

/* Tombol Mobile Friendly */
button, .button, input[type="submit"] {
    min-height: 48px; /* Standar Google untuk touch target */
    min-width: 48px;
}

/* Gambar Responsif & Ringan */
img {
    height: auto;
    max-width: 100%;
    border-radius: 8px; /* Sentuhan modern halus */
}

/* --- 4. DARK MODE SUPPORT (TREND 2026) --- */
/* Otomatis berubah jika HP pengunjung setting Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e2e8f0;
    }
    p { color: #cbd5e0; }
    h1, h2, h3, h4 { color: #ffffff; }
    a { color: #63b3ed; }
    .site-header, .footer { background-color: #1a202c !important; }
}