/* Algemeen voor alle elementen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* Header */
.header-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(to right, #7ec0ce, #bd79c2);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.header-container .content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 3s ease;
}

.header-container.center .content {
    transform: translateX(50%);
}

.header-container img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 1.5s ease;
}

.header-container img.visible {
    opacity: 1;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Caveat", serif;
    margin-left: 2%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.header-text.visible {
    opacity: 1;
}

.header-text h1,
.header-text em {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid black;
    animation: typemachine 4s steps(40, end), blink 0.5s step-end infinite;
}

@keyframes typemachine {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Navigatiebalk */
.navigatiebar {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #000000;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

.navigatiebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigatiebar ul li {
    display: inline-block;
    margin: 0 15px;
}

.navigatiebar ul li a {
    font-size: 20px;
    text-decoration: none;
    color: transparent;
    background: linear-gradient(to right, #7ec0ce, #bd79c2);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold;
}

.navigatiebar ul li a:hover {
    opacity: 0.8;
}

@media (max-width: 750px) {
    .navigatiebar ul li a {
        font-size: 16px; /* Verklein de lettergrootte voor kleinere schermen */
    }
}

/* Sociale Media */
.sociale-media {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background: linear-gradient(to bottom, #ffffff, #000000);
    padding-top: 80px;
    padding-bottom: 180px;
}

.sociale-media a {
    margin: 0 10px;
    text-decoration: none;
}

.sociale-media button {
    background-color: #7ec0ce;
    color: #000;
    border: none;
    padding: 10px 60px;
    font-size: larger;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sociale-media button:hover {
    background-color: #bd79c2;
}

@media (max-width: 750px) {
    .sociale-media {
        flex-direction: row; 
        justify-content: center;
        margin-top: 30px;
    }

    .sociale-media button {
        padding: 10px 20px;
        font-size: 14px;
        margin: 5px;  
    }
}

/* Over Mij */
#over-mij {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 20px 20px 30px;
    padding: 10px;
    border: 2px solid #000000;
    border-radius: 15px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.overmij-text {
    flex: 1;
    margin: 20px;
}

.overmij-img img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    margin: 40px 20px 0 20px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.overmij-text h2 {
    text-align: center;
    font-size: 2rem; 
    margin-left: 140px;
}

.over-mij2 {
    margin: 70px;
}

/* Mediaquery voor kleinere schermen */
@media (max-width: 750px) {
    #over-mij {
        flex-direction: column; 
        padding: 0;
    }

    #over-mij h2 {
        text-align: left;
    }

    .overmij-text {
        text-align: left;
    }

    .over-mij2 {
        text-align: justify; 
        word-break: break-word;
        font-size: 10px;
        padding: 0;
        margin: 0;
    }

    .overmij-img img {
        margin-top: 20px;        /* Verkleint de ruimte tussen tekst en afbeelding */
        width: 150px;            /* Verkleint de afbeelding */
    }
}

/* Projecten */
.projecten-container {
    background-color: #000;
    color: #ffffff;
    padding-left: 100px;
    padding-right: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen op grotere schermen */
    gap: 20px;
    grid-auto-rows: auto;
}

.projecten-header {
    text-align: center;
    font-size: 2rem;
    grid-column: span 3;
    font-weight: bold;
    color: transparent;
    background: linear-gradient(to right, #7ec0ce, #bd79c2);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px;
}

.project-item {
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    box-shadow: 8px 8px 8px #bd79c2;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    margin-top: 0;
    padding: 10px;
}

.project-item h3 {
    text-align: center;
}

.digitalstory {
    display: block;
    text-align: center;
    font-size: smaller;
    color: #555;
    text-decoration: none;
}

.link {
    color: #555;
    text-decoration: none;
}

.project-item .center-text {
    display: block;
    text-align: center;
    font-size: smaller;
    color: #555;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.project-item .project-info {
    padding: 15px;
    text-align: center;
}

.project-item .project-info h3 {
    font-size: 1.5rem;
    color: #333;
}

.project-item .project-info p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* Media queries */
@media (max-width: 1024px) {
    .projecten-container {
        display: flex;
        flex-direction: column; /* Items onder elkaar */
        gap: 20px; /* Ruimte tussen de items */
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .projecten-container {
        display: flex;
        flex-direction: column; /* Items onder elkaar */
        gap: 20px; /* Ruimte tussen de items */
        padding-left: 10px;
        padding-right: 10px;
    }
}

/*DIPLOMA EN CERTIFICATEN*/

.diploma-certificaten {
    background-color: #000;
    color: white;
    padding: 40px 40px 100px 40px;
    text-align: center;
}

.dipl-header {
text-align: center;
font-size: 2rem;
grid-column: span 3;
font-weight: bold;
color: transparent;
background: linear-gradient(to right, #7ec0ce, #bd79c2);
-webkit-background-clip: text;
background-clip: text;
margin-bottom: 10px;
background-color: #000;
padding-top: 60px;
}

.diploma-certificaten h2 {
    color: transparent;
background: linear-gradient(to right, #7ec0ce, #bd79c2);
-webkit-background-clip: text;
background-clip: text;
}

.diploma-certificaten h3 {
    color: transparent;
background: linear-gradient(to right, #7ec0ce, #bd79c2);
-webkit-background-clip: text;
background-clip: text;
}

.diploma-certificaten h4 {
    color: #7ec0ce;
}

.diploma-certificaten em {
    color: #555;
}

/*CONTACT*/
.contact-id {
    background: linear-gradient(to bottom, #000, #ffffff);
    text-align: center;
    padding-bottom: 120px;
    color: rgb(0, 0, 0);
}

.contact {
    color: rgb(0, 0, 0);
    background-color: aliceblue;
    padding: 0px 40px 40px 40px;
    border: 2px solid #ffffff;
    border-radius: 15px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.495);
    margin-left: 25%;
    margin-right: 25%;
}

.contact-id h2 {
    font-size: 2rem;
    padding-top: 80px;
    color: transparent;
    background: linear-gradient(to bottom, #7ec0ce, #bd79c2);
    -webkit-background-clip: text;
    background-clip: text;
}

.contact-id b {
    color: transparent;
    background: linear-gradient(to bottom, #7ec0ce, #bd79c2);
    -webkit-background-clip: text;
    background-clip: text;
}

.Verzenden {
    background: linear-gradient(to bottom, #bd79c2, #7ec0ce);
    color: #000;
    border: none;
    padding: 10px 60px;
    font-size: larger;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hover effect */
.Verzenden:hover {
    background: linear-gradient(to bottom, #7ec0ce, #bd79c2);
    color: #ffffff;
}

/* Voor kleinere schermen */
@media (max-width: 750px) {
    .contact {
        margin-left: 10%;
        margin-right: 10%;
    }

    .Verzenden {
        padding: 8px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .contact {
        margin-left: 5%;
        margin-right: 5%;
    }

    .Verzenden {
        padding: 8px 30px;
        font-size: 0.9rem;
    }
}

.footer-content {
    width: 100%;
    background-color: #333; /* Of een andere kleur die past bij je ontwerp */
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
}

.footer-content a {
    text-decoration: none;
    color: white;
    margin: 0 10px;
}

.footer-content button {
    background-color: #7ec0ce; /* Je kunt dit aanpassen aan je ontwerp */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.footer-content p {
    margin-top: 10px;
}

