/*
Theme Name: Field Ready Co
Theme URI: https://fieldreadyco.ca
Author: Field Ready Co
Author URI: https://fieldreadyco.ca
Description: Custom WordPress theme for Field Ready Co — Canadian OHS compliance documents for trades workers, contractors, and field workers.
Version: 1.0.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fieldreadyco
Tags: custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments
*/

/* === BRAND VARIABLES === */
:root {
    --navy:       #0D2137;
    --orange:     #E07B2A;
    --white:      #FFFFFF;
    --light-grey: #F5F5F5;
    --dark-grey:  #333333;
    --border-grey:#E0E0E0;
    --font-head:  'Merriweather', 'Georgia', serif;
    --font-body:  'Lato', 'Helvetica Neue', sans-serif;
    --radius:     8px;
    --shadow:     0 2px 12px rgba(0,0,0,0.10);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.16);
    --max-width:  1200px;
    --transition: 0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--dark-grey);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }
