/*
Theme Name: PrintMii
Theme URI: https://printmii.com/
Author: PrintMii
Author URI: https://printmii.com/
Description: Custom WordPress theme for PrintMii printing services. Optimized for RankMath Pro SEO and FSE.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: printmii
*/

/* Reset & Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Base Styles - Variables are also defined in theme.json */
:root {
    --color-primary: #FFE600;
    /* Yellow - main brand color */
    --color-primary-dark: #E6CF00;
    /* Darker yellow for hover */
    --color-secondary: #828282;
    /* Gray - secondary elements */
    --color-accent: #1B1B1B;
    /* Dark/Black - text/headers */
    --color-light: #F8F9FA;
    /* Light gray - backgrounds */
    --color-white: #FFFFFF;
    --color-text: #1B1B1B;
    --color-text-muted: #828282;
}

body {
    color: var(--color-text);
    background-color: var(--color-white);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}