/* theme options */


/* custom CSS */
.hero-section {
  height: calc(100vh - 100px);
  min-height: 500px;
}

.hotel6-heading-decorative {font-family: Newsreader; font-style: italic;}

/* === Kontaktformular-Styling für Contact Form 7 === */
.wpcf7 form {
  font-family: inherit;
  color: #2d2e2a; /* Grundtext */
}

/* Eingabefelder */
.wpcf7-form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 10px 0 6px 0;
  font-size: 0.95rem;
  font-family: inherit;
  color: #2d2e2a;
  transition: all 0.3s ease;
}

.wpcf7-form-control:focus {
  outline: none;
  border-bottom-color: #6f755f; /* dein Oliv-Akzent */
  background: rgba(251, 238, 223, 0.2); /* zarter Beige-Hintergrund */
}

/* Labels */
.wpcf7 label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: #6f755f;
}

/* Fehlermeldungen */
.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #b54b4b;
  margin-top: 3px;
}

/* Nachricht nach Absenden */
.wpcf7-response-output {
  border: none;
  margin-top: 12px;
  font-size: 0.9rem;
  padding: 8px 0;
  color: #6f755f;
}

/* Submit-Button */
.wpcf7-submit {
  background: none;
  border: 1px solid #6f755f;
  color: #6f755f;
  padding: 10px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.wpcf7-submit:hover {
  background: #fbeedf;  /* dein helles Beige (#fbeedf) */
  color: #2d2e2a;
}

/* Checkboxen / Radiobuttons */
.wpcf7-list-item-label {
  color: #2d2e2a;
  font-size: 0.9rem;
}

/* Textarea */
textarea.wpcf7-form-control {
  min-height: 100px;
  resize: vertical;
}

/* Zweispaltiges Layout (wenn du z. B. Name + Surname nebeneinander hast) */
.wpcf7-form p {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wpcf7-form p > span {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .wpcf7-form p {
    flex-direction: column;
    gap: 12px;
  }
}


