* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

header {
    background-color: #ffffff;
    color: #0066ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
}
h2{
    color: #0066ff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    align-items: center;
}

.img_logo {
    width: 100px;
    margin-right: 15px;
}

.image-row {
    display: flex;
    justify-content: center; /* Centreert de afbeeldingen horizontaal */
    gap: 15px; /* Iets grotere ruimte tussen de afbeeldingen */
    margin-top: 15px; /* Ruimte boven de rij */
}

.image-row img {
    width: 150px; /* Grotere breedte voor meer impact */
    height: auto; /* Houd de aspect ratio correct */
    border-radius: 10px; /* Maakt de hoeken afgerond */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optionele schaduw voor een mooi effect */
}

.accordion {
    width: 1000px;
}

.card-header{
    text-align: center;
}


  
.progress-bar {
    width: 0;
    opacity: 0;
    transition: width 1s ease-in-out, opacity 0.3s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  
  h5{
    text-align: center;
  }
  
  /* Delay per bar */
  #html-bar {
    transition-delay: 0s;
  }
  #css-bar {
    transition-delay: 0.3s;
  }
  #js-bar {
    transition-delay: 0.6s;
  }
   
.bi{
    text-align: center;
}




.voorwoord {
    background-color: #1a1a1a;
    border-left: 5px solid #0066ff;
    padding: 2em 1.5em; /* Minder padding aan de zijkanten */
    margin: 2em auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 1000px;
    color: #e0e0e0;
    box-sizing: border-box;
    text-align: justify; /* Zorgt voor nette brede uitlijning */
}



.voorwoord h3 {
    margin-top: 0;
    color: #3399ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.voorwoord p {
    margin-bottom: 1em;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

.voorwoord ul {
    margin-top: 1em;
    padding-left: 1.5em;
}

.voorwoord ul li {
    margin-bottom: 0.8em;
    line-height: 1.8;
    font-size: 1.05rem; 
}





.timeline-horizontal {
    display: flex;
    flex-direction: column; /* <--- Zet ze onder elkaar */
    gap: 2rem;               /* Zorgt voor ruimte tussen de kaders */
    padding: 1rem;
  }
  
  .timeline-card {
    background-color: #1a1a1a;
    border-left: 4px solid #0066ff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .timeline-card h4 {
    color: #3399ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  


  








nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    font-size: 1rem;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover {
    color: #0066ff;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.modal {
    display: none; /* Verborgen standaard */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Donkere overlay */
}

.modal-content {
    background-color: #fff;
    color: #333;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    max-height: 70vh; /* Beperk de hoogte van de modal */
    overflow-y: scroll; /* Scrollen inschakelen */
    text-align: center;
    position: relative;

    /* Scrollbalk verbergen */
    scrollbar-width: none; /* Verbergt scrollbalk in Firefox */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Verbergt scrollbalk in Chrome, Safari en Edge */
}

.modal-content h2 {
    color: #0066ff;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.modal .close:hover {
    color: #ff0000;
}

button {
    background-color: #0066ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #0051cc;
}

.logo_nieuw{
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo_oud{
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.verhaal {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

h2 {
    font-size: 2rem;
    color: #0000ff;
}

p {
    font-size: 1.2rem;
    text-align: center;
    margin: 20px 0;
}

.verhaal.show {
    opacity: 1;
    transform: translateY(0);
}

.over-mij-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.kolom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.text-left, .text-right {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.over-mij-foto {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .voorwoord {
        padding: 1.5em;
    }

    .voorwoord h3 {
        font-size: 1.5rem;
    }

    .voorwoord p,
    .voorwoord ul li {
        font-size: 1rem;
    }
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    
    nav ul {
        justify-content: center;
    }

    .over-mij-content {
        grid-template-columns: 1fr;
    }
}

/* modal voor de projecten */
#documenten-container {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#documenten-container ul {
    list-style-type: none;
    padding: 0;
}

#documenten-container li {
    margin: 10px 0;
}

#documenten-container a {
    text-decoration: none;
    color: #0066ff;
}

#documenten-container a:hover {
    text-decoration: underline;
}

/* midal voor gip */
#documenten-container_gip {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#documenten-container_gip ul {
    list-style-type: none;
    padding: 0;
}

#documenten-container_gip li {
    margin: 10px 0;
}

#documenten-container_gip a {
    text-decoration: none;
    color: #0066ff;
}

#documenten-container_gip a:hover {
    text-decoration: underline;
}