/*
Theme Name: WF Clean Theme
Theme URI: https://blueeclipse.ca/
Author: Blue Eclipse
Author URI: https://blueeclipse.ca/
Description: Minimal clean WordPress theme designed to work well with block-based imported layouts and custom page builders/plugins.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: wf-clean-theme
*/

:root {
  --wf-site-max: 1200px;
  --wf-space: 1.5rem;
  --wf-text: #222;
  --wf-muted: #666;
  --wf-border: #e5e5e5;
  --wf-bg: #fff;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--wf-text);
  background: var(--wf-bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.site-header,
.site-footer {
  border-color: var(--wf-border);
  border-style: solid;
  background: #fff;
}
.site-header { border-width: 0 0 1px; }
.site-footer { border-width: 1px 0 0; }
.wf-wrap {
  width: min(calc(100% - 2rem), var(--wf-site-max));
  margin: 0 auto;
}
.site-header-inner,
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.site-branding {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.site-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
}
.site-description {
  margin: 0;
  color: var(--wf-muted);
  font-size: .95rem;
}
.site-navigation ul,
.footer-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-navigation a,
.footer-navigation a { text-decoration: none; }
.site-main { min-height: 50vh; }
.entry-content,
.archive-content,
.search-content,
.error-404 { padding: 2rem 0; }
.entry-header,
.page-header { padding: 2rem 0 1rem; }
.entry-title,
.page-title { margin: 0; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.alignwide {
  width: min(calc(100% - 2rem), 1400px);
  margin-left: auto;
  margin-right: auto;
}
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.wp-block-group.alignfull,
.wp-block-cover.alignfull,
.wp-block-image.alignfull img {
  max-width: 100vw;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wf-canvas-mode .site-main,
.wf-canvas-template .site-main { min-height: 100vh; }
.wf-canvas-mode .entry-content,
.wf-canvas-template .entry-content,
.wf-template-canvas .entry-content {
  padding: 0;
}
.wf-canvas-mode .wf-wrap,
.wf-canvas-template .wf-wrap,
.wf-template-canvas .wf-wrap {
  width: 100%;
  max-width: none;
}

@media (max-width: 782px) {
  .site-header-inner,
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
