/* ===========================
   Formulieren – Alles over Oostenrijk stijl
   (voor .mk-form: mediakit + contact)
   Version: 2026-01-27 — dark mode readability
   =========================== */

/* Basis container */
.mk-form {
    max-width: 680px;
    margin: 24px 0;
    padding: 20px;
    border: 1px solid var(--aoo-border);
    border-radius: 12px;
    background: var(--aoo-surface);
    color: var(--aoo-fg);
}

/* Ruimte tussen form rows */
.mk-form p {
    margin: 0 0 16px;
}

/* Labels */
.mk-form label {
    display: inline-block;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
}

/* Inputs / textarea */
.mk-form input[type="text"],
.mk-form input[type="email"],
.mk-form input[type="tel"],
.mk-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 12px;
    border: 1px solid var(--aoo-border);
    border-radius: 10px;
    background: var(--aoo-surface);
    color: var(--aoo-fg);
    font-size: 16px;
    line-height: 1.4;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Textarea */
.mk-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Focus state – rustig, professioneel */
.mk-form input[type="text"]:focus,
.mk-form input[type="email"]:focus,
.mk-form input[type="tel"]:focus,
.mk-form textarea:focus {
    outline: none;
    border-color: var(--aoo-border);
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.18);
}

/* Placeholder */
.mk-form ::placeholder {
    opacity: 0.6;
}

/* Checkboxes (privacy / no-linktrade) */
.mk-form input[type="checkbox"] {
    transform: translateY(1px);
    margin-right: 8px;
}

/* Checkbox regels: iets compacter, prettig leesbaar */
.mk-form p label input[type="checkbox"] {
    margin-right: 10px;
}

.mk-form p label {
    max-width: 100%;
}

/* Links in checkbox-tekst */
.mk-form a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mk-form a:hover {
    text-decoration-thickness: 2px;
}

/* Button – duidelijke CTA, maar niet schreeuwerig */
.mk-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid var(--aoo-border);
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.06s ease, opacity 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.mk-form button[type="submit"]:hover {
    opacity: 0.92;
}

.mk-form button[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

/* Success message (komt uit je PHP) */
.mk-success {
    border-radius: 12px;
    font-weight: 600;
}

/* Foutmeldingen (als je later client-side errors toevoegt) */
.mk-form .mk-error {
    padding: 10px 12px;
    border: 1px solid rgba(180, 0, 0, 0.25);
    background: rgba(180, 0, 0, 0.06);
    border-radius: 12px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 640px) {
    .mk-form {
        padding: 16px;
        border-radius: 10px;
    }

    .mk-form button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}