/*
Theme Name: Hello Shmotime
Description: Blank, minimalist theme for sites where the Shmotime plugin renders every user-facing page itself. No sidebars, no widgets, no menus — just a clean, readable fallback for anything WordPress routes through the theme (stray pages, posts, search, 404s). Not integrated with and not required by the Shmotime plugin.
Author: SM Sith Lord
Version: 1.0.0
Requires at least: 5.0
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-shmotime
*/

/* Minimal, readable defaults for whatever falls through to the theme. */

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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.hello-shmotime-main {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

.hello-shmotime-entry + .hello-shmotime-entry {
    margin-top: 3rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 3rem;
}

.hello-shmotime-entry img {
    max-width: 100%;
    height: auto;
}

a {
    color: #0055aa;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #e6e6e6;
        background: #111214;
    }

    .hello-shmotime-entry + .hello-shmotime-entry {
        border-top-color: #2a2c2f;
    }

    a {
        color: #6db3f2;
    }
}
