/*
 Theme Name:   LifeOS Theme
 Theme URI:    https://webloomstudio.in
 Description:  Minimal WordPress theme purpose-built for the LifeOS Suite plugin. Renders LifeOS pages fullscreen with the dark/light UI — no header, no footer, no sidebar clutter. All other pages display a clean blank layout.
 Author:       WeBloom Studio / Abhishek Gupta
 Author URI:   https://webloomstudio.in
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  lifeos-theme
 Tags:         dark, minimal, single-page-app, lifeos
*/

/* === Base reset for non-LifeOS pages === */
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background: #0f1117;
    color: #e5e2dd;
    min-height: 100vh;
}

/* Admin bar fix */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* === LifeOS fullscreen pages === */
body.lifeos-app-page,
body.lifeos-login-page,
body.lifeos-register-page {
    background: #0f1117;
    overflow-x: hidden;
}
body.lifeos-app-page .los-app-container,
body.lifeos-login-page .los-auth-wrap,
body.lifeos-register-page .los-auth-wrap {
    min-height: 100vh;
}

/* Light mode override (class toggled by JS) */
html.los-light body {
    background: #f5f3f0;
    color: #1a1a1a;
}

/* === Generic page (non-LifeOS) === */
.lifeos-generic-wrap {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}
.lifeos-generic-wrap h1, .lifeos-generic-wrap h2 {
    color: #e5e2dd;
}
.lifeos-generic-wrap a {
    color: #6ea8fe;
}
