/*
Theme Name: ModernBlog
Theme URI: https://example.com/modernblog
Author: Md Shammir Ahmed
Author URI: https://example.com
Description: A modern, lightweight, premium-quality, fully responsive WordPress Blogging Theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modernblog
Tags: blog, modern, responsive, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready

ModernBlog is distributed under the terms of the GNU GPL.
*/

/* Reset & Variables */
:root {
	--mb-primary: #0066cc;
	--mb-secondary: #ff3366;
	--mb-text: #333333;
	--mb-text-light: #666666;
	--mb-bg: #ffffff;
	--mb-bg-alt: #f5f5f5;
	--mb-border: #eaeaea;
	--mb-font-main: 'Inter', system-ui, -apple-system, sans-serif;
	--mb-font-heading: 'Outfit', var(--mb-font-main);
	--mb-container: 1200px;
}

body.dark-mode {
	--mb-text: #f0f0f0;
	--mb-text-light: #aaaaaa;
	--mb-bg: #121212;
	--mb-bg-alt: #1e1e1e;
	--mb-border: #333333;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--mb-font-main);
	color: var(--mb-text);
	background-color: var(--mb-bg);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
}

/* Base styles to be expanded later */
