/*************/
/* CSS RESET */
/*************/
*, *::after, *::before {
    box-sizing: border-box;  
}

*:focus-visible {
    outline: none;
}


button:not([disabled]) {
    cursor: pointer;
}

html, body {
height: 100%;
/* overflow: hidden; */
}

html {
    scroll-behavior: smooth;
}



/*********************/
/* CUSTOM PROPERTIES */
/*********************/

:root {
    /* Colors */
    /* General */
    --color-background: #FFFFFF;
    --color-wisteria: #B286E6;
    --color-blue: #2931AF;
    --color-green: #06D6A0;
    --color-cream: #f9f8fa;
    --color-white: #fff;
    --color-text-dark:black;
    --color-text-light:white;

    /* States */
    --color-nav: #2931AF;

    --color-button: #fff;
    --color-button-text: #fff;
    --color-button-hover: #fff;
    --color-button-text-hover: #fff;
    --color-link: #fff;
    --color-link-hover: rgb(21 116 21);
}



/***********/
/* STYLING */
/***********/

.cursor {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
    border: 3px solid var(--color-wisteria);
    border-radius: 100px;
    /* backface-visibility: hidden; */
    transition: transform 0.3s ease-out;
    z-index: 100;
  
    &.is-moving {
      transform: scale(0.7);
    }
}

h1, 
h2, 
h3,
a {
    font-family: neulis-neue, sans-serif, Arial, Helvetica;
    font-weight: 600;
    font-style: normal;
    text-transform: lowercase;
}

h4,
p,
li,
button {
    font-family: work-sans, sans-serif, Arial, Helvetica;
    font-weight: 400;
    font-style: normal; 
}

button,
a {
    cursor: url('../images/hand-pointer.svg'), auto;
}

p {
    font-size: 20px;
    line-height: 170%;
}

p.subtitle {
    font-size: 1.2rem;
}

ul {
    line-height: 200%;
    list-style-image: url("../images/bullet.svg");    
    margin-bottom: 48px;
}

ul li {
    padding-left: 8px;
}

a {
    text-decoration: none;
}

a.btn-primary {
    font-family: neulis-neue, sans-serif, Arial, Helvetica;
    font-weight: 500;
    color: var(--color-wisteria);

    padding: 16px 32px;
    border-radius: 32px;
    border: 3px solid var(--color-wisteria);
    position: relative;
    z-index: 1;
    
    width: 100%;
}

a.btn-primary::before {
    content: "";
    background-color: var(--color-wisteria);
    border-radius: 32px;

    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;

    opacity: 0;
    z-index: -1;
    transition: .25s cubic-bezier(0,.4,.47,1.1);
}

a.btn-primary:hover {
    color: var(--color-blue);
}

a.btn-primary:hover::before {
    width: 100%;
    opacity: 1;
}

a.btn-secondary {
    background-color: var(--color-wisteria);
    color: var(--color-blue);
    padding: 8px 16px;
    border-radius: 32px;
}

.btn-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-direction: flex-start;

    height: fit-content;
    width: fit-content;
}

.thumbnail {
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.fullWidth {
    width: 100%;
    height: 100%;

    padding: 0;
    margin: 0;
}

img.icon {
    width: 24px;
    height: auto;
}

.hidden {
    opacity: 0;
    transform: translate(0, 4em);
    transition: opacity .6s .1s ease, transform .6s ease-out;
}

.inView {
    opacity: 1 !important;
    transform: translate(0, 0);
}



/* SECTIONS */

body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--color-text);
    overflow-x: hidden;

    background-color: var(--color-background);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    cursor: url('../images/arrowhead-rounded-outline.svg'), auto;
}

main {
    width: 100%;
    background-color: var(--color-white);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* HEADER */
header {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    
    width: 100vw;
    padding: 32px 16px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    z-index: 5;
}

header .topbar #navlogo {
    width: 9em;
}

header .topbar #navlogo.scrolled {
    content: url(../images/Logo-FullMark-Background.svg);
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.16));
}

header .topbar button {
    height: fit-content;
    padding: 1em;

    background-color: var(--color-white);
    border: none;
    border-radius: 100%;
}

nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    height: fit-content;

    position: relative;
}

