/*
Theme Name: Blog Over Dark
Theme URI: https://awplife.com/wordpress-themes/blog-over/
Author: AwordPressLife (Customized by ZoneTechAI)
Description: Optimized dark child theme for blogs, tech sites, and SEO-focused content platforms.
Version: 1.0.1
Template: blog-over
Text Domain: blog-over-dark
*/

/* =========================
   GLOBAL DARK UI FIX
========================= */

body {
    background-color: #0b0f19;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.7;
}

/* Links */
a {
    color: #60a5fa;
    text-decoration: none;
}

a:hover {
    color: #3b82f6;
}

/* =========================
   HEADER IMPROVEMENT
========================= */

.site-header {
    background: #0f172a;
    border-bottom: 1px solid #1f2937;
}

/* Logo */
.site-title a {
    color: #ffffff;
    font-weight: 700;
}

/* =========================
   CONTENT AREA
========================= */

.site-content {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Blog posts card style */
.post,
.type-post {
    background: #111827;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Headings */
h1, h2, h3, h4 {
    color: #ffffff;
}

/* =========================
   BUTTONS (CTA STYLE)
========================= */

button,
.wp-block-button__link {
    background: #2563eb;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    transition: 0.3s ease;
}

button:hover,
.wp-block-button__link:hover {
    background: #1d4ed8;
}

/* =========================
   SIDEBAR
========================= */

.widget {
    background: #111827;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #0f172a;
    color: #9ca3af;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1f2937;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {
    .site-content {
        padding: 10px;
    }

    .post {
        padding: 15px;
    }
}

/* =========================
   SEO + UX IMPROVEMENTS
========================= */

/* Better readability */
p {
    color: #d1d5db;
}

/* Highlight important text */
strong {
    color: #ffffff;
}