


    /* Default KUNIMUS world base */
    .bodyCONTACT {    
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      background: #000000 url('pic/derKLANGmaster_KUNIMUS_BG_003.jpg') no-repeat center center fixed;
      background-size: cover;
      color:#eeeeee;
      min-height: 100vh;
      /* display: flex;*/
      flex-direction: column;     
    }


/* Imprint + Kontaktform Karten */
.imprint-card,
.contact-card {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background: #eeeeee;   /* einheitlicher Pastell-Hintergrund */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* sanfter Schatten */
  font-family: Arial, sans-serif;
  color: #111111;           /* gleiche Textfarbe */
}

/* Überschriften */
.imprint-card h2,
.contact-card h2 {
  margin-top: 0;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  color: #999999;
}

.imprint-card h4,
.contact-card h4 {
  margin-bottom: 5px;
  color: #000000;
}

/* Absätze */
.imprint-card p,
.contact-card p {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.imprint-card a,
.contact-card a {
  color: #5190f5;
  text-decoration: none;
}

.imprint-card a:hover,
.contact-card a:hover {
  text-decoration: underline;
}

/* Kontaktformular Felder */
.contact-form {
  width: 100%;           /* passt sich der Karte an */
}

.form-field,
.form-textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-textarea {
  height: 120px;
  resize: none;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.form-label {
  font-size: 14px;
  margin-bottom: 6px;
}

.submit-btn {
  background: #5190f5;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}

.submit-btn:hover {
  background: #4178d4;
}

.error-message {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}

.honeypot {
  display: none;
}
