
.hero-section {
  display: flex;
  justify-content: space-between;
background:
  url('../img/cloud1.svg') left 40px top 20px no-repeat,
  url('../img/cloud2.svg') right 60px top 80px no-repeat,
  url('../img/cloud3.svg') left 50% top 180px no-repeat,
  #fcf8ef;
  position: relative;
    min-height: 350px;
  overflow: hidden;
  padding: 2.5em 5em 1.2em 5em;
  border-bottom: 4px solid #0b5285;
  gap: 2.5em;
}

html.dark-mode .hero-section {
    background:
  url('../img/cloud1.svg') left 40px top 20px no-repeat,
  url('../img/cloud2.svg') right 60px top 80px no-repeat,
  url('../img/cloud3.svg') left 50% top 180px no-repeat,
  #575656;
    border-bottom: 4px solid #bada55;
}
.hero-content {
  flex: 1 1 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.hero-headline {
  font-family: 'Original Surfer', cursive, sans-serif;
  color: #0b5285;
  font-size: 2.8em;
  margin-bottom: 0.25em;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

html.dark-mode .hero-headline {
    text-shadow: 2px 2px 4px #000;

}
.hero-tagline {
  font-family: 'Lora', serif;
  color: #2e2e2e;
  font-size: 1.18em;
  margin-bottom: 0.2em;
}
html.dark-mode .hero-tagline {
    color: #fcf8ef;
}

.hero-form {
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  padding: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}
html.dark-mode .hero-form {
    background-color: transparent !important;
    border: 0 !important;
}

.hero-textarea {
  width: 95%;
  min-height: 88px;
  max-width: 100%;
  font-size: 1.15em;
  font-family: 'Lora', serif;
  padding: 1.1em 1.5em;
  border: 2.5px solid #bada55;
  border-radius: 2.4em 2.1em 2.8em 2.4em / 2.2em 2.8em 2.2em 2.7em;
  background: #fff url(/img/textarea-smile.webp) no-repeat right 18px bottom 14px;
  background-size: 100px auto;
  resize: vertical;
  box-shadow: 0 8px 28px 0 rgba(11, 82, 133, 0.09);
  outline: none;
  transition: box-shadow 0.18s;
}
html.dark-mode .hero-textarea {
    border: 2.5px solid #bada55 !important;
}
.g-recaptcha {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#char-counter {
      margin-left: auto;
  margin-right: auto;
}
.hero-privacy-msg {
  font-size: 0.95em;
  color: #333;
  margin-bottom: 0.25em;
  margin-left: 0.15em;
  opacity: 0.82;
}

html.dark-mode .hero-privacy-msg {
    color: #fcf8ef;
}
.hero-submit-button {
  background: #0b5285;
  color: #fff;
  font-family: 'Original Surfer', cursive, sans-serif;
  font-size: 1.15em;
  border: none;
  border-radius: 1.3em;
  padding: 0.75em 2.2em;
  margin-top: 0.1em;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(11, 82, 133, 0.14);
  transition: background 0.16s, transform 0.1s;
}
.hero-submit-button:hover, .hero-submit-button:focus {
  background: #bada55;
  color: #0b5285;
  transform: scale(1.04) rotate(-1deg);
}

.hero-cartoon {
  flex: 0 0 280px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-cartoon img {
  height: 90%;
}

.hero-divider {
  text-align: center;
  font-family: 'Original Surfer', cursive, sans-serif;
  font-size: 2em;
  color: #0b5285;
  background: #fcf8ef;
  border-bottom: 2px solid #bada55;
  padding: 0.4em 0 0.2em 0;
  letter-spacing: 0.01em;
  margin-bottom: 1.5em;
}
html.dark-mode .hero-divider {
    color: #fcf8ef;
    background: #1e1e1e;
}
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2em;
    padding: 2em 1em 1em 1em;
  }
  .hero-textarea {
      width: 85%;
  }
.hero-content {
  align-items: center;
}
  .hero-cartoon {
    display: none !important;
  }
  .hero-cartoon img {
    width: 160px;
    margin-bottom: -6px;
  }
  .hero-divider {
    font-size: 1.3em;
  }
}
