/*
Theme Name: Settlement Theme
Theme URI: https://example.com/
Author: Settlement Team
Author URI: https://example.com/
Description: Minimal base theme for the Settlement site.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: settlement-base
*/

/* Basic reset and minimal layout */
:root {
  --color-primary: #16683F;
  --color-accent: #DD3143;
  --color-sectiontitle: #4BCA51;
  --color-paragraph: #495057;
  --color-secondary: #EBF3F0;
}
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}
.site-header,
.site-footer {
  padding: 1rem;
  background: #f5f5f5;
}
main.site-main {
  padding: 1rem;
}
.widget-title {
  margin-top: 0;
}
