@charset "utf-8";
/* CSS Document */
:root {
  --max: 1100px;
  --pad: 1rem;
  --ink: #0d1b2a;
  --muted: #666;
  --brand: #2f855a;
  --brand2: #276749;
  --grass: #3a9d23;
  --grass-dark: #33881f;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body { margin: 0; height: 100%; }
body {
  font: 16px/1.6 system-ui, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
  color: var(--ink);
  background: #fff url('/images/cont-bak.jpg') no-repeat left center fixed;
  background-size: 15%;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.header-top { display: flex; align-items: center; gap: 1rem; padding: 1rem var(--pad); background: rgba(255,255,255,0.9); border-bottom: 1px solid #ddd; }
.header-top h1 { font-size: 1.5rem; margin: 0; }

/* Full-width grass navbar */
.navbar { width: 100%; background: linear-gradient(to bottom, var(--grass), var(--grass-dark)); border-bottom: 2px solid #2a6b18; box-shadow: 0 2px 6px rgba(0,0,0,.15); position: relative; z-index: 100; }
.nav-inner { width: 100%; display: flex; justify-content: center; padding: .75rem var(--pad); }
.nav-menu { list-style: none; display: flex; gap: 0.5rem 1rem; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-menu > li { flex: 0 0 auto; }
.nav-menu a { color: #fff; font-weight: 600; padding: 0.5rem 0.75rem; border-radius: 6px; transition: background .25s ease, transform .2s ease; text-decoration: none; }
.nav-menu a:hover { background: rgba(255,255,255,0.2); transform: translateY(-1px); }

/* Body link animations (navbar untouched) */
main a {
  position: relative; color: var(--brand); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(47,133,90,.4);
  transition: color .25s ease, text-decoration-color .25s ease, transform .2s ease;
}
main a:hover { color: var(--brand2); text-decoration-color: var(--brand2); transform: translateY(-1px); }
main a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:100%; background: currentColor; transform: scaleX(0); transform-origin:left; transition: transform .25s ease; }
main a:hover::after, main a:focus-visible::after { transform: scaleX(1); }
main a:focus-visible { outline: 2px solid var(--brand2); outline-offset: 2px; }

/* Content panels */
main { padding: 2rem var(--pad); background: rgba(255,255,255,0.85); border-radius: 12px; margin-left: 35%; }
.card { margin-bottom: 1.5rem; }

/* Fade-in effect for footer text */
.site-footer {
  background: transparent;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  opacity: 0;                          /* start invisible */
  animation: footerFadeIn 2.5s ease-out forwards; /* fade in on load */
}
/* Officer list in two neat columns with decorative bullets */
.officers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .35rem .75rem;
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
}

.officers li {
  position: relative;
  padding-left: 1.3rem;          /* space for bullet */
  line-height: 1.4;
  word-break: break-word;
}

/* small green leaf bullet before each officer */
.officers li::before {
  content: "🌿";                 /* or "🍃" for variation */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #3a9d23;                /* matches navbar grass green */
}

/* single-column layout on small screens */
@media (max-width: 600px) {
  .officers {
    grid-template-columns: 1fr;
  }
}

/* Keyframes for the fade */
@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);       /* slight upward motion */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px){
  body { background-size: cover; background-position: center top; }
  main { margin-left: 0; }
}

