/* =========================================
   Verdant Center — Wiki.js Blue Theme
   ========================================= */

:root {
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;

  --text-main: #1f2a3a;
  --text-mid: #4a5668;

  --accent: #1c4222;
  --accent-dark: #18381d7c;

  --border: #dce3ee;
  --shadow: rgba(0,0,0,0.06);
}

/* GLOBAL */

body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
  background: var(--bg-light);
  color: var(--text-main);
  padding-top: 0; /* NO pushing content down */
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER — SHORT, FIXED, NO GAP */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--accent-dark);
  color: #fff;
  text-align: center;
  margin: 0;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  box-shadow: 0 2px 6px var(--shadow);
  z-index: 2000;
  line-height: 1.1;
}

header h2,
header p {
  margin: 0;
  padding: 0;
}

/* BANNER — FLUSH WITH HEADER */

.banner {
  margin: 0;
  padding: 0;
  height: 220px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
}

/* MAIN CARD — OFFSET BELOW BANNER */

main {
  max-width: 900px;
  margin: 0.5em auto;
  padding: 1.5em 1.5em 2em;
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 0 8px var(--shadow);
}

/* HERO */

.hero {
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.hero-logo {
  width: 140px;
  margin: 0.3em auto;
  opacity: 0.9;
}

.hero-text {
  max-width: 700px;
  margin: 1em auto;
  color: var(--text-mid);
}

/* BUTTON */

.button {
  background: var(--accent);
  color: #fff;
  padding: 0.6em 1.3em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.button:hover {
  background: var(--accent-dark);
}

/* SPLIT SECTION */

.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5em;
  align-items: center;
  margin: 3em 0;
}

.split p {
  color: var(--text-mid);
}

@media (max-width: 700px) {
  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* FOCUS AREAS */

.focus-areas {
  display: flex;
  gap: 1.5em;
  margin: 3em 0;
}

.focus {
  flex: 1;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5em;
  text-align: center;
}

.focus h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  color: var(--accent-dark);
}

/* .focus .icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(73%)
          saturate(3740%) hue-rotate(209deg) brightness(96%) contrast(101%);
} */

.focus .icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(600%)
          hue-rotate(60deg) brightness(85%) contrast(95%);
}

/* VISION */

.internal {
  margin: 3em 0;
}

.internal .small-sub {
  color: var(--text-mid);
}

.vision-list {
  list-style: none;
  padding: 0;
}

.vision-list li {
  margin: 0.6em 0;
  padding-left: 1.2em;
  color: var(--text-mid);
  position: relative;
}

.vision-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* TONE */

.tone {
  text-align: center;
  margin: 3em 0;
}

.tone blockquote {
  color: var(--accent-dark);
  border-left: 4px solid var(--accent);
  max-width: 650px;
  margin: 0 auto 1em;
  padding-left: 1em;
}

/* CONTACT */

.intro {
  text-align: center;
}

/* FOOTER */

footer {
  background: var(--accent-dark);
  color: #fff;
  text-align: center;
  padding: 1em;
}



body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("soil_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 0.38; /* adjust until it feels right */
  z-index: -1;
}

.onboarding {
  margin: 3em 0;
  padding: 1.5em 1.5em 1.8em;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.onboarding .small-sub {
  color: var(--text-mid);
  margin-top: -0.3em;
  margin-bottom: 1em;
}

.onboard-list {
  list-style: none;
  padding: 0;
  margin: 1.2em 0;
}

.onboard-list li {
  margin: 0.6em 0;
  padding-left: 1.1em;
  position: relative;
  color: var(--text-mid);
}

.onboard-list li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}


/* Mobile default (your current design) */
.banner {
  height: 220px;
}

/* Desktop fix */
@media (min-width: 900px) {
  .banner {
    height: 300px; /* increase or decrease as needed */
  }
}











.contact-form-section {
  margin: 3em 0;
  padding: 1.5em 1.8em;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 0.3em;
}

.form-sub {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 1.5em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form label {
  font-weight: 500;
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65em 0.8em;
  font-size: 1em;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-white);
  color: var(--text-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.contact-form button {
  margin-top: 0.5em;
  background: var(--accent);
  color: #fff;
  padding: 0.75em;
  border-radius: 6px;
  border: none;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-form button:hover {
  background: var(--accent-dark);
}

.social-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
}

.social-link:hover {
  color: #d7ffd7;
}

