/*
Theme Name: Stoodio Theme
Theme URI: https://xeepcode.com
Author: xeepcode
Author URI: https://xeepcode.com
Description: A minimalist blank canvas theme optimized for total compatibility with the WP Stoodio AI Frontend runtime. It intercepts WordPress bloat and prevents layout clashes.
Version: 1.0.0
Text Domain: stoodio-theme
*/

/* 
 * WP Stoodio Strict Environment Reset 
 * This guarantees imported pages appear exactly as designed by the AI,
 * stripping away any default margins or padding injected by browsers.
 */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background-color: var(--stoodio-global-bg, #ffffff);
    color: var(--stoodio-global-text, #111827);
}

/* Hide WP Admin Bar if displaying frontend templates */
#wpadminbar {
    z-index: 999999;
}
