@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&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
 
/* Resetten van de standaard opmaak */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
/* Kleurvariabelen */
:root {
    --color-primary: #663366;
    --color-white: #FFFFFF;
    --color-pink: #E5007D;
    --color-blue: #0076E0;
    --color-lightblue: #0099CC;
}
 
/* Body opmaak */
body {
    font-family: "Roboto Condensed", sans-serif;
}
 
/* Header opmaak */
.header {
    position: relative;
}

/*call-to-action*/
.background-image {
    width: 100%;
    height: 80vh; /* Veranderd naar 80% van de viewport hoogte */
    object-fit: cover;
    position: relative; /* Nodig voor absolute positionering van de info-box */
}

.header-text {
    position: absolute;
    top: 83%; /* Aangepast naar een lagere waarde voor meer ruimte naar beneden */
    left: 20px;
    transform: translateY(-50%);
    color: white;
    z-index: 1;
    padding: 20px;
}

.header-text p {
    font-size: 20px;
    text-shadow: 6px 6px 4px rgba(0, 0, 0, 0.5);
}

.header-text h3 {
    font-size: 65px;
    font-weight: bold;
    text-shadow: 6px 6px 4px rgba(0, 0, 0, 0.5);
}


.info-box {
    position: absolute;
    top: 55%; /* Verlaagd om het iets meer naar beneden te verplaatsen */
    right: 30px; /* Aangepast naar de gewenste afstand van de rechterkant */
    transform: translateY(-50%);
    background-color: white;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px; /* Verhoogde breedte */
    overflow: hidden;
    height: auto; /* Automatische hoogte */
    animation: slideIn 1s ease-in-out forwards;
}



.info-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, #0076E0 100%);
    z-index: -1;
}

.info-box img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.info-text {
    font-size: 22px;
    text-align: left;
    font-weight: bold;
    margin: 0 0 20px;
    color: #000000;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    color: white;
    background-color: #0076E0;
    text-decoration: none;
    font-size: 18px;
    animation: slideIn 0.5s ease-in-out forwards;
    border-radius: 5px;
    margin-top: 20px;
}

.hint {
    font-size: 13px;
    color: #050505;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.info-box:hover .hint {
    opacity: 1;
}




.paarse-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 11px 20px;
}
 
.container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
}
 /*Logo*/
.logo img {
    height: 70px;
    margin-bottom: 20px;
    margin-left: 30px;
}
 
/* Navigatiemenu opmaak */
.nav-bar ul {
    list-style: none;
    display: flex;
}
 
.nav-bar ul li {
    padding: 30px 30px;
}
 
.nav-bar ul li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--color-white);
    transition: all 0.3s;  
}
 
.nav-bar ul li a:hover {
    color: rgba(255, 255, 255, 0.6);
}
 
/* Dropdownmenu opmaak */
.dropdown:hover .dropdown-content {
    display: block;
}
 
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-primary);
    min-width: 160px;
    z-index: 1;
}
 
.dropdown-content ul {
    list-style-type: none;
    display: block;
    margin: 20px;
    padding: 0;
    width: 100%;
}
 
.dropdown-content ul li {
    display: block;
    padding: 10px;
}
 
/* Zoekbalk opmaak */
.search-bar {
    display: flex;
    align-items: center;
}
 
.search-bar input[type="text"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    width: 300px;
    background-color: #754475;
    color: #d9d9d9;
    font-size: 16px;  
}
 
.search-bar input[type="text"]:hover {
    background-color: #ffffff; 
    color: #000000; 
}
 
.search-bar button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px;
    border-radius: 9px;
    cursor: pointer;
}
 
.search-bar button:hover {
    background-color: var(--color-pink);
}
 

 
 
 
 
 
/* Hamburgermenu opmaak */
.menu-toggle {
    display: none;
}
 
@media screen and (max-width: 768px) {
    /* Stijlen voor schermen kleiner dan 768px breed */
    .container {
        grid-template-columns: auto;
        justify-content: space-between;
    }
 
    .search-bar {
        display: none;
    }
 
    .menu-toggle {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 35px;
        right: 15px;
        z-index: 999;
    }
 
    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: var(--color-white);
        margin: 5px 0;
        transition: 0.1s;
    }
 
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
 
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
 
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
 
    .nav-bar {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: white;
        transition: right 0.3s ease;
    }
 
    .nav-bar.active {
        display: block;
    }
 
    .nav-bar ul li {
        padding: 20px;
        display: block;
        text-align: center;
        width: 100%;
    }
 
    .nav-bar ul li a {
        font-size: 16px;
        color: black;
    }
}
 
 
 
 
 
 
 
