/*
Theme Name: Anker Fonds
Description: Custom theme for Anker Fonds
Version: 1.0
Author: Ruben Oosterman
*/

:root {
    --color-white: #FFFFFF;
    --color-light-gray: #797979;
    --color-gray: #707070;
    --color-dark-gray: #777777;
    --color-darker-gray: #4D4C4C;
}

html,
body {
    min-height: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    background: #a0caa70b;
    /* background: rgb(92,146,87); */

    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 0 20px;
    max-width: 1228px;
    margin: auto;
}

main h2 a {
    color: black;
    text-decoration: none;
}

.gridwrapper {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div, li {
    font-family: Helvetica, Arial, sans-serif;
}

a {
    color: black;
}

.site-main {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Header */

.site-header {
    width: 100%;
    flex-shrink: 0;
    border-bottom: 1px solid #dcdbdb;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    padding: 20px;
    max-width: 1228px;
    margin: auto;
}

.header-language {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.afbeeldinghomepage {
    display: flex !important;
    justify-content: center !important;
}

.header-anchor img {
    display: block;
    width: 100%;
    max-width: 70px;
    height: auto;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.header-brand img {
    display: block;
    max-width: 60%;
    height: auto;
}

.header-meta {
    display: grid;
    grid-template-columns: 1fr;
}

.header-meta-item {
    display: flex;
    align-items: center;
    justify-content: center;

    text-transform: uppercase;
}


/* Footer */

.site-footer {
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
    /* background: #a0caa70b; */
    border-top: 1px solid #dcdbdb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
    max-width: 1228px;
    margin: auto;
    gap: 20px;
}

.footer-address {
    display: flex;
    flex-direction: column;
}

.footer-address address {
    font-style: normal;
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-links a, .footer-links span {
  text-decoration: none;
  color: #5C9257;  
  font-weight: 900;
}

.employees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 20px;
}


.formulier {
    width: 100%;
}

.employee {
    min-width: 0;
}

.employee__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.employee__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee__name {
    margin-bottom: 5px;
}

.employee__function {
    margin-top: 0;
}

.employee__linkedin {
    display: inline-block;
}

.header-meta-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: right;
    align-items: center;
    gap: 20px;
}

.header-meta-list a {
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-weight: 900;
}

@media (max-width: 900px) {
    .employees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-language {
        display: none;
    }
    .header-grid {
        grid-template-columns: 1fr 1fr;
    }
    .header-brand {
        justify-content: left;
    }
    .header-brand a {
        justify-content: left;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .header-brand img {
        max-width: 78%;
    }
    .footer-links, .footer-address address {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .employees-grid {
        grid-template-columns: 1fr;
    }
    .header-brand img {
        max-width: 90%;
    }
    .header-meta-list {
        gap: 10px;
    }
    .header-meta-list a {
        font-size: 12px;
    }
}