/*
Theme Name: Daedalus WorkBench
Theme URI: https://daedalusworkbench.com
Author: Robert Whitten
Author URI: https://daedalusworkbench.com
Description: A custom WordPress Full Site Editing (FSE) block theme for Daedalus WorkBench, LLC. Modern editorial design — type-driven, generous whitespace, soft hierarchy. Owned by Robert Whitten, founded 2026.
Version: 1.1.0
Requires at least: 6.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: daedalus-workbench
Tags: custom-colors, custom-menu, custom-logo, editor-style, full-site-editing, block-patterns, block-templates, accessibility-ready, translation-ready

Theme built with WordPress Full Site Editing (FSE).
theme.json drives all design tokens; custom CSS in this file is intentionally minimal.
v1.1 — modernized visual treatment: lighter hero, no bordered cards, more
typographic rhythm, single hairline dividers instead of boxes.
*/

/* =====================================
   Custom-property overrides (theme.json preset alignment)
   ===================================== */
:root {
  --wp--preset--font-family--body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wp--preset--font-family--headings: Iowan Old Style, "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif;
  --wp--preset--font-family--display: Iowan Old Style, "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif;
  --wp--preset--font-family--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* =====================================
   Global niceties
   ===================================== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-feature-settings: "ss01", "ss02", "cv01", "cv11";
}

/* Editorial: tighter line-height on display, looser on body */
h1, h2, h3 {
  font-feature-settings: "ss01", "ss02";
}

/* Generous selection color */
::selection {
  background: var(--wp--preset--color--forge);
  color: var(--wp--preset--color--paper);
}

/* Links: subtle, no underline until hover */
a {
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, currentColor 30%, transparent);
  transition: text-decoration-color 200ms ease, color 200ms ease;
}
a:hover {
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
}

/* Subtle button feel without the boxy solid-fill default */
.wp-block-button__link {
  border-radius: 999px;
  padding-inline: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.wp-block-button__link:hover {
  transform: translateY(-1px);
}

/* Cover block: dial down to gentle, not a giant block */
.wp-block-cover {
  min-height: 30vh;
}
.wp-block-cover.alignfull {
  min-height: 40vh;
}

/* Quote / pull-quote editorial styling */
.wp-block-quote {
  border-left-width: 0;
  font-style: normal;
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Mono labels (eyebrows) */
.has-mono-font-family {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =====================================
   Print styles
   ===================================== */
@media print {
  body { background: #ffffff; color: #000000; }
  .wp-block-button,
  .wp-block-post-meta,
  .wp-block-post-terms,
  nav.wp-block-navigation { display: none !important; }
  a { color: #000000; text-decoration: underline; }
}