nav ul {
    position: fixed;
    left: 0;
    top: 0;
    /* bottom: 0; */
    right: 0;
    padding: 128px 16px 32px 16px;
    margin: 0;
    height: 100%;

    list-style: none;
    background-color: var(--color-wisteria);

    line-height: 250%;

    z-index: 4;
    transform: translateX(100%);
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

nav ul.showMenu {
    transform: translateX(0%);
}

nav ul li.nav-item {
    padding-left: 0;
    margin-bottom: 2em;
    position: relative;
}

nav ul li.nav-item.currentpage a {
    color: var(--color-blue);
}

nav ul li.nav-item a {
    font-size: 2em;
    color: var(--color-blue);
}


/* Current page */

.nav-item.currentpage::after {
    content: "";
    height: 4px;
    width: 24px;
    background-color: var(--color-blue);
    border-radius: 32px;

    position: absolute;
    bottom: 0;
    left: 1em;
    transform: translate(-50%, 0);
}

.section {
    background-color: var(--color-background);
    padding: 48px 16px;
    width: 100%;
    /* overflow-x: hidden; */
    transition: .5s ease-out;
}

.project {
    background-color: var(--color-blue);
    color: var(--color-text-light);
}

.twocolumns {
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.highlight {
    background-color: var(--color-white);
    color: var(--color-blue);
}

.twocolumns div.col {
    width: 100%;
    margin-bottom: 32px;
}


/* Subpage - Title section */
#headingtitle {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: var(--color-wisteria);

    padding-bottom: 0;
    padding-top: 120px;
}

#headingtitle h1 {
    color: var(--color-blue);
}



/* Home - Introduction */
.introduction {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--color-white);
    color: var(--color-blue);
}

.introduction > div {
    width: 100%;
    position: relative;
}

.introduction > div:first-of-type {
    height: fit-content;
}

/* .introduction > div:first-of-type::after {
    content: url(../images/Sticker-creatief.png);
    width: auto;
    height: auto;

    position: absolute;
    bottom: -2em;
    right: 0;
    transform: rotate(-5deg);
} */

.image-1 {
    z-index: 100;
    /* Image Introduction */
    background-image: url(../images/rosella-foto.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.introduction > div:nth-of-type(2) {
    margin: 32px 0;
}

/* Missie en Visie */
.mission {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.mission div.card {
    background-color: var(--color-blue);
    color: var(--color-text-light);
    padding: 16px 32px;
    border-radius: 16px;

    position: relative;
}

.mission div.card:nth-of-type(1):after {
    content: url(../images/Sticker-innovatief.png);

    position: absolute;
    top: -2em;
    right: -1em;

    transform: scale(.8) rotate(3deg);
}


.mission div.card:nth-of-type(2):after {
    content: url(../images/Sticker-professioneel.png);

    position: absolute;
    top: -2em;
    right: -1em;

    transform: scale(.7) rotate(4deg);

}


/* Projects on Home */
.projects {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;

    background-color: var(--color-white);
}

.projects h2 {
    color: var(--color-blue);
}

.projects > div:first-of-type {
    width: 100%;
    border-top: var(--color-blue) solid 2px;
}

#carousel {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 32px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#carousel > li {
    height: fit-content;
    width: 100%;
    padding: 0;
}

#carousel > li p {
    color: darkgray;
    margin: 4px 0px 12px 0px;
}

#carousel > li a {
    color: var(--color-blue)
}

#carousel > li h3 {
    margin: 12px 0px 4px 0px;
}

#carousel > li img {
    aspect-ratio: 16 / 9;
}

#tags {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

#tags li {
    /* Tag */
    padding: 2px 16px;
    height: fit-content;
    width: fit-content;
    margin: 0;

    background-color: var(--color-white);
    color: var(--color-wisteria);
    border: var(--color-wisteria) solid .5px;
    border-radius: 32px;
}




/* Diensten */
.diensten {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.diensten > div:nth-of-type(2) {
    width: 100%;
}
.diensten ul#card-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    list-style: none;
    padding-left: 0;
}

.diensten li.card {
    position: relative;

    width: 100%;
    padding: 2em;
    margin-bottom: 2em;
    border-radius: 32px;

    list-style: none;
    background-color: var(--color-white);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.16);
}

.diensten li.card img.sticker {
    /* sticker image */
    position: absolute;
    right: 2em;
    top: -2em;
    width: 6em;
    height: 6em;

    padding: 1em;
    border-radius: 100%;
    border: 8px solid var(--color-white);
    background-color: var(--color-green);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.16);
}

.diensten ul#card-list ul,
.contact-cta ul#contact-list {
    margin-bottom: 0;
}


/* Features */
.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    /* width: 99vw; */

    background-color: var(--color-white);
    color: var(--color-blue);
}

.features h2 {
    color: var(--color-blue);
}

.features > div:first-of-type {
    width: 100%;
    border-top: var(--color-blue) solid 2px;
}

.features > div:nth-of-type(2) {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
}

.features .left-column img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.features .right-column {
    width: 100%;
}

