@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
html{
    font-size: 62.5%;
}
body{
    background-color: #061D3D;
    background-image:url('/img/spreker.org-bg.svg');
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Open sans', sans-serif;
    padding: 3rem;
    font-size:1.6rem;
    font-weight: 400;
}
h1{
    font-size: 6.8rem;
    font-weight: 700;
}
h2{
    font-size:4.8rem;
    font-weight: 700;
}
h3{
    font-weight: 700;
}
.h3{
    font-weight: 700;
}
p{
    font-weight: 400;
}

/* basis elementen layout */

section{
    max-width: 1600px;
    margin: 0 auto;
}

header{
    max-width: 1600px;
    margin: 0 auto;
}

footer{
    max-width: 40rem;
    margin: 6rem auto;
    text-align: center;
}

/* specifieke elementen layout */

#welkom{
    max-width: 120rem;
    padding:3rem 0 6rem 0;
}
#promotie{
    max-width: 120rem;
    padding:3rem 0 6rem 0;
}
#spreker-toevoegen{
    max-width: 80rem;
    padding:3rem 0 6rem 0;
}

/* herbruikbare blokken */

.bttn{
    border-radius: 1.6rem;
    padding:0.8rem 1.4rem; 
    margin:1rem 0;
    background-color: #E9B13A;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.bttn.invert{
    background-color: #fff;
    color: #E9B13A;
}
.mail{
    background-image:url('/img/mail.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 3.4rem;
    padding:0.6rem 2rem 0.6rem 4rem;
}
.web{
    background-image:url('/img/web.svg');
    background-repeat: no-repeat;
    background-position: left center;  
    background-size: 4.4rem;
    padding:0.6rem 2rem 0.6rem 4rem;
}
.phn{
    background-color: #fff;
    background-image:url('/img/phn.svg');
    background-repeat: no-repeat;
    background-position: left center;   
    background-size: 5rem;
    padding:0.6rem 2rem 0.6rem 6rem;
    color: #E9B13A;
}
.social-link{
    color: #fff;
}
/* header opmaak */

.head-top{
    background-color: #fff;
    padding:2rem;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.head-top img{
    max-width: 20%;
}
.head-top nav{
}
.head-top ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 0rem;

}
.head-top li{
    padding: 0.4rem 0;
}
.head-top li a{
    padding: 0.4rem 4rem;
    border-right: 2px solid #E9B13A;
    color: #1F2435;
    text-decoration: none;
    font-size: 1.6rem;
}
.head-top li:first-of-type{
    border-left: 2px solid #E9B13A;
}
.head-top li a:hover{
    background-color: #E9B13A;
    color: #fff;
}

.head-top .add{
    align-self: baseline;
    margin-top: 0rem;
}


.head-bottom{
    background-color: #E9B13A;
    background-size:32rem;
    padding:1rem;
    font-size:1.4rem;
}


/* welkom opmaak */

.welkom-area .tekstvlak{
    display: flex;
}
.welkom-area p{
    flex: 1;
    margin: 0.8rem;
}
.welkom-area h1{
    text-align: center;
}

/* promotie opmaak */

.promotie-area{
    background-color:#5FC16E;
    color: black;
    border-radius: 3rem;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    box-shadow: 0.04rem 0.04rem 3rem #00000062;
}
.promotie-area .textvlak{
    padding-right: 2rem;
}
.promotie-area .h3 a{
    color: #000;
    text-decoration: none;
}
.promotie-area .promoimage{
    width:100%;
    background-image: url('/img/groenland-profiel.jpg');
    background-size: 144%;
    background-position: center;
    border-radius: 3rem;
}
.promotie-area h2 a{
    text-decoration: none;
    color: black;
}
.promotie-area h2 {
    padding: 0;
    margin: 0;
}
.promotie-area .h3 {
    padding: 0;
    margin: 0;
}
.promotie-area .bttn{
    background-color: #061D3D;
}

/* spreker toevoegen opmaak */

.spreker-toevoegen-area{
    background-color: #E9B13A;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap:4rem;
}
.spreker-toevoegen-area .textvlak{
    flex: 3.5;
}
.spreker-toevoegen-area a{
    flex: 1;
}

/* sprekers filter */
.sprekers-filter{
    padding: 1rem 2rem 1rem 0;
}
.sprekers-filter ul{
    display: flex;
    padding: 0;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}
.sprekers-filter li{
    background-color: #fff;
    color: #000;
    padding: .5rem 2rem;
    user-select: none;
}
.sprekers-filter li:hover{
    background-color: #E9B13A;
    color: #fff;
    cursor: pointer;
}
.sprekers-filter .selected{
    background-color: #5FC16E;
    color: #fff;
    font-weight: 600;
}

/* sprekers-opmaak */
.sprekers-wrap{
    margin-top: 8rem;
    margin-bottom: 2rem;
}
.sprekers-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(44rem,1fr));
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    grid-gap: 2rem;
}
.spreker{
    background-color: #B5B5B5;
    color: #1F2435;
    padding:1rem;

}
.spreker .bttn{
    margin:.4rem 0;
    font-size: 1.4rem;
}
.spreker h3{
    margin:1rem 0 1rem 0.3rem;
    flex-basis: 100%;
}
.spreker a{
    margin:0;
}

.spreker-links{
    margin-top:0;
    text-align: left;
}
.spreker .phn{
    letter-spacing: .14rem;
}

.spreker.no-mail .mail{
    display: none;
}
.spreker.no-phn .phn{
    display: none;
}

/* spreker mogelijkheden */
.spreker-mogelijkheden{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.spreker-mogelijkheden .kan{
    background-color: #061D3D;
    color: #fff;
    padding: 0.4rem 1rem;
    white-space: nowrap; 
}


/* breakpoints fixes */
@media only screen and (max-width: 1200px) {
    H1{
        font-size: 5rem;
    }
    .head-top li a{
        padding: 0.4rem 3rem;
    }
    .promotie-area .promoimage{
        background-size: 170%;
    }
    
}
@media only screen and (max-width: 900px) {

    H1{
        font-size: 4rem;
    }
    H2{
        font-size: 3.6rem;
    }
    .promotie-area .promoimage{
    display: none;
    }
    .spreker-toevoegen-area{
        flex-direction: column;
    }
    .head-top{
        flex-direction: column;
        gap: 2rem;
    }
    .head-top img{
        max-width: 36%;
    }
    .head-top .add{
        align-self:center;
        margin: 0;
    }
    .head-top li{
        padding: 0.2rem 0;
    }
    .head-top li a{
        padding: 0.2rem 3rem;
        font-size: 1.4rem;
    }

    
}
@media only screen and (max-width: 600px) {

    .welkom-area .tekstvlak{
        flex-direction: column;
    }
    .head-top img{
        max-width: 56%;
    }
    .head-top li a{
        padding: 0.2rem 2rem;
    }
    .promotie-area .textvlak{
        max-width: 100%;
    }
    .promotie-area .textvlak H2{
        font-size: 3rem;
    }
    .promotie-area .textvlak H3{
        font-size: 1.4rem;
    }

    .spreker-links{
        display: flex;
        flex-direction: column;
    }
    .sprekers-container{
        grid-template-columns: repeat(auto-fill, minmax(34rem,1fr));
    }
}