/*Add your custom css here. This will override any existinc thems css*/
/* Anpassungen Homepage */
.navbar-header {
    display: inline-flex;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #ed1f2b;
  }
  .homescreenimg {
    position: relative;
  }

.homescreenimg:hover .overlay {
    opacity: 1;
  }

  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

.panel:hover,.panel:focus,.panel:active {
    box-shadow: none;
}

/* Anpassungen einzelner Post   */
.post-title {
  text-decoration: none;
}

.imgright {
  float: right;
}

td {
  padding: 5px;
}

blockquote {
  background-color: aliceblue;
}

/* ── Kontaktformular ─────────────────────────────────────────────────────── */

/* Honeypot – für echte Nutzer komplett unsichtbar */
.hp-field {
  display: none !important;
}

/* Abschnitt gesamt */
.kontakt-section {
  margin-top: 50px;
  padding: 50px 0 60px;
  background-color: #f9f9f9;
  border-top: 3px solid #ed1f2b;
}

/* Überschrift & Einleitung */
.kontakt-header {
  margin-bottom: 35px;
}

.kontakt-header h2 {
  font-size: 2em;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.kontakt-lead {
  font-size: 1.05em;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}

/* Status-Banner */
.kontakt-alert {
  margin-bottom: 25px;
  border-radius: 3px;
}

/* Formular-Felder – Bootstrap 3 form-control Override */
#kontakt-formular .form-control {
  border-radius: 3px;
  border-color: #ccc;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#kontakt-formular .form-control:focus {
  border-color: #ed1f2b;
  box-shadow: 0 0 0 3px rgba(237, 31, 43, 0.15);
  outline: none;
}

/* Bootstrap 3 Validierungszustände */
#kontakt-formular .has-error   .form-control:focus { box-shadow: 0 0 0 3px rgba(169, 68, 66, 0.2); }
#kontakt-formular .has-success .form-control:focus { box-shadow: 0 0 0 3px rgba(60, 118, 61, 0.2); }

/* Labels */
#kontakt-formular .control-label {
  font-weight: 600;
  color: #333;
}

/* Pflichtfeld-Stern */
.pflichtfeld {
  color: #ed1f2b;
  font-weight: 700;
}

/* Optional-Hinweis neben Label */
.optional {
  font-weight: 400;
  font-size: 0.88em;
  color: #888;
}

/* Zeichenzähler unter Textarea */
.zeichen-zaehler {
  display: block;
  text-align: right;
  font-size: 0.82em;
  color: #999;
  margin-top: 4px;
}

.zeichen-zaehler--kritisch {
  color: #c0392b;
  font-weight: 600;
}

/* Datenschutz-Hinweis */
.datenschutz-hinweis {
  font-size: 0.85em;
  color: #888;
  margin-bottom: 0;
}

.datenschutz-hinweis a {
  color: #888;
  text-decoration: underline;
}

.datenschutz-hinweis .fa {
  margin-right: 4px;
}

/* Absenden-Button */
.btn-kontakt {
  background-color: #ed1f2b;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px 40px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease, transform 0.1s ease;
  min-width: 200px;
}

.btn-kontakt:hover,
.btn-kontakt:focus {
  background-color: #c41722;
  color: #fff;
  outline: none;
}

.btn-kontakt:active {
  background-color: #a8141e;
  transform: translateY(1px);
}

.btn-kontakt:disabled,
.btn-kontakt[disabled] {
  background-color: #ccc;
  color: #fff;
  cursor: not-allowed;
  transform: none;
}

/* Pflichtfeld-Hinweis unterhalb des Buttons */
.pflichtfeld-hinweis {
  text-align: center;
  font-size: 0.82em;
  color: #aaa;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Responsive: auf kleinen Screens etwas mehr Luft */
@media (max-width: 600px) {
  .kontakt-section {
    padding: 35px 15px 45px;
  }

  .btn-kontakt {
    width: 100%;
  }
}