/*
Theme Name:  Blank Page
Theme URI:
Author:      Custom Plugins
Author URI:
Description: A minimal blank-page theme for WordPress 6.9 / 7.0. Outputs no chrome — no header, no footer, no sidebar. Ideal as a parent or standalone base for landing pages, custom templates, and headless-style builds.
Version:     1.0.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank-page
*/

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

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

a {
    color: inherit;
}

/* ==========================================================================
   WordPress core classes (required for block editor compatibility)
   ========================================================================== */

.wp-block-image img {
    height: auto;
}

.alignleft  { float: left;  margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem;  }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.alignwide  { width: 100%; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 0;
    z-index: 9999;
    padding: .5rem 1rem;
    background: #000;
    color: #fff;
    text-decoration: none;
}
.skip-link:focus { top: 0; }
