@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary-color: #002f6c;
    --primary-color-dark: #001f47;
    --secondary-color: #ffffff;
    --white-color: #ffffff;
    --text-color: #1f2937;
    --text-light: #f3f4f6;
    --muted-color: #6b7280;
    --success-color: #3f704d;
    --border-color: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.1rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 3rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-l: 20px;
    --border-radius-circle: 50%;

    --site-max-width: 1300px;
    --section-padding: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: var(--font-size-n);
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.container {
    width: min(100% - 40px, var(--site-max-width));
    margin: 0 auto;
}

.section {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

/* HEADER */
header {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.navbar {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-bold);
    color: var(--white-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 10px 18px;
    font-size: var(--font-size-n);
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--primary-color);
    background: var(--white-color);
}

.nav-link:focus-visible,
.btn:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--border-radius-m);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    transition: 0.25s ease;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.primary-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.secondary-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

/* HERO */
.hero {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("header.png") center/cover no-repeat;
    color: var(--white-color);
}

.hero-content {
    width: 100%;
    max-width: 700px;
    padding: 80px 0;
    margin: 10%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 16px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ONTDEK MEER */
.ontdek-meer {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.ontdek-meer h2,
.hulpdiensten h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--primary-color);
    margin-bottom: 24px;
}

.ontdek-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 48px;
}

.ontdek-meer p {
    font-size: var(--font-size-n);
    max-width: 720px;
}

/* IMAGE CIRCLE */
.image-circle {
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin-inline: auto;
    transition: transform 0.3s ease;
}

.image-circle:hover {
    transform: scale(1.03);
}

.image-circle.large {
    width: min(380px, 100%);
    aspect-ratio: 1 / 1;
}

.image-circle.small {
    width: 220px;
    aspect-ratio: 1 / 1;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FEATURES */
.features {
    background:
        linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
        url("../assets/image_06.png") center/cover fixed no-repeat;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 24px;
    border-radius: var(--border-radius-l);
    backdrop-filter: blur(2px);
}

.feature-box i {
    margin-bottom: 18px;
}

.feature-box p {
    font-size: var(--font-size-n);
}

/* HULPDIENSTEN */
.hulpdiensten-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dienst {
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: center;
    gap: 40px;
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: #fff;
}

.dienst:nth-child(even) {
    grid-template-columns: 260px 1fr;
}

.dienst:nth-child(even) .dienst-info {
    order: 2;
}

.dienst:nth-child(even) .image-circle {
    order: 1;
}

.dienst-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}


.status-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    height: 51px;
    background-color: var(--success-color);
    color: var(--white-color);
    font-size: 0.95rem;
}

.status-img {
    width: 20px;
    height: 20px;
}

.open {
    font-weight: var(--font-weight-bold);
}

.solliciteer-img {
    width: 20px;
    height: 20px;
}

/* CTA */
.cta {
    background:
        linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
        url("../assets/image_07.png") center/cover fixed no-repeat;
    color: #fff;
}

.cta h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: #f3f4f6;
}

/* FOOTER */
#footer {
    background: var(--primary-color);
    color: #fff;
    padding: 30px 0;
}

#footer .copyright {
    text-align: center;
    padding-top: 10px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 0.95rem;
    color: #e5e7eb;
}

#footer .credits a {
    color: #fff;
    text-decoration: underline;
}

#footer .credits a:hover {
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ontdek-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .dienst,
    .dienst:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dienst:nth-child(even) .dienst-info,
    .dienst:nth-child(even) .image-circle {
        order: initial;
    }

    .status-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .navbar {
        flex-direction: column;
        justify-content: center;
    }

    .nav-menu {
        justify-content: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .image-circle.large {
        width: min(280px, 100%);
    }

    .image-circle.small {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, var(--site-max-width));
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .dienst {
        padding: 22px 16px;
    }
}