/* ============================================================
   DMIS Consulting — dmispro.com
   Static site stylesheet
   Colors:
     Header Green #408800  header/nav bg (matches FFMS web header)
     Medium Green #3B9945  headings, links, dividers
     Light Green  #60B653  accents, hover
     Navy Blue   #012060  footer bg
     Bright Blue  #012F8D  footer accent
     Red         #9A2A1E  thin accent only
     White       #FFFFFF  page bg, body text areas
   ============================================================ */

/* ---- Reset & base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Typography ---- */
h2 {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3B9945;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #3B9945;
  text-decoration: none;
}

a:hover {
  color: #60B653;
  text-decoration: underline;
}

/* ---- Header ---- */
.site-header {
  background: #408800;
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #3B9945;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-name:hover {
  color: #ffffff;
  text-decoration: none;
}

.brand-tagline {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  color: #60B653;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #d8f0d3;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: #60B653;
  text-decoration: none;
}

/* ---- Opening section ---- */
.section-opening {
  padding: 3.5rem 0 3rem;
  background: #f7faf7;
}

.opening-statement {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #1a1a1a;
  font-style: normal;
  margin: 0;
}

/* ---- Section dividers ---- */
.section-divider {
  height: 4px;
  background: #3B9945;
  border: none;
  /* thin red accent stripe at the top */
  box-shadow: 0 -2px 0 0 #9A2A1E;
}

/* ---- Body sections ---- */
.section-body {
  padding: 3rem 0;
  background: #ffffff;
}

/* alternate background for visual rhythm */
.section-body:nth-of-type(odd) {
  background: #f7faf7;
}

/* ---- Plain-talk callout ---- */
.plain-talk {
  margin-top: 1.5rem;
  font-style: italic;
  color: #444;
}

/* ---- Contact section ---- */
.contact-list {
  list-style: none;
  margin: 1.2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.contact-label {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #408800;
  min-width: 3.5rem;
}

.contact-list a {
  font-size: 1.05rem;
  color: #3B9945;
}

.contact-list a:hover {
  color: #60B653;
}

.contact-note {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  margin-top: 1rem;
}

/* ---- Footer ---- */
.site-footer {
  background: #012060;
  border-top: 4px solid #012F8D;
  padding: 1.5rem 0;
}

.site-footer p {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  color: #a8b8d8;
  margin: 0;
}

.site-footer a {
  color: #a8b8d8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ---- Screenshots ---- */
.screenshot-wrap {
  max-width: 1060px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.screenshot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d0d8d0;
  border-radius: 3px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.13);
}

.screenshot-caption {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: #666;
  margin-top: 0.6rem;
  margin-bottom: 0;
  font-style: italic;
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav {
    gap: 1rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .opening-statement {
    font-size: 1.05rem;
  }

  .section-opening,
  .section-body {
    padding: 2.2rem 0;
  }

  .screenshot-wrap {
    padding: 0 1rem;
    margin-top: 1.5rem;
  }
}
