/* Atlanta Greenspace — site stylesheet */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1e2b1a;
  background: #f7f9f4;
}

a { color: #2e6b35; text-decoration: none; }
a:hover { text-decoration: underline; color: #1a4520; }

/* Layout container */
.ags-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Top ribbon */
.ags-ribbon {
  background: #2e6b35;
  color: #d6ead8;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 7px 0;
}
.ags-ribbon a { color: #a8d6ac; }
.ags-ribbon a:hover { color: #fff; }

/* Site header */
.ags-masthead {
  background: #1a3d1e;
  padding: 24px 0 20px;
  border-bottom: 3px solid #4a9b53;
}
.ags-masthead-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ags-logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.ags-site-name {
  font-size: 1.75rem;
  font-weight: bold;
  color: #e8f5e9;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.ags-site-name:hover { color: #fff; text-decoration: none; }
.ags-site-tagline {
  display: block;
  font-size: 0.82rem;
  color: #81c784;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* Primary navigation */
.ags-primary-nav {
  background: #245229;
  border-bottom: 1px solid #3a7a42;
}
.ags-primary-nav .ags-wrap {
  display: flex;
  gap: 0;
  align-items: center;
}
.ags-primary-nav a {
  display: inline-block;
  color: #c8e6ca;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  padding: 11px 16px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.ags-primary-nav a:hover,
.ags-primary-nav a.ags-active {
  color: #fff;
  border-bottom-color: #81c784;
  text-decoration: none;
}

/* Hero banner */
.ags-hero {
  background: linear-gradient(160deg, #2e6b35 0%, #1a4520 60%, #0d2b10 100%);
  color: #e8f5e9;
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.ags-hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -30px;
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.ags-hero h1 {
  font-size: 2.1rem;
  line-height: 1.25;
  max-width: 640px;
  margin-bottom: 14px;
  color: #f1f8e9;
}
.ags-hero-deck {
  font-size: 1.05rem;
  color: #a5d6a7;
  max-width: 580px;
  margin-bottom: 24px;
  font-family: Arial, Helvetica, sans-serif;
}
.ags-hero-btn {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 11px 26px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.ags-hero-btn:hover { background: #388e3c; color: #fff; text-decoration: none; }

/* Two-column body */
.ags-body-grid {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 36px;
  padding: 38px 0 50px;
  align-items: start;
}

/* Park directory cards */
.ags-section-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4caf50;
  display: block;
  margin-bottom: 10px;
}
.ags-col-heading {
  font-size: 1.35rem;
  color: #1a3d1e;
  border-bottom: 2px solid #c8e6ca;
  padding-bottom: 8px;
  margin-bottom: 22px;
}

/* Park card grid */
.ags-park-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 42px;
}
.ags-park-card {
  background: #fff;
  border: 1px solid #c8e6ca;
  border-top: 3px solid #4a9b53;
  border-radius: 2px;
  padding: 18px 16px 14px;
}
.ags-park-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.ags-park-card h3 {
  font-size: 1rem;
  color: #1a3d1e;
  margin-bottom: 6px;
}
.ags-park-card h3 a { color: #1a3d1e; }
.ags-park-card h3 a:hover { color: #2e6b35; }
.ags-park-card-tag {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #66bb6a;
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}
.ags-park-card p {
  font-size: 0.88rem;
  color: #4a5d48;
  line-height: 1.55;
}

/* Article list (latest) */
.ags-article-feed {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ags-article-feed li {
  border-bottom: 1px solid #e0eedd;
  padding: 16px 0;
}
.ags-article-feed li:last-child { border-bottom: none; }
.ags-entry-meta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: #6a8c6e;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.ags-article-feed h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.35;
}
.ags-article-feed h3 a { color: #1a3d1e; }
.ags-article-feed h3 a:hover { color: #2e6b35; }
.ags-article-feed p {
  font-size: 0.875rem;
  color: #4a5d48;
  line-height: 1.55;
  margin: 0;
}

/* Sidebar */
.ags-sidebar {
  /* stacks below main on small screens */
}
.ags-sidebar-block {
  background: #fff;
  border: 1px solid #c8e6ca;
  border-radius: 2px;
  padding: 18px 16px;
  margin-bottom: 20px;
}
.ags-sidebar-block h4 {
  font-size: 0.95rem;
  color: #1a3d1e;
  border-bottom: 1px solid #e0eedd;
  padding-bottom: 7px;
  margin-bottom: 12px;
}
.ags-sidebar-block p {
  font-size: 0.84rem;
  color: #4a5d48;
  line-height: 1.6;
}
.ags-sidebar-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ags-sidebar-block ul li {
  padding: 4px 0;
  border-bottom: 1px solid #f0f7f0;
  font-size: 0.84rem;
}
.ags-sidebar-block ul li:last-child { border-bottom: none; }

.ags-callout {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  border-radius: 2px;
  padding: 16px 14px;
  margin-bottom: 20px;
}
.ags-callout p {
  font-size: 0.84rem;
  color: #2e4d2e;
  margin: 0;
  line-height: 1.55;
}

/* Section page listing */
.ags-section-listing {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ags-section-listing li {
  background: #fff;
  border: 1px solid #c8e6ca;
  border-left: 4px solid #4a9b53;
  border-radius: 2px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.ags-section-listing h2 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.ags-section-listing h2 a { color: #1a3d1e; }
.ags-section-listing h2 a:hover { color: #2e6b35; }
.ags-section-listing p {
  font-size: 0.87rem;
  color: #4a5d48;
  line-height: 1.55;
  margin: 0;
}

/* Article page */
.ags-article-body {
  max-width: 760px;
  background: #fff;
  border: 1px solid #c8e6ca;
  border-radius: 2px;
  padding: 34px 38px 40px;
  margin: 36px auto 50px;
}
.ags-article-kicker {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #4caf50;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.ags-article-body h1 {
  font-size: 1.85rem;
  line-height: 1.25;
  color: #1a3d1e;
  margin-bottom: 12px;
}
.ags-article-standfirst {
  font-size: 1.05rem;
  color: #3a5e3c;
  line-height: 1.6;
  border-bottom: 1px solid #e0eedd;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.ags-pub-line {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: #6a8c6e;
  display: block;
  margin-bottom: 24px;
}
.ags-article-body p {
  margin-bottom: 1.1em;
  color: #1e2b1a;
}
.ags-article-body h2 {
  font-size: 1.25rem;
  color: #1a3d1e;
  margin: 1.8em 0 0.6em;
  padding-top: 0.2em;
}
.ags-article-body h3 {
  font-size: 1.05rem;
  color: #245229;
  margin: 1.4em 0 0.5em;
}
.ags-article-body ul, .ags-article-body ol {
  margin: 0.7em 0 1.1em 1.5em;
}
.ags-article-body li { margin-bottom: 0.35em; }
.ags-article-body strong { color: #1a3d1e; }
.ags-article-body em { color: #3a5e3c; }

.ags-article-nav {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #e0eedd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
}
.ags-article-nav a { color: #2e6b35; }

/* About / Contact pages */
.ags-page-body {
  max-width: 760px;
  margin: 36px auto 50px;
}
.ags-page-body h1 {
  font-size: 1.7rem;
  color: #1a3d1e;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c8e6ca;
}
.ags-page-body h2 {
  font-size: 1.15rem;
  color: #245229;
  margin: 1.6em 0 0.5em;
}
.ags-page-body p { margin-bottom: 1em; color: #1e2b1a; }
.ags-page-body ul { margin: 0.6em 0 1em 1.4em; }
.ags-page-body li { margin-bottom: 0.35em; color: #1e2b1a; }

/* Contact form */
.ags-contact-form { margin-top: 26px; }
.ags-field-group { margin-bottom: 18px; }
.ags-field-group label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.83rem;
  font-weight: bold;
  color: #245229;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.ags-field-group input,
.ags-field-group select,
.ags-field-group textarea {
  width: 100%;
  border: 1px solid #b0cfb4;
  border-radius: 3px;
  padding: 9px 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: #1e2b1a;
  background: #fafcfa;
}
.ags-field-group input:focus,
.ags-field-group select:focus,
.ags-field-group textarea:focus {
  outline: none;
  border-color: #4a9b53;
  background: #fff;
}
.ags-field-group textarea { height: 130px; resize: vertical; }
.ags-form-submit {
  display: inline-block;
  background: #2e6b35;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 11px 28px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.ags-form-submit:hover { background: #1a4520; }

/* Footer */
.ags-footer {
  background: #1a3d1e;
  color: #81c784;
  padding: 28px 0 24px;
  margin-top: 10px;
}
.ags-footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ags-footer-nav a {
  color: #a5d6a7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.83rem;
}
.ags-footer-nav a:hover { color: #fff; text-decoration: none; }
.ags-footer-disc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  color: #558b5a;
  line-height: 1.55;
  max-width: 700px;
}

/* Responsive */
@media (max-width: 740px) {
  .ags-body-grid {
    grid-template-columns: 1fr;
    padding: 26px 0 36px;
  }
  .ags-park-grid { grid-template-columns: 1fr; }
  .ags-hero h1 { font-size: 1.55rem; }
  .ags-article-body { padding: 22px 18px 28px; }
  .ags-footer-nav { gap: 14px; }
}
