/* Clean Joomla Template v1.0 - K2B-Media */

:root {
    --page-background: #ffffff;
    --text-color: #1f2937;
    --border-color: #e5e7eb;
    --focus-color: #0057d9;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body.clean-joomla-template {
    background: var(--page-background);
    color: var(--text-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

.site-wrapper {
    width: 100%;
    min-height: calc(100vh - 64px);
}

/* Hero / responsive afbeelding */
.hero {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero picture {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Contactformulier */

.contact-section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0f172a;
}

.contact-section {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 72px;
}

.form-title {
    margin: 0 0 30px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
}

.contact-section button,
.contact-section input[type="submit"],
.contact-section .btn,
.contact-section .button {
    background: #004C97;
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    padding: 14px 24px;
    font-weight: 700;
    cursor: pointer;
}

.contact-section button:hover,
.contact-section input[type="submit"]:hover,
.contact-section .btn:hover,
.contact-section .button:hover {
    background: #003A73;
}

.site-footer {
    padding: 22px 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
}

.error-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .contact-section {
        padding: 32px 16px;
    }
}