/* ============================================================
   KONTAKT.CSS — Contact form section
   Vidai AG · vidai.ch
   ============================================================ */

#kontakt {
  background: var(--black);
  text-align: center;
}

#kontakt .s-title {
  color: var(--white);
}

#kontakt .s-sub {
  color: rgba(247,246,242,0.5);
  margin: 0 auto 48px;
}

/* ── FORM ── */
.kontakt-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.4);
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(247,246,242,0.2);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(192,57,43,0.6);
  background: rgba(255,255,255,0.08);
}

.form-field textarea {
  min-height: 120px;
}

/* ── SUBMIT ── */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: rgba(247,246,242,0.25);
  font-weight: 300;
  max-width: 240px;
  line-height: 1.5;
}

/* ── SUCCESS STATE ── */
.form-success {
  display: none;
  padding: 24px;
  border: 1px solid rgba(45,90,61,0.4);
  background: rgba(45,90,61,0.08);
  text-align: center;
}

.form-success p {
  color: var(--green-light);
  font-size: 15px;
  font-weight: 300;
}

.form-success.visible {
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
