/* Contact Form - Ananke Theme Compatible */
.fs-form {
  display: grid;
  row-gap: 1.5rem;
  max-width: 600px;
  margin: 2rem 0;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-label {
  color: #333; /* Matches Ananke's text */
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-description {
  color: #777; /* Ananke's muted text */
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fs-input,
.fs-textarea {
  appearance: none;
  border-radius: 0.25rem;
  border: 1px solid #ddd; /* Ananke's border color */
  color: #333;
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all 0.15s ease-in; /* Matches Ananke transitions */
}

.fs-input:focus,
.fs-textarea:focus {
  border-color: #357edd; /* Ananke's link blue */
  box-shadow: 0 0 0 2px rgba(53, 126, 221, 0.1);
}

.fs-textarea {
  min-height: 120px;
  resize: vertical;
}

.fs-button-group {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.fs-button {
  background-color: #000; /* Ananke's header black */
  border: none;
  border-radius: 0.25rem;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.15s ease-in;
  text-transform: uppercase; /* Ananke style */
  letter-spacing: 0.1em; /* Ananke's tracked spacing */
}

.fs-button:hover {
  background-color: #357edd; /* Ananke's blue on hover */
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
