/* start font en achtergrondkleur */
body {
    font-family: "Inter", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #222222;
}

/* end font */

/* start grid */
/* grid van 16 colomns met een colomn gap van 16px */
.container {
    display: grid;
    max-width: 1080px;
    position: relative;
    grid-template-columns: repeat(16, 1fr);
    margin: 0 auto;
    column-gap: 16px;
}

/* end grid */

/* start header */
/*  rgba gebruikt voor een specifieke kleur met een opacity van 50% */
header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 200px;
}

/* start logo */
/*  afbeelding heeft een maximale breedte van 50px, neemt de eerste vier colomns in  */
header .card:nth-child(1) {
    font-size: 30px;
    grid-column: 1 / span 4;
    width: 50px;
}

/* end logo */

/* start buttons */
header .card:nth-child(2) {
    grid-column: 11 / span 6;
}

/* end buttons */

/* start navbar */

/*  de lijst stijl, zonder bullets of nummers */
/*  lettertype van 24px en een zwaarte van 400 en de elementen worden in het midden gecentreerd */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 24px;
    font-weight: 400;
    align-items: center;
}

li {
    list-style: none;
    display: inline-block;
}

/* stijl voor navigatieknoppen */
/*  knoppen hebben een achtergrond met de kleur #222222 en een witte tekst */
/*  de knoppen hebben een padding van 14px 16px romdom de knoppen en een linker margin van px */
/*  none bij text-decoration verwijdert de standaard onderstreping onder de knoppen */
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background-color: #222222;
    margin-left: 10px;
    border-radius: 10px;
    padding: 10px;
    width: 90px;
}

/* hover-effect voor navigatieknoppen met de kleur #edc483 */
li a:hover {
    background-color: #EDC483;
}

/* stijl voor de actieve knop */
/*  actieve knoppen hebben een achtergrond met de kleur #edc483 en een tekst met de kleur #222222 */
li a.active {
    background-color: #EDC483;
    color: #222222;
    font-weight: normal;
}

/* end navbar */

/* end header */

/* start footer */

footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 200px;

}

footer .card:nth-child(1) {
    padding: 10px;
    font-size: 20px;
    grid-column: 1 / span 16;
    max-width: 100%;

}

footer p {
    color: #ffffff;
    font-family: "Inter", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-align: center;

}

/* end footer */

/* start index.html */

/* start section homePage */
#homePage .container .homeName h1 {
    font-size: 80px;
}

/* styling voor span name-first */
/*  lettertype is 80px en vetgedrukt (700) zonder extra ruimte (line-height) */
#homePage .container .homeName .name-first {
    color: #FFF;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

/* styling voor span name-last */
/*  lettertype is 80px en vetgedrukt (700) zonder extra ruimte (line-height) */
#homePage .container .homeName .name-last {
    color: #EDC483;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

/*  positie van mijn naam een subtitle */
#homePage .container .homeName,
#homePage .container .homeSubtitle {
    grid-column: 1 /span 9;
}

/*  een margin van 275px boven mijn naam */
#homePage .container .homeName {
    margin-top: 275px;
}

#homePage .container .homeSubtitle {
    color: #FFF;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

#homePage .container .homeImage {
    grid-column: 11 / span 6;
}

/*  afbeelding heeft hoeken van 30%, een automatische hoogte (auto), een maximale breedte (100%), een margin van 117px boven en onder, en een schadow effect rechts onder de afbeelding  */
#homePage .container .homeImage img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    margin-top: 117px;
    margin-bottom: 117px;
    flex-shrink: 0;
    box-shadow: 10px 4px 10px rgba(0, 0, 0, 0.5);
}

#homePage .container .homeSubtitle p {
    font-size: 40px;
    margin-top: 10px;
}

#homePage .container .homeSubtitle .highlight {
    color: #EDC483;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

/* end section homePage */

/* end index.html */

/* start about.html */



/* start section aboutHero */
#aboutHero .container .titelText h1 {
    font-size: 80px;
}

#aboutHero .container .titelText {
    grid-column: 2 /span 9;
    margin-top: 275px;
    color: #FFF;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

#aboutHero .container .aboutHero {
    grid-column: 11 / span 6;
}

#aboutHero .container .aboutHero img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    margin-top: 117px;
    margin-bottom: 117px;
    flex-shrink: 0;
    box-shadow: 10px 4px 10px rgba(0, 0, 0, 0.5);
}