.features .right-column h2 {
    font-size: 48px;
    font-weight: bold;
    color: #2932af83;
    opacity: 1;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    margin: 0;
}

.features .right-column h2.active {
    color: var(--color-blue);
    cursor: url('../images/hand-pointer.svg'), auto;
}

@keyframes fadeUp {
    0% {
        opacity: 0.5;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up img,
.fade-up p {
    animation: fadeUp .6s ease-out;
}

.accordion {
    background: none;
    color: var(--color-blue);
    cursor: pointer;

    font-size: 20px;

    padding: 16px 20px;
    border-radius: 32px;
    width: 100%;
    /* box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.16); */

    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }

.accordion:after {
    content: '\02795'; /* "plus" sign (+) */
    font-size: 13px;
    color: #06D6A0;
    float: right;
    margin-left: 5px;
}

.accordion.active, .accordion:hover {
    background-color: #eeeeee;
}

.accordion.active:after {
    content: "\2796"; /* "minus" sign (-) */
}

#accordionHoverImage {
    display: none;
}

.panel {
    padding: 0 20px;
    /* background-color: white; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel ul {
    margin-bottom: 0;
}

.panel p {
    font-weight: 400;
}



/* Contact CTA */
.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: var(--color-blue);

}

.contact-cta h2,
.contact-cta .subtitle {
    color: var(--color-text-light);
    text-align: center;

}

.contact-cta > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

    position: relative;
}

.contact-cta > div:first-of-type img.sticker {
    transform: scale(0.8) translateY(-2em) rotate(-5deg);
    transition: ease-out .3s;
}

.contact-cta > div:first-of-type img.sticker:hover {
    transform: scale(0.9) translateY(-2em) rotate(5deg);
}

.contact-cta > div:nth-of-type(2) {
    width: 100%;
}

ul#contact-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;

    list-style: none;
    width: 100%;
    gap: 8px;
}

ul#contact-list li {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 0;
    padding: 8px 16px;
    border: 2px solid var(--color-green);
    border-radius: 32px;

    transition: 0.2s ease-out;
}

ul#contact-list a {
    color: var(--color-green);
}

ul#contact-list li:hover,
ul#contact-list li:active {
    transform: rotate(-4deg);
    border: 2px solid var(--color-white);
}

ul#company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2em 0;
    padding: 0;

    list-style: none;
    width: 100%;
    gap: 8px;
}

ul#company-info li p {
    color: var(--color-text-light);
    margin: 0;
}


.topper {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 0; */

    padding:0;
}

.topper div.topper-background {
    background-color: #B286E6;
    height: 9em;
    width: 100%;
}

.topper > div:nth-of-type(2) {
    width: 100%;
    padding: 48px 16px;
}

.topper h1,
.topper p.subtitle {
    text-align: center;
}

.topper h1 {
    color: var(--color-blue);
}

.topper p.subtitle {
    margin: 0;
}

.grid-gallery {
    width: 100%;
}

.grid-gallery ul {
    list-style: none;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2em;
}

.grid-gallery ul li {
    margin: 0;
    padding: 0;
    position: relative;

    background-color: var(--color-blue);
    border-radius: 2.5em;

    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.grid-gallery ul li a {
    color: var(--color-text-light);
}

.grid-gallery ul li .card-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;

    background-color: var(--color-blue);
    border-radius: 2.5em;
    padding: 2em;
    z-index: 1;
}

.grid-gallery ul li .card-overlay:hover {
    opacity: 1;
}

.grid-gallery img {
    width: 100%;
    height: auto;
    border-radius: 2em;
}






/* Home Header effect */
.content {
    height: 400px;
    overflow: hidden;
    width: 100%;
    padding: 16px;
    z-index: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-wisteria);
}

.big-wordmark {
    /* background-image: url("../images/Big-Wordmark.png");
    background-size: cover;
    background-repeat: no-repeat; */

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100vw;
    height: auto;
}

.content__title {
    z-index: 1;
    color: var(--color-blue);
}

.content__img {
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    border-radius: 16px;
}




