/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6, p {
    color: #2b2b37;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 1px; /* Pas de dikte aan naar wens */
    text-underline-offset: 2px;
  }

  .read-more-toggle {
    display: none;
  }
  
  .read-more-content {
    display: none;
  }
  
  .read-more-toggle:checked ~ .read-more-content {
    display: block;
  }
  
  .read-more-label {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    display: inline-block;
  }
  
  .read-more-label::before {
    content: "READ MORE";
  }
  
  .read-more-toggle:checked ~ .read-more-label::before {
    content: "SHOW LESS";
  }

body {
    font-family: 'Soleil', sans-serif;
    background-color: #FDFAF7;
    margin: 0;
    display: block;
  }
  
  .koppelteken{
    white-space: nowrap; /* Voorkomt dat het koppelteken breekt en laat de woorden samengevoegd blijven */
  }


.responsiveBackButton{
    display: none;
    font: normal normal 300 20px/25px Soleil;

    background: none;
    border-radius: 40px;
    border: 2px solid #2b2b37;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
}  

.main a {
    text-decoration: none; /* Remove underlining */
    color: inherit; /* Use the inherited color from the parent element */
}
    
.main a:visited {
    color: inherit; /* Use the inherited color for visited links */
}

* {
    cursor: none !important; /* Verberg de standaard cursor overal */
  }
  
  /* Verberg de custom cursor op touch-apparaten */
  @media (pointer: coarse) {
    .custom-cursor {
        display: none !important; /* Verberg de cursor bij touch-apparaten */
    }
  }

/*--------------------------------------------------------------
# sidenav
--------------------------------------------------------------*/
.sidenav {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-top: 30px;
    border-right: 2px solid #2b2b37;
  }
  
  .nav {
    position: absolute;
    bottom: 0;
    padding-bottom: 150px;
    display: block !important;
    
  }
  
  .nav a {
  padding: 6px 6px 6px 40px;
  text-decoration: none;
  font-size: 21px;
  color: #2b2b37;
  display: block !important;
  
  }
  
  
  .nav-icon {
  position: absolute;
  bottom: 0;
  display: block !important;
  padding: 0px 0px 60px 40px;
  text-decoration: none;
  color: #2b2b37;
  
  }
  
  .nav-icon a{
    color: #2b2b37;
    padding-left: 4px;
  }
  
  .nav-icon a:hover{
    color: #2b2b37;
    text-decoration: none;
  }
  
  .nav-icon a:focus {
  color: #2b2b37;
  }
  
  .navh1 {
  padding: 6px 6px 6px 40px;
  text-decoration: none;
  font-size: 25px;
  color: #2b2b37;
  display: block;
  text-decoration: bold;
  position: absolute;
  }

  .navh1 h1 {
    color: #2b2b37;
    }
  
  .navh1 a{
    color: #2b2b37 !important;
    text-decoration: none;
  }
  
  .sidenav a:hover {
  color: #2b2b37;
  }
  
  .nav a:focus {
  color: #2b2b37;
  }

/*--------------------------------------------------------------
# main
--------------------------------------------------------------*/

.main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 50px;
    margin-left: 300px;
    flex-wrap: wrap; /* Allow content to wrap within .main */
}
  
  /* main-top */
.top {
    display: flex;
    flex-wrap: wrap;
    margin-left: 140px;
}

.top h1, .top p {
    margin: 0px;
    width: 100%;
}

.top h1 {
    font-size: 32px;
}
  
.top p {
    margin-top: 15px;
    width: 550px;
    margin-bottom: 60px;
}

/* buttons */
.portfolioItemButtons{
    display: block;
    box-sizing: border-box; /* Hiermee wordt de breedte inclusief padding en randen berekend */
    flex-direction: column;
    align-items: flex-start; /* Align buttons to the left */
    margin-top: 15px;
    z-index: 2;
    flex: 1;
    position: relative;
  }

 /* main-middel */

