/*
Theme Name: bemazal
Theme URI: https://example.com/
Author: You
Author URI: https://example.com/
Description: Minimal, modern starter theme for classic + block editor. No build step required.
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Version: 1.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-starter-base
Tags: starter-theme, block-editor, accessibility-ready
*/
*/
/* Basic reset & typography */
:root{
  --font-base: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  --max-w: 72rem;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: var(--font-base);
  line-height: 1.6;
  color: #111;
  background: #fff;
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 1rem; }
.site-header, .site-footer { padding: 1rem 0; }
.site-header a { text-decoration: none; color: inherit; }
nav ul { list-style: none; padding:0; margin:0; display:flex; gap:.75rem; flex-wrap: wrap; }
a { color: #0a66c2; }
a:hover { text-decoration: underline; }
.entry-title { margin-top: 0; }
.wp-starter-skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.wp-starter-skip-link:focus{
  position:static; width:auto; height:auto; padding:.5rem; background:#000; color:#fff;
}
