/* Kontaktseite – page-spezifisch (Layout + Typografie) */

.kontakt-main{
  padding: 60px 0 80px;
}

.kontakt-wrap{
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.kontakt-grid{
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 24px;
}

@media (max-width: 900px){
  .kontakt-grid{ grid-template-columns: 1fr; }
}

/* Card-Optik */
.kontakt-card{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(199,160,90,.22);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  padding: 20px;
  color: #fff;
}

/* Überschriften: überall gleich groß (wie links) */
.kontakt-title{
/*  font-family: "Great Vibes", cursive;*/
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 44px);
  color: var(--gold);
  text-align: center;
  margin: 0 0 28px;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
}

/* Fließtext: überall gleich groß (wie links) */
.kontakt-text{
  margin: 0 0 12px;
  color: #e7f1f1;
  font-size: 16px;
  line-height: 1.55;
}

/* Links im Text: gold */
.kontakt-text a,
.kontakt-consent a,
.kontakt-footer a{
  color: #ffe7ad;
}

/* Formular */
.kontakt-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.kontakt-field label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffe7ad;
  margin-bottom: 6px;
}

.kontakt-field input,
.kontakt-field textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.15);
  color: #fff;
  font: inherit;
  box-sizing: border-box;
}

.kontakt-field textarea{
  min-height: 140px;
  resize: vertical;
}

/* Honeypot */
.kontakt-honeypot{
  display: none;
}

/* Consent */
.kontakt-consent{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.kontakt-consent input[type="checkbox"]{
  width: auto;
  margin-top: 3px;
}

.kontakt-consent label{
  font-size: 13px;
  line-height: 1.45;
  color: #e7f1f1;
}

.kontakt-hint{
  font-size: 13px;
  opacity: .85;
  margin: 0;
}

.kontakt-actions{
  margin: 10px 0 14px;
}

/* Footer */
.kontakt-footer{
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  color: #cdd9d9;
}