.middel {
    width: 100%; /* Make sure .middel takes 100% of the width */
    display: flex;
    flex-wrap: wrap;
    margin-left: 140px;
    margin-right: 140px;
}

.skillsResponsive{
    display: none;
}


.fullInfo {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.fullInfo > div {
    flex: 1;
    margin: 0 0px; /* Optional: Add some spacing between the divs */
}

.fullInfo div h4 {
    margin-bottom: 10px;
    font-size: 15;
    font-weight: normal;
}

.bigimage{
    width: 100%;
    margin-top: 30px;
}

.bigimage iframe {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    
}

.bigimage img {
    width: 100%;

    margin-top: 10px;
}

.bigimage video {
    width: 100%;

    margin-top: 10px;
}

.moreInfo {
    display: flex;
    align-items: flex-start;
    margin-top: 155px;
    margin-bottom: 50px;
}

.moreInfoText {
    flex: 1; /* This makes the text div flexible, taking up remaining space */
    margin-right: 200px; /* Optional: Add some space between text and image */
}

.moreInfoText-NOTEXT {
    max-width: 600px;
}

.moreInfoText p {
    margin-top: 0px;
}

.moreInfoImage img{
    width: 600px;
    height: auto;
}

.moreInfoImage iframe{
    width: 600px;
    
}

.moreInfoImage video{
    width: 600px;
    height: auto;
}

/* buttons */  
  .portfolioItemButtons button {
    display: inline-block;
    margin-top: 7px; 
    /* styling */
    background: none;
    border-radius: 40px;
    border: 1px solid #2b2b37;
    font: normal normal normal 13px/13px 'Soleil', sans-serif;
    padding-top: 6px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    color: #2b2b37;
    cursor: none;
  }

/* main-bottom */
.bottom{
    width: 100%; /* Make sure .middel takes 100% of the width */
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    margin-left: 140px;
    margin-right: 140px;
}

.images {
    display: flex;
    flex-wrap: wrap;
}

.images2 {
    width: 100%; /* Container past zich aan de viewport of een ouderelement aan */
    margin: 0 auto; /* Optioneel: Centreer de container */
}


.images img {
    width: 48.5%; /* Each image takes half of the container width */
    height: auto;
    box-sizing: border-box;
    margin-bottom: 3%; /* Optional: Add padding between images */
}

.images2 img {
    width: 100%; /* Each image takes half of the container width */
    height: auto;
    box-sizing: border-box;
    margin-bottom: 3%; /* Optional: Add padding between images */
}

.images video {
    width: 48.5%; /* Each image takes half of the container width */
    height: auto;
    box-sizing: border-box;
    margin-bottom: 3%; /* Optional: Add padding between images */
}

.images2 video {
    width: 100%; /* Each image takes half of the container width */
    height: auto;
    box-sizing: border-box;
    margin-bottom: 3%; /* Optional: Add padding between images */
}

.images3 video {
    width: calc(50% - 16px); /* Elke video neemt de helft van de container minus de gap */
    height: auto;
    box-sizing: border-box;
    margin-bottom: 3%; /* Optioneel: Extra ruimte tussen de video's */
    object-fit: cover; /* Zorg ervoor dat de video's zichzelf schalen */
}

.leftImage{
    margin-left: 3%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


#footer {
    padding: 0 0 30px 0;
    color: #2b2b37;
    font-size: 14px;
    clear: both;
    margin-left: 300px;
    float: bottom;
    margin-top: 150px;
}
  
  
#footer .copyright {
    text-align: center;
    padding-top: 30px;
    clear: both;
}
  
#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #2b2b37;
    clear: both;
}
  
#footer a {
    color: #2b2b37;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    clear: both;
}
  
#footer a:hover {
      color: #d5796b; 
      text-decoration: none;
  
}

@media only screen and (min-width: 2200px) {

    .moreInfoImage iframe{
        width: 800px;
        height: 400px;
    }
}

