/*
Theme Name: GEO Seeding Prototype
Theme URI: https://mijnipad.net/
Author: CSEC3888 TH9-03
Description: An original, accessible technology-blog theme for the GEO Seeding Prototype.
Version: 1.0.0
Requires at least: 6.8
Requires PHP: 8.2
License: GNU General Public License v2 or later
Text Domain: geo-seeding-prototype
*/

:root {
  --ink: #17212b;
  --muted: #586574;
  --paper: #fff;
  --canvas: #e9edf1;
  --brand: #123f67;
  --brand-dark: #092b49;
  --accent: #b44322;
  --rule: #c9d1d9;
  --shadow: 0 2px 8px rgb(19 38 55 / 12%);
}

* { box-sizing: border-box; }
html { font-size: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}
a { color: #075d9b; text-decoration-thickness: .08em; text-underline-offset: .15em; }
a:hover, a:focus { color: var(--accent); }
img { max-width: 100%; height: auto; }
.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;
}
.screen-reader-text:focus {
  position: fixed; z-index: 100000; top: 1rem; left: 1rem; width: auto; height: auto;
  padding: .75rem 1rem; clip: auto; color: #fff; background: #000;
}
.site-header { color: #fff; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); border-bottom: 5px solid var(--accent); }
.masthead { max-width: 1180px; margin: 0 auto; padding: 2.15rem 1.25rem 1.65rem; }
.site-title { margin: 0; font: 700 clamp(2rem, 5vw, 3.35rem)/1.05 Arial, sans-serif; letter-spacing: -.04em; }
.site-title a { color: #fff; text-decoration: none; }
.site-description { max-width: 50rem; margin: .6rem 0 0; color: #d9e9f5; font-family: Arial, sans-serif; }
.primary-nav { background: #102c44; }
.primary-nav .menu { display: flex; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; padding: 0 1rem; list-style: none; }
.primary-nav a { display: block; padding: .8rem .85rem; color: #fff; font: 700 .9rem Arial, sans-serif; text-decoration: none; }
.primary-nav a:hover, .primary-nav a:focus { background: #fff; color: var(--brand-dark); }
.site-grid { display: grid; grid-template-columns: minmax(0, 1fr) 19rem; gap: 2rem; max-width: 1180px; margin: 2rem auto; padding: 0 1.25rem; }
.content-area, .sidebar .widget { background: var(--paper); border: 1px solid var(--rule); box-shadow: var(--shadow); }
.content-area { min-width: 0; padding: clamp(1.2rem, 3vw, 2.4rem); }
.page-header { padding-bottom: 1rem; border-bottom: 3px double var(--rule); }
.page-title { margin: 0; font: 700 1.8rem/1.2 Arial, sans-serif; }
.post-card { padding: 0 0 2rem; margin: 0 0 2rem; border-bottom: 1px solid var(--rule); }
.post-card:last-child { margin-bottom: 0; border-bottom: 0; }
.entry-title { margin: 0 0 .45rem; font: 700 clamp(1.55rem, 3vw, 2.25rem)/1.15 Arial, sans-serif; letter-spacing: -.025em; }
.entry-title a { color: var(--brand-dark); text-decoration: none; }
.entry-title a:hover, .entry-title a:focus { color: var(--accent); text-decoration: underline; }
.entry-meta, .entry-taxonomy { color: var(--muted); font: .88rem/1.5 Arial, sans-serif; }
.entry-thumbnail { display: block; margin: 1.1rem 0; }
.entry-thumbnail img { display: block; width: 100%; border: 1px solid #b6c0c9; }
.entry-content { font-size: 1.06rem; }
.entry-content h2, .entry-content h3 { color: var(--brand-dark); font-family: Arial, sans-serif; line-height: 1.25; }
.entry-content blockquote { margin-left: 0; padding-left: 1.2rem; border-left: 4px solid var(--accent); color: #394958; }
.read-more { font: 700 .9rem Arial, sans-serif; }
.sidebar { min-width: 0; }
.sidebar .widget { padding: 1rem 1.1rem; margin-bottom: 1.25rem; }
.widget-title { margin: 0 0 .7rem; padding-bottom: .45rem; border-bottom: 2px solid var(--accent); font: 700 1.05rem Arial, sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.widget ul { padding-left: 1.1rem; margin-bottom: 0; }
.search-form { display: flex; gap: .4rem; }
.search-field { min-width: 0; flex: 1; padding: .55rem; border: 1px solid #778595; font: inherit; }
.search-submit { padding: .55rem .8rem; border: 0; color: #fff; background: var(--brand); font-weight: 700; cursor: pointer; }
.nav-links { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; font-family: Arial, sans-serif; }
.site-footer { padding: 1.8rem 1.25rem; color: #d9e9f5; background: var(--brand-dark); font: .9rem Arial, sans-serif; }
.site-footer-inner { max-width: 1180px; margin: 0 auto; }
.site-footer a { color: #fff; }

@media (max-width: 780px) {
  .site-grid { grid-template-columns: 1fr; margin-top: 1rem; padding: 0 .75rem; }
  .primary-nav .menu { display: block; padding: .25rem .75rem; }
  .primary-nav a { padding: .65rem .5rem; }
  .masthead { padding-top: 1.5rem; }
}

