/* =========================================================
   Stay in Touch Section
   - Inside box/panel: red
   - Inside box corners: square
   - First 4 volunteer checkboxes: 2 columns (5th spans full)
   - Submit button: taller, auto width, larger/bold text
   ========================================================= */

#stay-in-touch.sit {
  /* Keep your section background (was var(--dark-blue) in your file) */
  background-color: var(--dark-blue);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

/* Red panel container (INSIDE BOX) */
#stay-in-touch .sit__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.75rem);

  /* panel color */
  background: var(--red);

  /* square corners (was 18px) */
  border-radius: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Title */
#stay-in-touch .sit__title {
  text-align: center;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin: 0 0 1.6rem 0;
}

#stay-in-touch .sit__form {
  width: 100%;
}

/* Grid for inputs */
#stay-in-touch .sit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.5rem;
}

@media (max-width: 860px) {
  #stay-in-touch .sit__grid {
    grid-template-columns: 1fr;
  }
}

/* Fields */
#stay-in-touch .sit__field {
  display: flex;
  flex-direction: column;
}

#stay-in-touch .sit__field--full {
  margin-top: 1rem;
}

/* Hide labels visually but keep for accessibility */
#stay-in-touch .sit__label {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inputs */
#stay-in-touch .sit__input,
#stay-in-touch .sit__textarea {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: #ffffff;
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  outline: none;
  color: #222;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

#stay-in-touch .sit__input::placeholder,
#stay-in-touch .sit__textarea::placeholder {
  color: #666;
}

#stay-in-touch .sit__input:focus,
#stay-in-touch .sit__textarea:focus {
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(255, 255, 255, 0.18);
}

#stay-in-touch .sit__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checks */
#stay-in-touch .sit__check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  color: #fff;
}

#stay-in-touch .sit__check--small {
  margin-top: 0.85rem;
}

#stay-in-touch .sit__checkbox {
  margin-top: 0.2rem;
  width: 20px;
  height: 20px;
  accent-color: var(--red);
  flex: 0 0 auto;
}

#stay-in-touch .sit__checklabel {
  font-size: 1.05rem;
  line-height: 1.35;
}

#stay-in-touch .sit__checklabel a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Help section */
#stay-in-touch .sit__help {
  margin-top: 1.25rem;
}

#stay-in-touch .sit__helpTitle {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 0.5rem;
}

#stay-in-touch .sit__helpSub {
  font-weight: 500;
  opacity: 0.95;
  font-size: 1.25rem;
}

/* ✅ First 4 checkboxes in 2 columns */
#stay-in-touch .sit__helpGrid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

#stay-in-touch .sit__helpGrid .sit__check {
  margin-top: 0; /* grid handles spacing */
}

/* ✅ Make ONLY the 5th item full width, so the first 4 are the 2-column block */
#stay-in-touch .sit__helpGrid .sit__check:nth-child(5) {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  #stay-in-touch .sit__helpGrid {
    grid-template-columns: 1fr;
  }

  #stay-in-touch .sit__helpGrid .sit__check:nth-child(5) {
    grid-column: auto;
  }
}

/* Consent block */
#stay-in-touch .sit__consent {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1rem;
}

/* Actions */
#stay-in-touch .sit__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

/* ✅ Submit button: taller + auto width + bigger/bolder text */
#stay-in-touch .sit__submit {
  appearance: none;
  border: 0;
  cursor: pointer;

  background: var(--white);
  color: var(--red);

  /* bigger + bold */
  font-weight: 900;
  font-size: 1.25rem;

  /* taller button */
  padding: 1.05rem 1.6rem;
  line-height: 1;

  /* auto width (minimum needed for text) */
  width: fit-content;

  border-radius: 0;
  letter-spacing: 0.04em;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: transform 120ms ease, filter 120ms ease, opacity 120ms ease;
}

#stay-in-touch .sit__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

#stay-in-touch .sit__submit:active {
  transform: translateY(0px);
  opacity: 0.95;
}

/* Status line */
#stay-in-touch .sit__status {
  margin-top: 0.9rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}

/* ===== Volunteer form: white panel + black text + red border ===== */

#stay-in-touch .sit__container {
  /* was: background: var(--red); */
  background: #fff;
  border: 3px solid var(--red); /* red border around the form */
  border-radius: 0;

  /* keep a softer shadow now that the panel is white */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Title + all “text” areas should be black */
#stay-in-touch .sit__title {
  color: #111; /* was #fff */
}

#stay-in-touch .sit__check {
  color: #111; /* was #fff */
}

#stay-in-touch .sit__helpTitle {
  color: #111; /* was #fff */
}

#stay-in-touch .sit__helpSub {
  color: #111;
  opacity: 0.75;
}

#stay-in-touch .sit__status {
  color: #111; /* was rgba(255,255,255,0.95) */
}

/* Links in consent area: readable on white */
#stay-in-touch .sit__checklabel a {
  color: var(--red); /* was #fff */
}

/* Consent divider should be darker (was white-ish) */
#stay-in-touch .sit__consent {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

/* Inputs: keep white background, black text, and use red focus */
#stay-in-touch .sit__input,
#stay-in-touch .sit__textarea {
  background: #fff;
  color: #111;
  border: 2px solid rgba(0, 0, 0, 0.18); /* was rgba(255,255,255,0.25) */
  box-shadow: none;
}

#stay-in-touch .sit__input:focus,
#stay-in-touch .sit__textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.18); /* soft red ring */
}

/* Submit button: make it visible on white (optional but recommended) */
#stay-in-touch .sit__submit {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}