#aboutHero .container .titelText .highlight {
    color: #EDC483;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

/* end section aboutHero */

/* start section aboutWieBenIk */
#aboutWieBenIk {
    background-color: #323131;
}

#aboutWieBenIk .wiebenikTitel {
    grid-column: 2 / span 14;
    margin-top: 100px;
    color: #FFF;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

#aboutWieBenIk .wiebenikTekst {
    grid-column: 2 / span 14;
    margin-top: 20px;
    margin-bottom: 100px;
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

#aboutWieBenIk .wiebenikTekst p {
    margin-bottom: 20px;
    padding: 10px;
}

/* end section aboutWieBenIk */

/* start article aboutErvaringen */
#aboutErvaringen .ervaringenTitel {
    grid-column: 2 / span 14;
    margin-top: 100px;
    color: #FFF;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

#aboutErvaringen .ervaringenTekst {
    grid-column: 2 / span 15;
    margin-top: 10px;
    margin-bottom: 100px;
}

#aboutErvaringen .ervaringenTekst ul {
    list-style-type: disc;
    padding-left: 20px;
}

#aboutErvaringen .ervaringenTekst li {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.5;
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: disc outside none;
    display: list-item;
    margin-left: 1em;
}

#aboutErvaringen .ervaringenTekst h3 {
    color: #EDC483;
    font-family: Inter;
    font-size: 20px;
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

/* end article aboutErvaringen */

/* start article aboutVaardigheden */
#aboutVaardigheden {
    background-color: #323131;
}

#aboutVaardigheden .vaardighedenTitel {
    grid-column: 2 / span 14;
    margin-top: 100px;
    color: #FFF;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

#aboutVaardigheden .vaardighedenTekst {
    grid-column: 2 / span 7;
    margin-top: 20px;
    margin-bottom: 100px;

}

#aboutVaardigheden .vaardighedenTekst h3 {
    color: #EDC483;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

#aboutVaardigheden .vaardighedenTekst ul {
    list-style-type: disc;
    padding-left: 20px;
}

#aboutVaardigheden .vaardighedenTekst li {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.5;
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: disc outside none;
    display: list-item;
    margin-left: 1em;
}

#aboutVaardigheden .vaardighedenTalenenCV {
    grid-column: 13 / span 5;
    margin-top: 20px;

}

#aboutVaardigheden .vaardighedenTalen h3 {
    color: #EDC483;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

#aboutVaardigheden .vaardighedenTalen ul {
    list-style-type: disc;
    padding-left: 20px;
}

#aboutVaardigheden .vaardighedenTalen li {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.5;
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: disc outside none;
    display: list-item;
    margin-left: 1em;
}

#aboutVaardigheden .vaardighedenCV h3 {
    color: #EDC483;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;

}

#aboutVaardigheden .vaardighedenCV {
    list-style-type: none;
    margin-top: 20px;
    padding: 0;
    overflow: hidden;
    font-size: 20px;
    font-weight: 400;
    align-items: center;
}

#aboutVaardigheden .vaardighedenCV {
    list-style: none;
    display: inline-block;

}

#aboutVaardigheden .vaardighedenCV a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background-color: #222222;
    margin-left: 10px;
    border-radius: 10px;
    padding: 10px;
    width: 200px;

}

#aboutVaardigheden .vaardighedenCV a:hover {
    background-color: #EDC483;
}

/* end article aboutVaardigheden */

/* end about.html */

/* start portfolio.html */
#portfolioPagina .container .titelText {
    grid-column: 5 /span 8;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #FFF;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;

}

/*  .hightlight tekst heeft de kleur #edc483  */
#portfolioPagina .container .titelText .highlight {
    color: #EDC483;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

#portfolioCards .container {
    margin-bottom: 30px;
}

/* de link die rondom mijn porfolio-cards zit, die de gehele card klikbaar maakt */
.card-link {
    grid-column: span 8;
    text-decoration: none;
    color: inherit;
}

/* de afbeeldingen heb een aspect ratio van 3/4 en bedekken de volledige ruimte (object-fit: cover) */
#portfolioCards img {
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
}

