 /*
Theme Name: wpforge
Theme URI: https://wpforge.net/
Author: WPForge
Description: Minimal, fast classic theme for WPForge.
Version: 1.0.0
Text Domain: wpforge
*/

/* Basic reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

/* Layout */
.wf-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wf-header, .wf-footer {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.wf-footer { border-top: 1px solid #eee; border-bottom: 0; margin-top: auto; }

.wf-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 12px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
}

.wf-brand {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.5px;
}

.wf-brand a { color: inherit; text-decoration: none; }

.wf-nav {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.wf-nav a { color: #111; text-decoration: none; opacity: .85; }
.wf-nav a:hover { opacity: 1; text-decoration: underline; }

.wf-main { background: #fff; }

/* Content */
.wf-content h1, .wf-content h2, .wf-content h3 { letter-spacing: -0.2px; }
.wf-content a { color: #0b57d0; }

/* Full-bleed helper (edge-to-edge) */
.wf-bleed {
  width: 100vw;