    /* Algemene stijlen */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    }

    @font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    }


    @font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Semibold.otf') format('woff2'),
            url('../fonts/ClashDisplay-Extralight.otf') format('woff');
    font-weight: 700;
    font-style: normal;
    }

    /* Gebruik het font */

    * {
    font-family: 'Clash Display', sans-serif;
    }

    h1, h2, h3, h4 {
    font-family: 'Clash Display', sans-serif;
    }

    body {
    font-family: 'Clash Display', sans-serif;
    }


    body {
    line-height: 1.6;
    color: whitesmoke
    }

    /* Header */
    .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #404040;
    }

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

    .header a:hover{
    color: #007bff;
    }
    .name {
    font-size: 1.5rem;
    font-weight: bold;
    }

    .navbar {
    list-style: none;
    display: flex;
    gap: 20px;
    }

    .navbar a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 1rem;
    }

    .navbar a:hover {
    color: #007bff;
    }

    section div{
    color: #333;
    }

    section div p{
    color: #333;
    }

    section h2{
    color: #333;
    }

    /* Hero Sectie */
    .hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: calc(100vh - 80px); /* Trek de headerhoogte af */
    padding: 20px;
    background: #404040;
    position: relative; /* Zorg ervoor dat de social bar over de afbeelding komt */
    }

    .hero h2{
    color: white;
    }

    .hero p{
    color: white;
    }

    .image-container {
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    }

    .profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 1em;
    }

    .btn:hover {
    background: #0056b3;
    }

    /* Social Media Bar */
    .social-bar {
    position: absolute;
    bottom: 20px; /* Plaats de balk onderaan de hero image */
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    }

    .social-icon {
    font-size: 30px; /* Zet de grootte van de iconen */
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icon:hover {
    color: #007bff; /* Verander de kleur bij hover */
    transform: scale(1.1); /* Vergroot het icoon bij hover */
    }

    .social-icon i {
    display: inline-block;
    }

    /* Wie ben ik? sectie */
    .wiebenik {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: calc(80vh - 80px); /* Trek de headerhoogte af */
    background-color: whitesmoke;
    }

    .wiebenik div {
    color: #333;
    }

    .wiebenik h2{
    color: #333;
    font-size: xx-large;
    }

    /* Projecten sectie */
    .fixfellow{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: calc(100vh - 80px); /* Trek de headerhoogte af */
    background-color: #bbd0e7;
    }

    /* Hoe ga ik te werk? sectie */
    .hoegaiktewerk{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: calc(100vh - 80px); /* Trek de headerhoogte af */
    background-color: whitesmoke;

    }

    .hoegaiktewerk h2{
        font-size: xx-large;
    }

    /* Samenwerken sectie formulier */
    .samenwerken {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    background-color: #bbd0e7;
    padding: 50px;
    }

    .samenwerken h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    }

    .contact-form {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .contact-form .form-group {
    margin-bottom: 15px;
    }

    .contact-form label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    }

    .contact-form input,
    .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    }

    .contact-form textarea {
    resize: vertical;
    }

    .contact-form button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    }

    .contact-form button:hover {
    background: #0056b3;
    }

    .projects-section {
    padding: 50px;
    text-align: center;
    background-color: #bbd0e7;
    }

    .projects-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    }

    .projects-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }

    .project {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px; /* Vergroot de breedte */
    height: auto; /* Zorg dat de hoogte flexibel blijft */
    text-align: center;
    transition: transform 0.3s ease;
    padding-bottom: 20px; /* Extra ruimte voor tekst */
    }

    .project img {
    width: 100%;      /* Zorg ervoor dat de afbeelding de breedte van de container volgt */
    height: auto;     /* Zorg ervoor dat de hoogte van de afbeelding automatisch wordt aangepast om de verhoudingen te behouden */
    max-height: 150px; /* Maak de maximale hoogte kleiner, bijvoorbeeld 150px */
    object-fit: contain; /* Zorg ervoor dat de afbeelding niet wordt afgesneden, maar geheel zichtbaar blijft */
    }


    .project {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        max-width: 300px;
        text-align: center;
        transition: transform 0.3s ease;
        padding-top: 30px; /* Voegt extra ruimte bovenin de witte box toe */
    }
    

    .project h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #333;
    }

    .project p {
    font-size: 1rem;
    padding: 0 15px;
    margin-bottom: 15px;
    color: #666;
    }

    .project .btn {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    }

    .project .btn:hover {
    background-color: #0056b3;
    }

    .inspiration-section {
        padding: 50px;
        background-color: #bbd0e7;
        text-align: center;
    }

    .inspiration-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: #333;
    }

    .inspiration-section p{
        color: #333;
        margin-bottom: 2em;
    }
    .inspiration-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Zorg voor 3 kolommen */
        gap: 20px; /* Ruimte tussen de afbeeldingen */
        justify-items: center; /* Centreer de afbeeldingen in hun grid cellen */
    }

    .inspiration-item {
        position: relative;
        width: 100%;
        max-width: 100%; /* Zorgt ervoor dat afbeeldingen flexibel blijven */
        aspect-ratio: 1 / 1; /* Zorgt ervoor dat de afbeeldingen vierkant blijven */
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .inspiration-item:hover {
        transform: scale(1.05); /* Vergroot de afbeelding iets bij hover */
    }

    .inspiration-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Zorgt ervoor dat de afbeelding altijd de hele ruimte vult */
    }

    .inspiration-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4); /* Donkere overlay voor effect */
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .inspiration-item:hover .overlay {
        opacity: 1; /* De overlay wordt zichtbaar bij hover */
    }

    .overlay-text {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
    }

    .overmij{
        background-color: #bbd0e7;
    }
    
    .about-me {
        max-width: 1200px;
        margin: 50px auto;
        padding: 40px;
        background-color: #bbd0e7;
    }

    .about-me h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 30px;
        text-align: center;
        font-weight: bold;
    }

    /* Regels met afbeeldingen en tekst */
    .about-row {
        display: flex;
        margin-bottom: 5    0px;
        margin-top: 3em;
        padding-bottom: 0%;
    }
    /* 
    .about-row.reversed {
        flex-direction: row-reverse;
    } */

    .about-image {
        flex: 1;
        margin-right: 30px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: -0.4em;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .about-text {
        flex: 1;
        padding: 20px;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #555;
        text-align: justify;
        background-color: white;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        margin-right: 2em;
    }

    /* Werkervaring sectie */
    .werkervaring {
        background-color:white;
        padding: 40px;
        margin-top: 50px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .werkervaring h1 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 20px;
        text-align: center;
    }

    .werkervaring img {
        width: 40%;
        height: auto;
        border-radius: 12px;
        margin-bottom: 20px;
        margin-top: 2em;
        margin-right: 3em;
    }

    .werkervaring div{
        flex-wrap: wrap;
        flex-direction: row;
    }

    .werkervaring .about-text {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #555;
        text-align: justify;
    }
    .project-header {
        text-align: center;
        margin: 50px 0;
    }

    .project-logo {
        max-width: 250px;
        height: auto;
    }

    .project-details {
        display: flex;
        background-color: #fff;
        border-radius: 10px;

    }

    .project-details .text-block {
        margin-bottom: 20px;
        color: #333;
        font-size: 1rem;
     
    }

    .text-block{
        margin: 1em;
        padding: 2em;
        max-width: 20em;
        flex-direction: column;
    }

    .project-gallery {
        padding: 50px 20px;
        background-color: #bbd0e7;
        text-align: center;
    }

    .project-gallery h2 {
        margin-bottom: 20px;
        color: #333;
    }

    .gallery-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        justify-content: center;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .gallery-item img:hover {
        transform: scale(1.05);
    }

    .text-block{
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .vormgeving section img{
        max-width: 500px; /* Limiteer de maximale breedte */
        height: auto; /* Behoud de originele verhouding */
    }

    .vormgevingfoto{
            display: flex;
            justify-content: center;
            background-color: #fff;
            border-radius: 10px;
            background-color: #bbd0e7;
    }

    .vormgevingfoto div{
     margin: 2em;
}

    /* Footer */
    footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 20px;
    }