/* mijn portfolio-cards met een verbordge stuk tekst, met een overgang van 0.2s */
/* bij het bewegen over de kaart veranderd de cursor in een handje wat laat zien dat het klikbaar is */
#portfolioCards .card {
    display: block;
    overflow: hidden;
    border-radius: 30px;
    opacity: 0.75;
    box-shadow: 10px 4px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    margin-top: 20px;
}

/* de tekst binnen de cards is gepositioneerd aan de onderkant, met een padding van 2.2rem (35px) */
#portfolioCards .card-content {
    position: absolute;
    height: 20%;
    color: #FFF;
    bottom: 0;
    width: 100%;
    padding: 2.2rem;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5)
}

#portfolioCards .card-content h2 {
    color: #EDC483;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

#portfolioCards .card-content p {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

/* als je de muis over de kaart heen beweegt wordt de hoogte verandert met een animatie van 0.7s en neemt het 60% van de afbeelding in */
#portfolioCards .card-content:hover {
    height: 60%;
    transition: 0.7s;
}

/* end portfolio.html */

/* Start contact.html */

#contactMain .container {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: auto;
    align-items: center;
    column-gap: 16px;
}

/* Laat elementen in de container deelnemen aan het grid */
#contactMain .container .row {
    display: contents;
}

/* Neem 6 kolommen in beslag */
#contactMain .row section.left {
    grid-column: span 6;
    grid-row: 1;
    min-width: 320px;
    margin-right: 60px;
}

#contactMain .row section.right {
    grid-column: span 10;
    grid-row: 1;
}

/* Start linker contactinformatie */

#contactMain section.left .contactTitel h2 {
    position: relative;
    font-size: 40px;
    color: #fff;
    display: inline-block;
    margin-bottom: 25px;
}

/* door inline-block verschijnt de tekst netjes naast de andere teskt */
#contactMain section.left .contactTitel h2 .highlight {
    position: relative;
    font-size: 40px;
    color: #EDC483;
    display: inline-block;
}

#contactMain section.left .contactTitel p {
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-bottom: 22px;
}

#contactMain section.left .contactInfo {
    margin-bottom: 16px;
}

#contactMain .contactInfo .contactIcons {
    display: flex;
    align-items: center;
    margin: 25px 0px;
}

/* flex-shrink 0 zorgt ervoor dat de iconen niet krimpen wanneer er te weinig ruimte is */
#contactMain .contactIcons .icon {
    width: 45px;
    height: 45px;
    border: 2px solid #EDC483;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

/* de iconen zijn absoluut gepositioneerd in het midden van de cirkels. top 50% en left 50% en transform -50%, -50% zorgen hiervoor */
#contactMain .contactIcons .icon i {
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#contactMain .contactIcons .contactDetails {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#contactMain .contactIcons .contactDetails span {
    display: block;
    color: #fff;
    font-size: 20px;
}

#contactMain .contactIcons .contactDetails span:nth-child(1) {
    text-transform: uppercase;
    color: #fff;
}

#contactMain section.left .contactSocialMedia {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-gap: 10px;
    margin: 22px 0px 20px;
}

/* zorg ervoor dat de iconen over de eerste twee kolommen worden verdeeld over een span van 2 */
#contactMain .contactSocialMedia a {
    grid-column: span 2;
    width: 100%;
    height: 35px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    background-color: #EDC483;
    transition: 0.4s;
}

/* icon zelf */
#contactMain .contactSocialMedia a i {
    color: #222222;
    font-size: 18px;
    line-height: 35px;
    border: 1px solid transparent;
    transition-delay: 0.4s;
}

/* hover-effect */
#contactMain .contactSocialMedia a:hover {
    transform: translateY(-5px);
    background-color: #222222;
    color: #EDC483;
    border: 1px solid #EDC483;
}

#contactMain .contactSocialMedia a:hover i {
    color: #EDC483;
}

/* end linker contactinformatie */

/* start rechter contactForm */

/* de rechter sectie is nog work in progress */

/* end rechter contactForm */

/* end contact.html */

/* start workinprogress.html */

#workPage .container .workImage {
    grid-column: 6 / span 6;
}

/*  afbeelding heeft hoeken van 30%, een automatische hoogte (auto), een maximale breedte (100%), een margin van 117px boven en onder, en een schadow effect rechts onder de afbeelding  */
#workPage .container .workImage img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    margin-top: 117px;
    margin-bottom: 117px;
    flex-shrink: 0;
}

.workImage a {
    display: block;
}

/* end workinprogress.html */