/* ============================================================
   Seelenwohl Kontaktformular – swkf.css
   ============================================================ */

.swkf-wrapper {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

/* Felder */
.swkf-group {
    margin-bottom: 1.2em;
}

.swkf-group label {
    display: block;
    margin-bottom: .4em;
    font-weight: 600;
    font-size: .95em;
    color: #333;
}

.swkf-optional {
    font-weight: 400;
    font-size: .85em;
    color: #888;
}

.swkf-group input[type="text"],
.swkf-group input[type="email"],
.swkf-group input[type="tel"],
.swkf-group textarea {
    width: 100%;
    padding: .75em 1em;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    background: #fff;
    color: #222;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.swkf-group input:focus,
.swkf-group textarea:focus {
    border-color: #6a8b7f;
    box-shadow: 0 0 0 3px rgba(106, 139, 127, .18);
}

.swkf-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* Status-Nachricht */
.swkf-status {
    padding: .85em 1.1em;
    border-radius: 6px;
    margin-bottom: 1em;
    font-size: .95em;
    line-height: 1.5;
}

.swkf-status.swkf-success {
    background: #eaf5f0;
    border: 1px solid #7ec8a8;
    color: #1e6045;
}

.swkf-status.swkf-error {
    background: #fff0f0;
    border: 1px solid #e08080;
    color: #7a1f1f;
}

/* Sende-Button */
.swkf-submit {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    padding: .8em 2em;
    background: #6a8b7f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.swkf-submit:hover {
    background: #547265;
}

.swkf-submit:active {
    transform: scale(.97);
}

.swkf-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
}

/* Spinner (CSS-only) */
.swkf-btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: swkf-spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes swkf-spin {
    to { transform: rotate(360deg); }
}
