/*
 * Blank Canvas — theme.css
 * Minimal base styles. Bootstrap handles the heavy lifting.
 * Replace the font-family stack once Google Fonts are confirmed.
 */

:root {
    --bc-font-sans: 'Stack Sans Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
    /* TODO: Update --bc-font-sans when Google Fonts confirmed */
}

html,
body {
    font-family: var(--bc-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Strip default body margin WordPress sometimes inherits */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* WordPress admin bar offset — keeps your layouts from being obscured */
.admin-bar #main-content {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #main-content {
        margin-top: 46px;
    }
}
