/*
Theme Name: Housenivo
Theme URI: https://housenivo.com
Author: Housenivo
Author URI: https://housenivo.com
Description: A home-maintenance content hub and free homeowner utility theme built around a client-side Home Maintenance Planner, Problem Finder, Checklists and Seasonal guides. No AI, no external API required. Includes a safe first-activation setup routine, a dynamic featured-articles hero slider, and configurable social links.
Version: 2.2.0
Requires at least: 6.5
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: housenivo
Tags: blog, one-column, two-columns, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready

Housenivo WordPress Theme, Copyright 2026
Housenivo is distributed under the terms of the GNU GPL.
*/

/*
Base reset and design tokens live here so the stylesheet is valid,
but the full theme styling is enqueued from assets/css/main.css
via wp_enqueue_style() (see inc/enqueue.php). WordPress requires
this file to exist with the theme header above; keeping the bulk
of the CSS in assets/css/main.css keeps things organized and cacheable.
*/

:root{
	--hn-green-dark:#0f3d2e;
	--hn-green:#1f7a4c;
	--hn-green-mid:#2f9e63;
	--hn-mint:#e6f5ec;
	--hn-mint-2:#f2faf5;
	--hn-white:#ffffff;
	--hn-gray-50:#f7f8f7;
	--hn-gray-100:#eef1ef;
	--hn-gray-300:#d7ddd9;
	--hn-gray-500:#7a8a82;
	--hn-text:#1c2622;
	--hn-text-light:#4c5a53;
	--hn-orange:#e8833f;
	--hn-radius-sm:8px;
	--hn-radius:14px;
	--hn-radius-lg:20px;
	--hn-shadow:0 4px 16px rgba(15,61,46,0.08);
	--hn-shadow-lg:0 12px 32px rgba(15,61,46,0.12);
	--hn-max-width:1200px;
	--hn-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;font-family:var(--hn-font);color:var(--hn-text);background:var(--hn-white);}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}
