/* kontakt.css – Kontakt & Feedback, responsiv (mobile-first) */

.kt-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 18px 64px;
}

.kt-intro {
    font-size: 15px;
    line-height: 1.65;
    color: #1f2733;
}
.kt-intro h1 {
    font-size: 26px;
    line-height: 1.2;
    margin: 4px 0 14px;
    color: #1a1a1a;
}
.kt-intro p { margin: 0 0 12px; }
.kt-intro a { color: #c10925; text-decoration: underline; overflow-wrap: anywhere; }
.kt-intro a:hover { color: #9c0a20; }

/* Alerts */
.kt-alert {
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 14px;
}
.kt-alert.kt-ok  { background: #edf7f0; border: 1px solid #a3d9b1; color: #1a8f4c; }
.kt-alert.kt-err { background: #fdf0ee; border: 1px solid #f5b8ae; color: #c10925; }
.kt-alert ul { margin: 0; padding-left: 20px; }
.kt-alert li { margin: 2px 0; }

/* Formular */
.kt-form { margin-top: 18px; }

.kt-row { display: flex; gap: 14px; flex-wrap: wrap; }
.kt-row > .kt-field { flex: 1 1 220px; min-width: 0; }

.kt-field { margin-bottom: 14px; }
.kt-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444c57;
    margin-bottom: 5px;
}
.kt-field input,
.kt-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d4d9e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2733;
    background: #fff;
}
.kt-field input:focus,
.kt-field textarea:focus {
    outline: none;
    border-color: #c10925;
    box-shadow: 0 0 0 3px rgba(193, 9, 37, .12);
}
.kt-field textarea { resize: vertical; min-height: 150px; }

/* Honeypot: für Menschen unsichtbar */
.kt-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.kt-actions { margin-top: 6px; }
.kt-btn {
    border: 0;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #c10925;
    cursor: pointer;
}
.kt-btn:hover { background: #9c0a20; }

@media (max-width: 600px) {
    .kt-page { padding: 16px 14px 48px; }
    .kt-intro h1 { font-size: 23px; }
    .kt-btn { width: 100%; }
}
