/* contact/contact.css — HGSS Contact page */


.contact-intro {
  font-size: 1em;
}

.contact a {
  font-size: 1em; /* override big link size from global */
}

.contact-form {
  width: 92%;
  margin: 18px auto 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95em;
  color: var(--secondary-color);
}

.req {
  color: var(--primary-color);
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: rgba(0,0,0,0.55);
  color: var(--secondary-color);
  font-family: var(--font-family);
  font-size: 0.95em;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-submit {
  align-self: center;
  padding: 10px 18px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  background: rgba(204, 0, 0, 0.2);
  color: var(--secondary-color);
  font-family: var(--font-family);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background: rgba(204, 0, 0, 0.35);
  text-decoration: none;
}

.message-success,
.message-error {
  width: 92%;
  margin: 18px auto;
  padding: 12px 14px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
  box-sizing: border-box;
}

.message-success {
  background: rgba(0, 80, 0, 0.35);
  color: var(--secondary-color);
}

.message-error {
  background: rgba(120, 0, 0, 0.35);
  color: var(--secondary-color);
}

/* honeypot hidden */
.hp {
  display: none;
}

.contact-footnote {
  font-size: 0.85em;
  color: var(--text-color);
  opacity: 0.9;
  margin-top: 18px;
}

/* Mobile small tweaks */
@media only screen and (max-width: 600px) {
  .contact-form,
  .message-success,
  .message-error {
    width: 96%;
  }
}