/* Kontaktformular Frontend Styles */

.kf-kontaktformular-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.kf-formular {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.kf-formular-gruppe {
    margin-bottom: 20px;
}

.kf-formular-gruppe label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.kf-required {
    color: #dc3545;
}

.kf-formular-gruppe input[type="text"],
.kf-formular-gruppe input[type="email"],
.kf-formular-gruppe textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.kf-formular-gruppe input:focus,
.kf-formular-gruppe textarea:focus {
    outline: none;
    border-color: #007bff;
}

.kf-formular-gruppe textarea {
    resize: vertical;
    min-height: 120px;
}

.kf-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.kf-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.kf-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 13px;
}

.kf-checkbox label a {
    color: #223B19;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.kf-checkbox label a:hover {
    opacity: 0.7;
}

.kf-submit-button {
    background: #223B19 !important;
    background-color: #223B19 !important;
    color: #fff !important;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kf-submit-button:hover {
    background: #1a2d13 !important;
    background-color: #1a2d13 !important;
}

.kf-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.kf-nachricht {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
}

.kf-nachricht.success {
    background: #B5DB9E;
    color: #155724;
    border: 1px solid #B5DB9E;
}

.kf-nachricht.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kf-kontaktformular-wrapper {
        padding: 10px;
    }
    
    .kf-formular {
        padding: 20px;
    }
    
    .kf-submit-button {
        padding: 12px 30px;
    }
}
