/*
Theme Name: GK Theme
Theme URI: https://github.com/creativecatco/gk-wp-plugin
Author: Growth Keys
Author URI: https://growthkeys.com
Description: Barebones companion theme for GK Page Builder. Provides a minimal shell with no competing CSS, fonts, or JavaScript — all rendering is handled by the plugin.
Version: 0.4.3
Requires at least: 6.0
Requires PHP: 8.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gk-theme
*/

/* CSS Reset — minimal, modern */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: inherit;
}

/* CSS Custom Properties — set by plugin, declared here as fallbacks */
:root {
    --color-primary: #2563eb;
    --color-secondary: #ffffff;
    --color-accent: #f59e0b;
    --font-family: system-ui, -apple-system, sans-serif;
    --font-heading: system-ui, -apple-system, sans-serif;
}