/* informatie  */
.section2 {
    display: flex;
    align-items: flex-start;
    padding: 60px;
    background-color: #f9f9f9; 
    position: relative; 
}

.content-container {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.text-container {
    margin-right: 20px;
    max-width: 700px;
    font-family: 'Inter', sans-serif;
}

.text1, .text2 {
    margin-bottom: 40px;
    padding: 20px;
}

.text1 h1, .text2 h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.text1 p, .text2 p {
    font-size: 16px;
    font-weight: 100;
    line-height: 2;
    color: #666;
}

.video-container {
    margin-left: 80px;
    margin-right: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    width: 700px; 
    height: 430px; 
    position: relative;
}

.video-iframe {
    width: 100%;
    height: 100%;
}





/*checklist*/
.text2 {
    flex-basis: 30%;
}

.text2 h1 {
    font-size: 25px;
    margin-bottom: 10px;
}

.text2 p {
    font-size: 16px;
    font-weight: 100;
    position: relative;
    padding-left: 30px;
    line-height: 2.5;
}

.text2 p::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(50%);
    color: var(--color-pink);
    font-size: 20px;
    line-height: 10px;
}

 
 
 
 

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* keuzes Sumaya */
.choices-section {
    position: relative;
    text-align: center;
    padding-top: 90px;
}

.choices-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
    position: relative;
    z-index: 1;

}

.section-title h1 {
    margin-bottom: 10px;
    text-align: center;

}

.choice {
    width: 260px;
    height: 390px; 
    margin-right: 20px; 
    box-sizing: border-box;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    background-color: white;
    margin-bottom: 20px;
    margin-right: 25px;
    border: 1px solid #cbcbcb;
    position: relative;
    z-index: 2;
    
}

.choice img {
    width: 259px; 
    height: 160px; 
    margin-bottom: 25px; 
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.choice h3 {
    font-size: 20px;
    margin: 10px 0;
}

.choice p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 120;
}


.choice .cta {
    margin-top: auto; 
    margin-bottom: 40px;
    width: 100%;

}

.choice .cta a {
    background-color: #663366;
    color: white;
    padding: 8px 70px; 
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;

}

.choice .cta a:hover {
    background-color: #d50376;
}









.background-section {
    position: relative;
}

.achtergrond-foto {
    margin-top: -119px; 
    width: 100%;
    height: 650px; 
    background-image: url('banner4.png');
    background-size: cover;
    background-position: center;
    z-index: -1; 
    margin-bottom: 35px; 
}








/*Onderwijs inovatie*/
.tekst-container-achtergrond {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; 
}

