/*
Theme Name: Famoid Blogger
Theme URI: https://famoid.com/blogger-theme
Author: Famoid
Author URI: https://famoid.com
Description: A clean, minimal, content-first WordPress theme optimized for long-form articles. Features dark mode, reading progress indicator, table of contents, and full SEO optimization. Built for marketing agencies who prioritize serious content.
Version: 1.0.54
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: famoid-blogger
Tags: blog, one-column, two-columns, right-sidebar, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks

Famoid Blogger WordPress Theme, Copyright 2024 Famoid
Famoid Blogger is distributed under the terms of the GNU GPL
*/

/*
 * Note: Main styles are loaded from assets/css/ via functions.php
 * This file contains only the theme header for WordPress recognition
 * and minimal critical CSS for above-the-fold content.
 */

/* Critical CSS - Prevent FOUC */
:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
}

html {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
}

/* Dark mode critical - applied before JS loads */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) {
        --color-bg: #0f0f0f;
        --color-text: #f0f0f0;
    }
}

html[data-theme="dark"] {
    --color-bg: #0f0f0f;
    --color-text: #f0f0f0;
}