/* FOOTER */
footer {
    background: var(--color-blue);

    width: 100%;
    padding: 16px 64px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p,
footer a,
footer button {
    color: var(--color-button);
    font-size: 16px;
}

footer button {
    width: fit-content;
    padding: 0;
    background: none;
    border: none;
}

footer button:hover {
    color: var(--color-green);
}


@media screen and (min-width: 50em) {

    h1 {
        font-size:64px;
        margin: .4em 0;
    }

    h2 {
        font-size:48px;
        margin: .4em 0;
    }

    h3 {
        font-size:32px;
        margin: .4em 0;
    }

    header { 
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100vw;
        height: fit-content;
    }

    header .topbar {
        width: 100%;
        padding: 16px 64px;
    }

    header .topbar button {
        display: none;
    }

    nav {
        width: 90vw;
        margin: 16px 24px;
    
        display: flex;
        align-items: center;
        
        position: fixed;
        top: 0;
        z-index: 100;
    }
    
    #navlogo {
        max-height: 64px;
    }
    
    nav ul {
        display: flex;
        width: fit-content;
        top: inherit;
        left: inherit;
        gap: 2em;
        height: fit-content;
        padding: 4px 32px;
        margin-top: 16px;
        margin-right: 32px;
        border-radius: 32px;
    
        transition: .25s cubic-bezier(0,.4,.47,1.2);
        transform: none;
        background-color: inherit;
    }
    
    nav ul.scrolled {
        background-color: var(--color-white);
        box-shadow: 0 6px 12px rgba(0,0,0,0.16);
    }
    
    nav ul li.nav-item {
        padding: 8px 8px;
        margin-bottom: 0;
        position: relative;

        transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    
    nav ul li.nav-item a {
        text-decoration: none;
        font-size: inherit;
        color: var(--color-blue);

        transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    
    .nav-item:hover {
        transform: translateY(-5px);
    }
    
    .nav-item:hover::after {
        content: "";
        display: block;
        background-color: var(--color-nav);
        border-radius: 8px;
        width: 16px;
        height: 4px;
        
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .nav-item.currentpage {
        transform: translateY(-5px);
        transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .nav-item.currentpage::after {
        left: 50%;
        
    }
    
    .nav-item.currentpage a {
        color:var(--color-nav);
    }

    .content {
        height: 100vh;
        justify-content: flex-end;
        flex-direction: row;
        padding: 4em;

    }

    .section {
        padding: 64px 64px;
    }

    .twocolumns {
        flex-direction: row;
        gap: 64px;
    }

    .twocolumns div.col {
        width: 50%;
    }

    .introduction {
        flex-direction: row;
        gap: 64px;
    }

    .introduction > div {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;

        gap: 16px;
        /* flex-wrap: wrap; */
        width: 100%;
    }

    .introduction h2 {
        font-size: 24px;
    }

    .introduction p {
        font-size: 32px;
        line-height: 120%;
    }

    .introduction > div:first-of-type {
        height: auto;
    }

    .introduction > div:nth-of-type(2) {
        margin: 32px 0;
    }

    .mission {
        flex-direction: row;
    }

    .mission > div {
        width: 50%;
    }

    div.section.projects {
        padding: 0px 64px 64px 64px;
    }
    

    /* .big-wordmark {
        bottom: -20%;
    } */

    /* .content::after {
        width: 50%;
    } */

    #carousel {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #carousel > li {
        width: 48%;
    }

    #carousel > li h3 {
        font-size:large;
    }

    #carousel > li img {
        transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    /* #carousel > li:hover {
        cursor: url('../images/pointed-arrow.svg'), auto;
    } */
    
    #carousel > li:hover img {
        transform: scale(0.98);
    }

    .diensten ul#card-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }

    .diensten li.card {
        width: 47%;
        margin-bottom: 1em;
    }

    .features {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }

    .features > div:nth-of-type(2) {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 64px;
    }

    .features > div.columns > div {
        width: 50%;
    }

    .features .right-column {
        width: 50%;
    }

    .features .right-column h2 {
        flex-direction: column;
        font-size: 80px;
        margin: 16px 0;
    }

    #accordionHoverImage {
        position: absolute; 
        display: none;
        z-index: 1000;
        width: 200px;
        border-radius: 8px;
        height: auto; 
        pointer-events: none;
    }

    .contact-cta {
        flex-direction: row;
        gap: 32px;
    }

    .contact-cta .subtitle {
        text-align: left;
    }

    .contact-cta > div {
        width: 50%;
    }

    .contact-cta > div:first-of-type {
        align-items: center;
    }

    ul#contact-list {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

    ul#company-info {
        align-items: flex-start;
    }

    ul#company-info li p {
        font-size: medium;
    }


    footer {
        position: relative;

        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        padding: 1em 2em;
        /* overflow-y: hidden; */
    }
}

@media screen and (min-width: 80em) {
    .section {
        padding: 88px 88px;
    }

    div.section.projects {
        padding: 0px 88px 88px 88px;
    }

}

@media screen and (min-width: 120em) {
    .section {
        padding: 120px 256px;
    }

    div.section.projects {
        padding: 0px 256px 120px 256px;
    }
}