/*Google fonts lettertype url*/
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Merriweather", serif;
}



/*Themakleuren portfolio*/
:root{
    --bg-color: #283c37; /*Hoofd achtergrondkleur*/
    --snd-bg-color: #1E2E38; /* Secundair achtergrondkleur*/
    --text-color: #fff; /*Tekstkleur*/
    --main-color: #89baac; /*Hoofdkleur*/
}

/*Home section pagina*/
html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    height: 100vh; 
    color: var(--text-color);  
}

section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
}



.navbar a{
    position: relative;
    font-size: 1.5rem;
    font-family: "Nunito", sans-serif;
    color: var(--text-color);
    text-decoration: none;
    margin-left: 4rem;
    font-weight: 700;
}

.navbar a:hover ,
.navbar a.active {
    color: var(--main-color);
}

.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

#menu-icon{
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

.home {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 150px;
    position: relative; 
}

.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(40, 60, 55, 0.8)), url('Portfolio-images/natuur.png');
    background-size: cover;
    background-position: center;
    filter: blur(3px); 
    transition: filter 0.5s ease;
    z-index: -1; 
}

.home-content h3{
    font-size: 3.6rem;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
}

.home-content h3:nth-of-type(2){
    margin-bottom: 2.5rem;
}

span{
    color: var(--main-color);
}

.home-content h1 {
    font-size: 6.2rem;
    font-weight: 700;
    line-height: 1.3;
}


/*Start pagina afbeelding met animatie*/
.start-image {
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0px;
    right: 80px;
}

.start-image img {
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    transition: bottom 1s, left 1s;
}

@keyframes flowerAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.start-image img.vorm {
    animation: flowerAnimation 5s infinite;
}

.start-image:hover .vorm {
    bottom: 40px;
}

.start-image:hover .portret {
    left: 45%;
}




.home-content p{
    font-size: 1.6rem;
    font-family: "Nunito", sans-serif;
}

.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.social-media a:hover {
    background: var(--main-color);
    color: var(--snd-bg-color);
    box-shadow: 0 0 1rem var(--main-color);
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
    font-family: "Nunito", sans-serif;
}

.btn:hover {
    box-shadow: none;
}

.aboutme {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: #374b47;
    background-image: linear-gradient( rgba(0, 0, 0, 0.9), rgba(27, 41, 37, 0.8)), url('Portfolio-images/bloemen.png');
}

.about-img img {
    width: 35vw;
    animation: floatAnimation 3s infinite alternate;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); } 
    50% { transform: translateY(-10px); } 
    100% { transform: translateY(0); } 
}


.heading{
    text-align: center;
    font-size: 4.5rem;
}

.about-content h2{
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 2.6rem;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
    font-family: "Nunito", sans-serif;

}








.learningoutcomes {
    margin-bottom: -2rem;
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(40, 60, 55, 0.8)), url('Portfolio-images/natuur.png');
    background-position: center;
    background-size: cover;
}

.outcomes-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.outcomesdesc {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    color: #fffefe;
    margin-bottom: 20px; 
    text-align: center; 
  }
  
.outcomes-container .outcomes-box {
    flex: 1 1 35rem;
    height: 20rem;
    background: var(--snd-bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: .5s ease;
}

.outcomes-container .outcomes-box:hover {
    border-color: var(--main-color);
    transform: scale(1.02);
}

.outcomes-box i {
    font-size: 7rem;
    color: var(--main-color)
}

.outcomes-box a {
    color: #ffffff; 
}

.outcomes-box h3 {
    color:#d1e9e2;
    font-size: 2.9rem;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    margin-top: 50px;
}

.projects {
    background: #374b47;
    background-image: linear-gradient( rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('Portfolio-images/bloemen.png');
}

.portfolio h2 {
    margin-bottom: 4rem;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    gap: 2.5rem;
}

.portfolio-container .portfolio-box{
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0 1rem var(--bg-color);
    overflow: hidden;
    display: flex;
}

.portfolio-box img{
    width: 100%;
    transition: .5s ease;
    opacity: 0.7;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

.portfolio-box .portfolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), var(--main-color));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(100%);
    transition: .5s ease;
}

.portfolio-box:hover .portfolio-layer {
    transform: translateY(0);
}

.portfolio-layer h4 {
    font-size: 3rem;
}

