/* Basic */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: #FAFAF7;
  font-family: system-ui, sans-serif;
  color: #222;
}

/* NAV */
.site-header {
  background: #124734;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
}

.top-nav a {
  color: #F7F3EA;
  font-size: 0.9rem;
  text-decoration: none;
}

.top-nav a:hover {
  text-decoration: underline;
}

/* BANNER */
.hero-banner {
  position: relative;
  width: 100%;
  height: 170px; /* thin banner */
  background: linear-gradient(
    90deg,
    #124734 0%,
    #1d5c42 40%,
    #2c7b57 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BUTTERFLY ON LEFT */
.hero-butterfly {
  position: absolute;
  left: 10px;
  bottom: 0;
  height: 100%;   /* scales to banner height */
  width: auto;
  z-index: 2;
}

/* CENTERED TEXT */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #F7F3EA;
  max-width: 80%;
}

/* BORDER FRAME BEHIND TEXT */
.hero-content--framed {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.25);
}

.hero-content h1 {
  margin: 0;
  font-size: 1.6rem;
}

/* MAIN CONTENT */
.page-content {
  padding: 2rem 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.cta-box {
  background: #F7F3EA;
  border-left: 6px solid #E98A1A;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
}

/* BUTTON */
.btn-action {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: #E98A1A;
  color: #124734;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
}

.btn-action:hover {
  background: #F2A645;
}

/* FOOTER */
.site-footer {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: #124734;
  color: #F7F3EA;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 600px) {

  .hero-banner {
    height: 150px;
  }

  .hero-butterfly {
    left: 5px;
    height: 100%;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }
}
.button {
  display: inline-block;
  background-color: #2a7f62;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #22664f;
}

