@charset "UTF-8";


:root {
    /*--recreatief-color: #b7cfed;*/
    /* kleur bepaald in liquid template */
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: color-mix(in srgb, var(--recreatief-color) 10%, white);
    /* Light background for the whole page */
    color: #000;
    line-height: 1.5;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.page-header {
    position: relative;
    width: 100%;
    overflow: visible;
    flex-shrink: 0;
}

.header-img {
    width: 100%;
    height: auto;
    display: block;
}


.home-button {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;     /*tijdelijk uitgeschakeld */
}

.home-button svg {
    width: 24px;
    height: 24px;
}



.main-wrapper {
    max-width: 1100px;
    margin-top: -7vw;
    /* Scales proportionally with the image width */
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    position: relative;
    z-index: 20;
}

.main-wrapper::before {
    content: '';
    position: absolute;
    top: 5px;
    /* Less high */
    left: 60px;
    /* Not exactly aligned on the left (sticks out) */
    right: 20px;
    height: 100%;
    background-color: var(--recreatief-color);
    /* Flatter wedge that sticks out */
    clip-path: polygon(0 5px, 100% 0px, 99% 99%, 0 100%);
    z-index: -1;
}

.content-card {
    background-color: #FFF;
    padding: 80px 80px 60px 80px;
    /* White box skew */
    clip-path: polygon(0 25px, 100% 0, 100% 100%, 0 100%);
}

.main-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-separator {
    border: none;
    border-top: 1px solid #000;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 60px;
    max-width: 900px;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 60px;
    margin-bottom: 40px;
    margin-top: 60px;
    align-items: flex-start;
}

.grid-container>div:last-of-type {
    background-color: var(--recreatief-color);
}


.card {
    background-color: color-mix(in srgb, var(--recreatief-color) 30%, white);
    padding: 50px 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: calc(33.3% - 40px);
}


.card-dark {
    background-color: var(--recreatief-color);
    /* Slightly darker blue */
}

.card h2 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    font-weight: 500;
}

.download-btn {
    position: absolute;
    bottom: -35px;
    /* Overlaps bottom edge */
    width: 70px;
    height: 70px;
    background-color: color-mix(in srgb, var(--recreatief-color) 75%, white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: transform 0.5s, background-color 0.5s;
}

.download-btn:hover {
    transform: translateY(5px);
    background-color: var(--recreatief-color);
}

.download-btn svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
    stroke-width: 1.5px;
}

.all-tasks-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Adjustments for smaller screens */
@media (max-width: 1000px) {
    .card {
        width: calc(50% - 30px);
    }


}

@media (max-width: 700px) {


    .content-card {
        padding: 50px 40px 40px 40px;
    }

    .card {
        min-height: 260px;
        width: 100%;
    }

    .logo {
        width: 200px;
        transform: scale(0.7);
        transform-origin: top right;
    }
}