@media only screen and (min-width: 2200px) {

    .moreInfoText {
    margin-right: 30%; /* Optional: Add some space between text and image */
    }

}

@media only screen and (max-width: 2200px) {

    .moreInfoText {
    margin-right: 10%; /* Optional: Add some space between text and image */
    }

}

@media only screen and (max-width: 1600px) {

    .moreInfoImage iframe{
        width: 500px;
        height: 250px;
    }
}

@media only screen and (max-width: 1650px) {
    .moreInfoText {
        margin-right: 50px; /* Optional: Add some space between text and image */
        }
   
}


@media only screen and (max-width: 1500px) {
    .middel {
        margin-left: 80px;
        margin-right: 80px;
    }

    .top {
        margin-left: 80px;
        margin-right: 80px;
    }

    .bottom{
        margin-left: 80px;
        margin-right: 80px;
    }
}

@media only screen and (max-width: 1350px) {
    .moreInfo{
        display: block;
        width: 100%;
    }
    
    .moreInfoText{
        width: 100%;
        margin-right: 0px;
    }

    .moreInfoImage{
        margin-top: 100px;
        margin-bottom: 50px;
        width: 100%;
    }

    .moreInfoImage iframe{
        width: 100%;
    }

    .moreInfoImage video{
        width: 100%;
    }

    .moreInfoImage img{
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .middel {
        display: flex;
        flex-direction: column;
    }

    .fullInfo {
        order: 2;
        margin-top: 10px;
    }

    .skills {
        display: none;
    }

    .skillsResponsive{
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0px;
    }

    .bigimage {
        order: 1;
        margin-top: 20px;
    }

    .moreInfo {
        order: 3;
        margin-top: 90px;
        margin-bottom: 20px;
    }

    .bottom{
        margin-top: 20px;
    }
    
}

@media screen and (max-width: 1000px) {
    .top p {
        width: 100%;
    }

    .top{
        margin-right: 80px;
    }
}

@media screen and (max-width: 920px) {
    .main {margin-left: 270px;}
    .sidenav { width: 250px;}
    .nav a, .navh1 {font-size: 18px;}
    #footer {
        margin-left: 250px;
    }
}

@media screen and (max-width: 900px) {
    .middel {
        margin-left: 60px;
        margin-right: 60px;
    }

    .top {
        margin-left: 60px;
        margin-right: 60px;
    }

    .bottom{
        margin-left: 60px;
        margin-right: 60px;
    }
    .images video {
        width: 100%;
    }

    .images iframe {
        width: 100%;
    }

    .images img {
        width: 100%;
    }

    .leftImage {
        margin-left: 0px;
    }
}


@media screen and (max-width: 750px) {
    .middel {
        margin-left: 40px;
        margin-right: 40px;
    }

    .top {
        margin-left: 40px;
        margin-right: 40px;
    }

    .bottom{
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media only screen and (max-width: 650px) {
    .sidenav {   
        display: none;
    }
    
    .top p{
        margin-bottom: 50px;
    }
    .main {
        margin-left: 0px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top{
        margin-top: 25px;
    }

    .responsiveBackButton{
        display: block;
        color: #2b2b37;
    }

    #footer {
        margin-left: 0px;
    }

    .textAboutProject{
        width: 100%;
        max-width: 350px; /* Set a maximum width for the container */
        margin: 0 auto; /* Center the container horizontally */
        padding: 20px; /* Add some padding for spacing */
        box-sizing: border-box; /* Ensure padding is included in the width */
        text-align: center; /* Center the text horizontally */
        min-width: auto; 
    }
}


@media screen and (max-width: 450px) {
    .middel {
        margin-left: 20px;
        margin-right: 20px;
    }

    .top {
        margin-left: 20px;
        margin-right: 20px;
    }

    .bottom{
        margin-left: 20px;
        margin-right: 20px;
    }
}