/*
Theme Name: WellMetricTheme
Author: Matthew Wood
Author URI: https://woodwisemedia.com
Description: A minimal, barebones WordPress theme optimized for SaaS plugins. Contains only essential files with no unnecessary bloat.
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: wellmetrictheme
Tags: minimal, lightweight, saas, plugin-ready

This theme is designed to be a lightweight foundation for SaaS applications
where a plugin handles most of the front-end functionality.
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container for content */
.site-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Basic content styling */
.content-area {
    padding: 40px 0;
}

/* Utility classes */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}