.btn-primary {
    width: auto;
    max-width: 50%;
    padding-inline: 1rem;
    padding-block: 0.5rem;
    font-size: var(--font-size);
    color: var(--bg);
    background-color: var(--hf);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;


    &:hover,
    &:focus-visible {
        color: var(--bg);
        background-color: var(--vibrant);
    }
}

.btn-secondary {
    width: auto;
    max-width: 50%;
    margin-bottom: 2rem;
    padding-inline: 1rem;
    padding-block: 0.5rem;
    font-size: var(--font-size);
    color: var(--bg);
    background-color: var(--hf);
    border: solid;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1.5rem;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;

    &:hover,
    &:focus-visible {
        color: var(--bg);
        background-color: var(--vibrant);
        border: solid;
    }
}


.notification {
    padding-inline: 2rem;
    padding-block: 0.5rem;
    background-color: var(--vibrant);
    color: var(--bg);
    font-size: var(--font-size);
    font-weight: bold;
    border-radius: 0.2rem;
}

.cards {
    margin: 0;
    list-style: none;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    li {
        position: relative;
        flex-basis: 18rem;
        flex-shrink: 1;
        flex-grow: 1;
        background-color: #FFFFFF;
        width: 22rem;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        box-shadow: 0 0 .2rem rgb(0 0 0/ .2), 0 0 .2rem rgb(0 0 0/ .1);

        div {
            padding: 0;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        img {
            width: 100%;
            order: -1;
            height: auto;
        }

        h2, p {
            padding-inline: 1rem;
            color: var(--primary);
        }
    }
    .overlay-link {
        position: absolute;
        inset: 0;

        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;

        transition: background-color .2s ease-in-out;

        &:hover,
        &:focus-visible {
            background-color: rgba(96, 76, 135, 0.1);
        }
    }
}

.reviewcards {
    margin: 0;
    list-style: none;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    li {
        position: relative;
        flex-basis: 18rem;
        flex-shrink: 1;
        flex-grow: 1;
        background-color: #FFFFFF;
        width: 22rem;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        box-shadow: 0 0 .2rem rgb(0 0 0/ .2), 0 0 .2rem rgb(0 0 0/ .1);

        div {
            padding-block: 1rem;
            padding-inline: 0.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        h2 {
            margin: 0;
        }
    }
}

.horizontalecardslinks {
    margin-top: 2rem;
    margin-bottom: 5rem;
    margin-inline: 0;
    list-style: none;
    padding: 0;


    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;

    li {
        position: relative;
        flex-basis: 18rem;
        flex-shrink: 1;
        flex-grow: 1;
        background-color: #FFFFFF;
        width: 100%;
        height: 10rem;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 5rem;
        box-shadow: 0 0 .2rem rgb(0 0 0/ .2), 0 0 .2rem rgb(0 0 0/ .1);

        img {
            width: 32%;
            height: 100%;
            object-fit: cover;
            border-top-left-radius: 5rem;
            border-bottom-left-radius: 5rem;
        }

        div {
            padding: 2rem 1rem 1rem 3rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
    }
}

.klein {
    height: auto;
    width: 40%;
}

.schema {
    height: auto;
    width: 60%;
}
.bold {
    font-weight: bolder;
}

.contact {
    max-width: 80rem;
    margin: 0;
    background-color: #FFFFFF;
    list-style: none;


    input[type="text"], input[type="email"], textarea {
        width: calc(100% - 1.25rem);
        padding: 0.6rem;
        font-size: 1rem;
        margin: 0.3rem 0 1rem;
        border: 0.1rem solid #ccc;
        border-radius: 0.3rem;
        background-color: #f9f9f9;
        color: #333;

    }

    li:first-child {
        padding-top: 2rem;
    }

    div {
        padding: 1rem;
    }
}

.row{
    display: flex;
    gap: 1rem;

    > * {
        margin-block: 1rem;
        flex-grow: 1;

        &:first-child {
            flex-grow: 5;
        }

        ul {
            width: 10rem;
            height: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 0;
            list-style: none;

            li img {
                width: 4rem;
                height: 1.6rem;
            }
        }
    }
}


.skip-link {
    position: absolute;
    top: -4rem;
    left: 1rem;
    background: black;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
}

.skip-link:focus {
    top: 1rem;
}


.star-rating {
    display: inline-block;
    font-size: 2rem;
    margin: 0;
    cursor: pointer;
    color: #9c9b9b;
}
.star-rating .star {
    transition: color 0.2s;
    user-select: none;
}
.star-rating .star.filled {
    color: #eddc00;
}

.breadcrumbs {
    padding: 0;

    li {
        display: inline-block;
    }

    :not(:last-of-type)::after {
        content: '/';
        color: #474545;
    }

    a {
        text-decoration: none;
        color: #474545;

        &:hover {
            text-decoration: underline;
        }
    }
}

.breadcrumbs-link-active {
    color: #653408 !important;
    font-weight: bold;

}

form {
    background-color: white;
    padding-block: 0.5rem;
    padding-inline-start: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    box-shadow: 0 0 .2rem rgb(0 0 0/ .2), 0 0 .2rem rgb(0 0 0/ .1);
    div {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.75rem;

    &.radiobutton {
        flex-direction: row;
        align-items: center;
        margin-bottom: 0.5rem;
    }

        &.checkbox {
            flex-direction: row;
            align-items: flex-start;
            margin-block: 2rem;
        }
    }

    span.field-label,
    legend {
        display: block;
        font-size: 1.3rem;
        font-weight: 600;
    }

        span.field-error {
            display: inline-block;
            margin-top: 0.25rem;
        color: #970d0d;
        }

        span.field-hint {
            display: inline-block;
            margin: 0.25rem 0;
            color: #666;
        }
    }

    label {
        span.field-label {
            display: block;
            font-size: 1.3rem;
            font-weight: 600;
        }

        span.field-error {
            display: inline-block;
            margin-top: 0.25rem;
        color: #970d0d;
        }

        span.field-hint {
            display: inline-block;
            margin: 0.25rem 0;
        color: #666;
        }

        abbr {
            color: #970d0d;
            text-decoration: none;
        }
    }

    input, textarea {
        border: 0.1rem solid #ccc;
        font-size: 1.2rem;
        padding: 0.75rem;
        width: calc(100% - 1.5rem);
        box-sizing: border-box;
        resize: none;

    &.invalid {
        color: #970d0d;
        outline-color: #970d0d;
    }

        &[inputmode="numeric"] {
            width: 5rem;
        }

        &[type="radio"],
        &[type="checkbox"] {
            width: 1rem;
            height: 1rem;
            cursor: pointer;
        }

        &[type="radio"] + label,
        &[type="checkbox"] + label > span.field-label {
            font-size: 1rem;
            font-weight: normal;
            display: inline;
            cursor: pointer;
        }
    }

    fieldset {
        border: 0;
        padding: 0;
    }

@keyframes shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-0.2rem); }
    50%  { transform: translateX(0.2rem); }
    75%  { transform: translateX(-0.2rem); }
    100% { transform: translateX(0); }
}



.scheiding {
    border-block-end: 1px solid;
    padding-bottom: 6rem;
    color: var(--hf);
    max-width: none;
}
hr{
    margin-top: 5rem;
}

.centraal {
    position: relative;
    text-align: center;
    height: 40rem;
    overflow: hidden;

    h1 {
    margin-top: 17rem;
    position: relative;
    color: #ffffff;
    text-shadow: 0 0 8px #000000;
    z-index: 1;
    font-size: 3rem;
    }

    p {
        position: relative;
        color: #ffffff;
        text-shadow: 0 0 4px #000, 0 0 10px #000, 0 0 15px #000;
        z-index: 1;
        font-size: 1.5rem;
        font-weight: bolder;
    }
}

.bewerkteimg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    z-index: -1;
    filter: brightness(60%);
}

.field-error {
    display: block;
    color: #970d0d;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}
.invalid {
    border: 1px solid #970d0d;
    outline-color: #970d0d;
}

.card-animate {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

