/*
Theme Name: GreensShare
Theme URI: https://example.com/greensshare
Author: GreensShare
Author URI: https://example.com
Description: Minimal classic theme skeleton for GreensShare.
Version: 0.1.7
Text Domain: greensshare
*/

/* Base Styles */
:root {
  --gs-primary: #218721;
  --gs-accent: #d7c59a;
  --gs-frame: #efe5d3;
  --gs-text: #1f291c;
  --gs-bg: #f7f5f0;
  --gs-page-bg: #f7f5f0;
  --gs-shell: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gs-text);
  background: var(--gs-page-bg);
  line-height: 1.6;
}

a {
  color: var(--gs-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}