.h1-container {
    font-size: 45px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


.parent-container {
    display: grid;
    justify-items: start; 
}

.h2-container {
    font-size: 12px;
    padding: 5px 50px;
    background-color: #d50376;
    border: 1px solid #FFFFFF;
    text-align: center;
    display: inline-block;
}



.h2-container i {
    font-size: 40px; 
    vertical-align: middle;
}

.h2-container a {
    color: white;
    text-decoration: none;
}





/*Typerend voor onderwijs*/
@keyframes fadeIn {
    from {
        transform: translateY(20%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.section3 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    flex-direction: row-reverse;
}

.text-container3 {
    flex-basis: 50%;
    margin-left: 10px;
    margin-top: 100px;
    margin-right: 60px;
    font-family: 'Inter', sans-serif;
    opacity: 0; /* Begin met de elementen verborgen */
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.text13, .text23 {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
}

.text13 h3, .text23 h3 {
    font-size: 25px;
    margin-bottom: 16px;
}

.text23 p {
    background-color: #F7F7F7; 
    padding: 7px; 
    margin-bottom: 19px; 
    border: 0px solid #F7F7F7; 
    font-weight: 190;
    font-size: 14px; 
    line-height: 1.5;
}

.text23 p::before {
    content: '\2022'; 
    color: #d50376; 
    margin-right: 9px; 
}

.image {
    margin-top: 200px;
    margin-right: 30px;
    opacity: 0; /* Begin met de elementen verborgen */
}

.image img {
    width: 650px;
    height: auto;
    margin-left: 50px;
}

.text-container3.animate,
.image.animate {
    animation: fadeIn 1s forwards ease-in-out; 
}

.text-container3.animate {
    animation-delay: 0.3s; 
}

.image.animate {
    animation-delay: 0.6s; 
}

/* alumni  */
.student-experience {
    position: relative;
    width: 100%;
    max-height: 650px;
    overflow: hidden;
}

.student-experience img {
    width: 100%;
    height: auto;
}

.experience-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    max-width: 40%;
}

.experience-text h1 {
    margin: 0;
    font-size: 30x;
    color: #333;
}

.experience-text p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #333;
}















 
 
background-section {
    margin-top: 150px;
    margin-bottom: 100px;
    width: 400px;
}
 
 
 /*section animatie onderaan*/
@keyframes slideIn {
    from {
        transform: translateY(20%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.rectangles-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 100px;
    margin-right: 17px;
    padding: 20px;
}

.rectangle {
    width: 450px;
    height: 320px;
    margin-left: 25px;
    background-color: whitesmoke;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 0; 
}

.rectangle.animate {
    animation: slideIn 1s forwards ease-in-out; 
}

.rectangle:nth-child(1).animate {
    animation-delay: 0.3s; /* Vertraging voor het eerste element */
}

.rectangle:nth-child(2).animate {
    animation-delay: 0.6s; /* Vertraging voor het tweede element */
}

.rectangle:nth-child(3).animate {
    animation-delay: 0.9s; /* Vertraging voor het derde element */
}

.rectangle h1 {
    font-size: 30px;
    text-align: left;
}

.rectangle p {
    font-size: 14px;
    margin: 0;
    text-align: center;
    font-family: "Inter", sans-serif;
    text-align: left;
    max-width: 93%;
    line-height: 2;
}

.rectangle button {
    font-size: 14px;
    background-color: whitesmoke;
    color: black;
    border: 1px solid black;
    height: 50px;
    width: 350px;
    position: relative;
    padding-right: 25px;
}

.rectangle button::after {
    content: "\276F";
    color: #E5007D;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.wrapper {
    display: flex;
    margin-top: 100px;
}

.container2 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    margin-top: 50px;
    margin-left: 70px;
    margin-right: 300px;
}

.vertical-line {
    border-left: 3px solid #d50376;
    height: 40px;
    margin-right: 10px;
}

.text {
    font-size: 18px;
    font-weight: 500;
    color: #d50376;
}
 







 
 /* Footer design */
.footer{
    padding: 80px 13% 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,auto));
    gap: 3.5rem;
    background: #efefef;
    position: absolute;
    left:0;
    right:0;
}

.footer-content img {
    width: 100px;
    height: auto;
}
 
 
.footer-content h4{
    color:#000000;
    font-size: 20px;
    margin-bottom: 5px;
}
 
.footer-content li{
    margin-bottom: 10px;
}
 
.footer-content li a{
    display: block;
    text-decoration: none;
    color: #524d43;
    font-size: inherit;
    font-weight: 300;
    transition: all .40s ease;
}
 
.footer-content li a:hover{
    transform: translateY(-3px) translateX(-5px);
    color: #000000;
}
 
.footer-content p{
    color:#232222;
    font-size: 16px;
    line-height: 30px;
    margin: 20px 0;
}
 
.footer-content ul {
    list-style-type: none;
}
 
 
.icons a{
    display: inline-block;
    font-size: 22px;
    color:#E5007D;
    margin-right: 17px;
    transition: all .40s ease;
}
 
.icons a:hover{
    color:#d50376;
    transform: translateY(-5px);
}
 
.copyright {
    background-color: #663366;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.footer-iconTop {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .8rem 1rem;
    background: #663366;
    border-radius: .8rem;
    transition: .5s ease;
}

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

.footer-iconTop a i {
    font-size: 1.3rem;
    color: #FFFFFF;
}

/*Easter Egg*/


#easterEgg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#meme {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

#memory-game h2 {
    font-size: 40px; 
    color: #333; 
    margin-bottom: 10px;
}

#score {
    font-size: 25px; 
    color: #666; 
    margin-bottom: 20px; 
}


.hidden {
    display: none;
}

#memory-game {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 2px solid black;
    z-index: 1000;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 100px); /* Vier kolommen */
    grid-template-rows: repeat(4, 100px);    /* Vier rijen */
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.card {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #75447536;
    border: 2px solid black;
    cursor: pointer;
    font-size: 3em; 
    position: relative;
    transform: rotateY(0deg);
    transition: transform 0.5s;
}

.card.flipped {
    transform: rotateY(180deg);
}

.card span {
    display: none;
}

.card.flipped span {
    display: block;
}


#restart-button {
    background-color: #E5007D; 
    border: none; 
    color: white; 
    padding: 15px 32px; 
    text-align: center; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 16px; 
    font-family: Arial, sans-serif; 
    border-radius: 12px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    margin-bottom: 50px;
}

#restart-button:hover {
    background-color: #ff078f; 
}
