/* === KONTAKTSEITE === */

.contact-hero {
  background: linear-gradient(135deg, #18ccf0, #80129b);
  color: white;
  padding: 100px 20px 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Formularbereich */
.contact-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
}

button.btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #2f4f96;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button.btn:hover {
  background-color: #18ccf0;
}

#form-status {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}

.privacy-consent {
  margin: 20px 0;
  font-size: 0.9rem;
  color: #444;
}

.privacy-label {
  display: grid;
  grid-template-columns: 20px 1fr; /* Checkbox-Spalte + Text-Spalte */
  gap: 10px;
  align-items: start;             /* Text bleibt stabil */
  line-height: 1.45;
  cursor: pointer;
}

.privacy-label input[type="checkbox"] {
  margin-top: 2px;                /* optisch auf erste Textzeile ausrichten */
}

.privacy-label a {
  color: #2f4f96;
  text-decoration: underline;
}

/* Disabled-Style, überschreibt .btn */
button.btn:disabled,
.btn[disabled] {
  background: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
  color: #666 !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Optional: damit Hover nicht mehr greift */
button.btn:disabled:hover,
.btn[disabled]:hover {
  transform: none !important;
  filter: none !important;
}