.portfolio-layer p{
    font-size: 1.6rem;
    margin: .3rem 0 1rem;
}

.portfolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--text-color);
    border-radius: 50%;
}

.portfolio-layer a i{
    font-size: 2rem;
    color: var(--snd-bg-color);
}

::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-track{
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(#498a77, #1E2E38);
    border-radius: 10px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: var(--snd-bg-color);
}

.footer-text {
    font-size: 1.6rem;
    font-family: "Nunito", sans-serif;
    display: flex;
    justify-content: space-between; 
}

.footer-text p {
    font-size: 1.6rem;
    font-family: "Nunito", sans-serif;
    margin-right: 20px;
}


.footer-iconTop {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .8rem 1rem;
    background: var(--main-color);
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-iconTop a:hover {
    box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--snd-bg-color);
}

/* Responsive Hoofdpagina alleen*/
/* Tot 1200px */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

/* Tot 991px */
@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3%;
    }

    .learningoutcomes {
        padding: 7rem;
    }

    .projects {
        padding-bottom: 7rem;
    }

    .footer {
        padding: 2rem 3%;
    }
}

/* Tot 768px */
@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0,0,0,0.2);
        box-shadow: 0.5rem 1rem rgba(0,0,0,0.2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    .home {
        flex-direction: column;
        padding-left: 3%; /* Aanpassing voor centreren */
        text-align: center; /* Tekst centreren op kleinere schermen */
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 4.5rem; /* Verkleind voor kleinere schermen */
    }

    .home-content {
        order: 2;
    }

    .start-image {
        width: 90%;
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 4rem; /* Afstand bovenaan */
    }

    .aboutme {
        flex-direction: column;
        padding: 4rem 0;
    }

    .about-img img {
        width: 90%;
        max-width: 450px;
        margin-top: 4rem;
    }

    .learningoutcomes {
        padding: 5rem 0;
    }

    .portfolio h2 {
        margin-bottom: 3rem;
    }

    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tot 617px */
@media (max-width: 617px) {
    .portfolio-container {
        grid-template-columns: 1fr;
    }

    .start-image {
        width: 80%;
        max-width: 350px;
        margin-top: 8rem;
    }

    .about-img img {
        width: 100%;
        max-width: 450px;
        margin-top: 4rem;
    }

    .home-content h1 {
        font-size: 3.6rem; /* Nog verder verkleind voor kleinere schermen */
    }
}


/*Leeruitkomst 1 styling*/
.interactivemedia {
    width: 100%;
    padding: 80px 0px;
    min-height: 100vh;
    background-image: linear-gradient( rgba(0, 0, 0, 0.893), rgba(40, 60, 55, 0.893)), url('Portfolio-images/bcklo3.png');
    background-size: cover; 
    background-position: center;
}

.interactivemedia img {
    height: auto;
    width: 600px;
    margin-top: 150px;
}

.media-text {
    width: 600px;
    height: auto;
    overflow: hidden;
    margin-top: 2710px; 
}

.main-lo {
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.media-text h1 {
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 50px;
    text-transform: capitalize;
    margin-top: 30px; 
}

.media-text h4 {
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.media-text p {
    font-family: "Nunito", sans-serif;
    color: aliceblue;
    font-size: 13px;
    margin-bottom: 20px;
}

.pdf-wikipedia {
    background: #498a77;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 8px 20px; 
    border-radius: 30px;
    transition: .4s;
    display: inline-block; 
}

.pdf-wikipedia a {
    color: white; 
    font-family: "Nunito", sans-serif;
    font-size: 13px;
}

.pdf-wikipedia:hover {
    background: transparent;
    border: 2px solid #374b47;
    cursor: pointer;
}


.interactive-img img {
    height: auto;
    width: 90px;
    margin-top: 150px;
    margin-left: 0; 
}



/* Leeruitkomst 3 body styling */
body.iterativebody {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: #374b47;
    padding: 0 1.5rem;
    font-family: "Nunito", sans-serif;
}

/* Container voor interactieve content */
.container-iterative {
    width: 100%;
    max-width: 900px; /* Aangepaste max-width toegepast */
    margin-top: 100px;
    padding: 0 2rem;
}

/* Titel styling */
.container-iterative h2 {
    letter-spacing: 1px;
    font-size: 50px;
    font-family: "Nunito", sans-serif;
    color: #ffffff;
    padding: 10px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-top: 2px;
    margin-left: 150px;

}
.iterative-post_date span{
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: .5rem 0;
}

/* Stijlen voor interactieve posts */
.iterative-post {
    width: 100%;
    background-color: rgba(219, 244, 255, 0.13);
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: .8rem;
    margin: 20px 0;
    padding: 2rem;
    overflow: hidden;
}

.iterative-post_text strong {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.iterative-post_img{
    flex: 1;
    max-width: 300px; /* Aangepaste maximale breedte */
    margin-right: 40px;
    margin-top: 90px; /* Aangepaste margin-top toegepast */
    overflow: hidden;
    border-radius: .8rem;
    position: relative;
}

.iterative-post_img img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: .8rem;
    box-shadow: 0 .5rem 3rem 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 150px; /* Aangepaste margin onderaan toegevoegd */
}

/* Info sectie styling */
.iterative-post_info {
    flex: 2;
    min-width: 300px;
    color: #fff;
}

.iterative-post_title {
    font-size: 3rem;
    font-family: "Nunito", sans-serif;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: #bce2d7;
    font-family: "Nunito", sans-serif;
}

.iterative-post_text {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.iterative-post_cta {
    display: inline-block;
    padding: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: .8rem;
    text-decoration: none;
    background: linear-gradient(to right, #5aa891 0%, #2d4452 100%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
    border: 1px solid rgba(176, 176, 176, 0.85);
}

.iterative-post_cta:hover {
    background: linear-gradient(to right, #498a77 0%, #1E2E38 100%);
}

.iterative-post_cta a {
    color: white;
    font-family: "Nunito", sans-serif;
    text-decoration: none;
}

/* Media Queries voor responsiviteit */
@media (max-width: 768px) {
    .iterative-post {
        flex-direction: column;
        padding: 1rem;
    }

    .iterative-post_img, .interactive-post_img_inst {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        margin-top: 90px;
    }

    .iterative-post_info {
        width: 100%;
    }
}

/*.personalbody{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374b47;
    padding: 0 1.5rem;
}
.container-personal{
    margin-top: 150px;
}

.container-personal h2{
    letter-spacing: 1px;
    font-size: 50px;
    font-family: "Nunito", sans-serif;
    color:#ffffff;
    padding: 10px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-top: 600px;
    margin-left: 200px;
}

.personal-post{
    width: 100%;
    max-width: 98rem;
    padding: 5rem;
    background-color: #dbf4ff21;
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    border-radius: .8rem;
    margin: 10px;
}

.personal-post_img{
    min-width: 35rem;
    max-width: 35rem;
    height: 40rem;
    transform: translateX(-8rem);
    position: relative;
}

.personal-post_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.personal-post_img img::before{
    content: '';
    width: 100%;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: .5rem .5rem 3rem 1px rgba(0,0,0,0.5);
}

.personal-post_date span{
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: .5rem 0;
}
.personal-post_text strong {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.personal-post_date span{
    font-family: "Nunito", sans-serif;
}

.personal-post_title{
    font-size: 2.5rem;
    font-family: "Nunito", sans-serif;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    color:#bce2d7;
}

.personal-post_text{
    margin-bottom: 3rem;
    font-size: 1.4rem;
    color: #fff;
    font-family: "Nunito", sans-serif;
}
*/


body.personalbody {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: #374b47;
    padding: 0 1.5rem;
    font-family: "Nunito", sans-serif;
}

/* Container voor interactieve content */
.container-personal {
    width: 100%;
    max-width: 900px; /* Aangepaste max-width toegepast */
    margin-top: 100px;
    padding: 0 2rem;
}

/* Titel styling */
.container-personal h2 {
    letter-spacing: 1px;
    font-size: 50px;
    font-family: "Nunito", sans-serif;
    color: #ffffff;
    padding: 10px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-top: 2px;
    margin-left: 150px;

}

/* Stijlen voor interactieve posts */
.personal-post {
    width: 100%;
    background-color: rgba(219, 244, 255, 0.13);
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: .8rem;
    margin: 20px 0;
    padding: 2rem;
    overflow: hidden;
}

.personal-post_text strong {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}
.personal-post_date span{
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: .5rem 0;
}

.personal-post_img {
    flex: 1;
    max-width: 500px; /* Aangepaste maximale breedte */
    margin-right: 40px;
    margin-top: 90px; /* Aangepaste margin-top toegepast */
    overflow: hidden;
    border-radius: .8rem;
    position: relative;
}

.personal-post_img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: .8rem;
    box-shadow: 0 .5rem 3rem 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 200px; /* Aangepaste margin onderaan toegevoegd */
}

/* Info sectie styling */
.personal-post_info {
    flex: 2;
    min-width: 300px;
    color: #fff;
}

.personal-post_title {
    font-size: 3rem;
    font-family: "Nunito", sans-serif;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: #bce2d7;
    font-family: "Nunito", sans-serif;
}

.personal-post_text {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.personal-post_cta {
    display: inline-block;
    padding: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: .8rem;
    text-decoration: none;
    background: linear-gradient(to right, #5aa891 0%, #2d4452 100%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
    border: 1px solid rgba(176, 176, 176, 0.85);
}

.personal-post_cta:hover {
    background: linear-gradient(to right, #498a77 0%, #1E2E38 100%);
}

.personal-post_cta a {
    color: white;
    font-family: "Nunito", sans-serif;
    text-decoration: none;
}

/* Media Queries voor responsiviteit */
@media (max-width: 768px) {
    .personal-post {
        flex-direction: column;
        padding: 1rem;
    }

    .personal-post_img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        margin-top: 90px;
    }

    .personal-post_info {
        width: 100%;
    }
    .container-personal h2 {
        font-size: 33px; /* Aanpassen van font-size voor kleinere schermen */
    }
}

.professionalbody{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374b47;
    padding: 0 1.5rem;
}
.container-professional{
    margin-top: 150px;
}

.container-professional h2{
    letter-spacing: 1px;
    font-size: 50px;
    font-family: "Nunito", sans-serif;
    color:#ffffff;
    padding: 10px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-top: 7800px;
    margin-left: 150px;
}

.professional-post{
    width: 100%;
    max-width: 98rem;
    padding: 5rem;
    background-color: #dbf4ff21;
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    border-radius: .8rem;
    margin: 10px;
}

.professional-post_img{
    min-width: 35rem;
    max-width: 35rem;
    height: 30rem;
    transform: translateX(-8rem);
    position: relative;
}

.professional-post_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.professional-post_img img::before{
    content: '';
    width: 100%;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: .5rem .5rem 3rem 1px rgba(0,0,0,0.5);
}

.professional-post_date span{
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: .5rem 0;
}

.professional-post_title{
    font-size: 2.5rem;
    font-family: "Nunito", sans-serif;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    color:#bce2d7;
}

.professional-post_text{
    margin-bottom: 3rem;
    font-size: 1.4rem;
    color: #fff;
    font-family: "Nunito", sans-serif;
}

.professional-post_cta{
    display: inline-block;
    padding: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: .8rem;
    text-decoration: none;
    background: linear-gradient(to right,#283c37 0%, #498a77 100%);
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #b0b0b0d8;
}

.professional-post_cta a{
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}
.professional-post_cta:hover{
    background: linear-gradient(to right,#498a77 0%, #283c37 100%);
}
@media (max-width: 1200px) {
    .container-professional {
        padding: 0 1rem;
    }

    .professional-post {
        max-width: 80rem;
        padding: 4rem;
    }
}

@media (max-width: 992px) {
    .container-professional {
        margin-top: 9000px;
    }

    .container-professional h2 {
        font-size: 2.5rem;
    }

    .professional-post {
        padding: 3rem;
    }

    .professional-post_img {
        min-width: 25rem;
        max-width: 25rem;
        height: 20rem;
        transform: translateX(-4rem);
    }
}

@media (max-width: 768px) {
    .professionalbody {
        padding: 0 1rem;
    }

    .container-professional {
        padding: 0 1rem;
    }

    .container-professional h2 {
        font-size: 2rem;
        margin: 20px auto;
    }

    .professional-post {
        flex-direction: column;
        padding: 2rem;
        text-align: center; /* Centraal uitlijnen */
    }

    .professional-post_img {
        min-width: 100%;
        max-width: 100%;
        height: auto;
        transform: translateX(0);
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container-professional {
        padding: 0 .5rem;
    }

    .container-professional h2 {
        font-size: 1.8rem;
    }

    .professional-post {
        padding: 1rem;
    }

    .professional-post_img {
        height: auto;
    }

    .professional-post_title {
        font-size: 1.6rem;
    }
}







/* Algemeen body styling */
body.developmentbody {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: #374b47;
    padding: 0 1.5rem;
    font-family: "Nunito", sans-serif;
}

/* Container voor interactieve content */
.container-development {
    width: 100%;
    max-width: 900px; /* Houdt rekening met grotere schermen */
    margin-top: 100px;
    padding: 0 2rem;
}

/* Titel styling */
.container-development h2 {
    letter-spacing: 1px;
    font-size: 50px;
    font-family: "Nunito", sans-serif;
    color: #ffffff;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
}

/* Stijlen voor interactieve posts */
.development-post {
    width: 100%;
    background-color: rgba(219, 244, 255, 0.13);
    box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: .8rem;
    margin: 20px 0;
    padding: 2rem;
    overflow: hidden;
}

.development-post_text strong {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.development-post_img_ovp {
    flex: 1;
    max-width: 300px; /* Houdt rekening met grotere schermen */
    margin-right: 20px;
    margin-top: 90px; /* Houdt rekening met grotere schermen */
    overflow: hidden;
    border-radius: .8rem;
    position: relative;
}

.development-post_img_ovp img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: .8rem;
    box-shadow: 0 .5rem 3rem 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px; /* Houdt rekening met grotere schermen */
}

/* Info sectie styling */
.development-post_info {
    flex: 2;
    min-width: 300px;
    color: #fff;
}

.development-post_title {
    font-size: 3rem;
    font-family: "Nunito", sans-serif;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: #bce2d7;
}

.development-post_text {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.development-post_cta {
    display: inline-block;
    padding: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: .8rem;
    text-decoration: none;
    background: linear-gradient(to right, #5aa891 0%, #2d4452 100%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
    border: 1px solid rgba(176, 176, 176, 0.85);
}

.development-post_cta:hover {
    background: linear-gradient(to right, #498a77 0%, #1E2E38 100%);
}

.development-post_cta a {
    color: white;
    font-family: "Nunito", sans-serif;
    text-decoration: none;
}

/* Media Queries voor responsiviteit */
@media (max-width: 768px) {
    .development-post {
        flex-direction: column;
        padding: 1rem;
    }

    .development-post_img_ovp {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        margin-top: 20px; /* Aangepaste margin-top voor mobiele weergave */
    }

    .development-post_info {
        width: 100%;
    }

    .container-development h2 {
        font-size: 36px; /* Aanpassen van font-size voor kleinere schermen */
    }
}


/* Algemene body styling */
/* Algemeen body styling */
body.interactivebody {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: #374b47;
    padding: 0 1.5rem;
    font-family: "Nunito", sans-serif;
}

/* Container voor interactieve content */
.container-interactive {
    width: 100%;
    max-width: 900px; /* Houdt rekening met grotere schermen */
    margin-top: 100px;
    padding: 0 2rem;
}

/* Titel styling */
.container-interactive h2 {
    letter-spacing: 1px;
    font-size: 50px;
    font-family: "Nunito", sans-serif;
    color: #ffffff;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
}

/* Stijlen voor interactieve posts */
.interactive-post {
    width: 100%;
    background-color: rgba(219, 244, 255, 0.13);
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: .8rem;
    margin: 20px 0;
    padding: 2rem;
    overflow: hidden;
}

.interactive-post_text strong {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.interactive-post_img, .interactive-post_img_inst {
    flex: 1;
    max-width: 300px; /* Houdt rekening met grotere schermen */
    margin-right: 40px; /* Vergrote marge tussen kolommen */
    margin-top: 40px;   /* Vergrote marge tussen rijen */
    overflow: hidden;
    border-radius: .8rem;
    position: relative;
}

.interactive-post_img img, .interactive-post_img_inst img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: .8rem;
    box-shadow: 0 .5rem 3rem 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 120px; /* Vergrote marge onderaan */
}


/* Info sectie styling */
.interactive-post_info {
    flex: 2;
    min-width: 300px;
    color: #fff;
}

.interactive-post_title {
    font-size: 3rem;
    font-family: "Nunito", sans-serif;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: #bce2d7;
}

.interactive-post_text {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.interactive-post_cta {
    display: inline-block;
    padding: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: .8rem;
    text-decoration: none;
    background: linear-gradient(to right, #5aa891 0%, #2d4452 100%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
    border: 1px solid rgba(176, 176, 176, 0.85);
}

.interactive-post_cta:hover {
    background: linear-gradient(to right, #498a77 0%, #1E2E38 100%);
}

.interactive-post_cta a {
    color: white;
    font-family: "Nunito", sans-serif;
    text-decoration: none;
}

/* Media Queries voor responsiviteit */
@media (max-width: 768px) {
    .interactive-post {
        flex-direction: column;
        padding: 1rem;
    }

    .interactive-post_img, .interactive-post_img_inst {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        margin-top: 20px; /* Aangepaste margin-top voor mobiele weergave */
    }

    .interactive-post_info {
        width: 100%;
    }

    .container-interactive h2 {
        font-size: 36px; /* Aanpassen van font-size voor kleinere schermen */
    }
}


/* Stijlen voor interactieve posts */
/* Iteration Post Algemene styling */
.iteration-post {
    width: 100%;
    background-color: rgba(219, 244, 255, 0.13);
    box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: .8rem;
    margin: 20px 0;
    padding: 2rem;
    overflow: hidden;
}

.iteration-post_date span {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin: .5rem 0;
    font-family: "Nunito", sans-serif;
}

.iteration-post_text strong {
    font-weight: bold;
    font-size: 1.3rem; /* Kleinere lettergrootte voor sterk benadrukte tekst */
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
}

.iteration-post_img {
    flex: 1;
    max-width: 500px; /* Verhoogde maximale breedte voor de afbeelding */
    margin-right: 20px; /* Verkleinde marge voor betere uitlijning */
    margin-top: 0; /* Aangepaste margin-top toegepast */
    overflow: hidden;
    border-radius: .8rem;
    position: relative;
}

.iteration-post_img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: .8rem;
    box-shadow: 0 .5rem 3rem 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px; /* Aangepaste margin onderaan toegevoegd */
}

/* Info sectie styling */
.iteration-post_info {
    flex: 2;
    min-width: 300px;
    color: #fff;
}

.iteration-post_title {
    font-size: 2.2rem; /* Kleinere lettergrootte voor de titel */
    margin-bottom: 2rem; /* Aangepaste marge voor een betere uitlijning */
    text-transform: uppercase;
    color: #bce2d7;
    font-family: "Nunito", sans-serif;
}

.iteration-post_text {
    font-size: 1.2rem; /* Kleinere lettergrootte voor de tekst */
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
    margin-bottom: 1rem; /* Aangepaste marge voor een betere uitlijning */
}

.iteration-post_text p {
    font-size: 1.4rem; /* Kleinere lettergrootte voor de tekst */
    line-height: 1.6;
    font-family: "Nunito", sans-serif;
    margin-bottom: 1rem;
}

.iteration-post_cta {
    display: inline-block;
    padding: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: .8rem;
    text-decoration: none;
    background: linear-gradient(to right, #5aa891 0%, #2d4452 100%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
    border: 1px solid rgba(176, 176, 176, 0.85);
}

.iteration-post_cta:hover {
    background: linear-gradient(to right, #498a77 0%, #1E2E38 100%);
}

.iteration-post_cta a {
    color: white;
    font-family: "Nunito", sans-serif;
    text-decoration: none;
}

/* Media Queries voor responsiviteit */
@media (max-width: 768px) {
    .iteration-post {
        flex-direction: column;
        padding: 1rem;
    }

    .iteration-post_img {
        max-width: 100%; /* Afbeelding volledige breedte op kleinere schermen */
        margin-right: 0;
        margin-bottom: 20px;
        margin-top: 20px; /* Aangepaste marge voor mobiele weergave */
    }

    .iteration-post_info {
        width: 100%;
    }
}

.iteration-post_img_ovp{
    flex: 1;
    max-width: 300px; /* Verhoogde maximale breedte voor de afbeelding */
    margin-right: 20px; /* Verkleinde marge voor betere uitlijning */
    margin-top: 0; /* Aangepaste margin-top toegepast */
    overflow: hidden;
    border-radius: .8rem;
    position: relative;
}

.iteration-post_img_ovp img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: .8rem;
    box-shadow: 0 .5rem 3rem 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px; /* Aangepaste margin onderaan toegevoegd */
}

