@font-face {
    font-family: 'KPNMetricWebRegular';
    src: url("fonts/KPNMetricWeb-Regular.woff") format('woff');
}

@font-face {
    font-family: 'KPNMetricWebLight';
    src: url("fonts/KPNMetricWeb-Light.woff") format('woff');
}

@font-face {
    font-family: 'KPNMetricWebSemiBold';
    src: url("fonts/KPNMetricWeb-SemiBold.woff") format('woff');
}

@font-face {
    font-family: 'KPNMetricWebBold';
    src: url("fonts/KPNMetricWeb-Bold.woff") format('woff');
}

body {
    margin: 0;
    min-height: 100vh;
    background: url("images/achtergrond-afbeelding-shop.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'KPNMetricWebRegular';	
}


.pagina {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.kop {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.logo {
    width: 320px;
    height: auto;
}

.titel {	
    padding-top: 20px;
	font-size: 48px;	
}

.welkom_container {
	margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.welkom_tekst {
	font-family: 'KPNMetricWebBold';
	font-size: 50px;	
    text-align: center;
}

.welkom_info {	
	font-size: 36px;	
    text-align: center;
}

.tekst_titel {
	font-family: 'KPNMetricWebBold';
    font-size: 30px;
    font-weight: bold;		
	text-align: center;
	margin: 0px;
}

.tekst_tekst {	
	font-size: 1.5em;
	text-align: center;
	color: #000;
}

.tekst_lijst {	
	font-size: 1.5em;	
}

/* Afgeronde vlakken */
.cards {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 360px;
    padding: 32px;
    border-radius: 16px;
    background: #00C300;
}

.info-card {
    max-width: 900px;
    width: 100%;
}


.info-columns {
    display: flex;
    gap: 32px;
}

.info-column{
    flex: 1;
}

.info-column .tekst_titel {	
	text-align: left;
}
.info-column .tekst_tekst {
    font-size: 18px;
    text-align: left;	
	color: #fff;
}

.info-column:first-child {
    border-right: 1px solid #fff;
    padding-right: 32px;
}

.info-column:last-child {
    padding-left: 32px;
}

a {
    color: #fff;;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: #fff;
}

.schaduw{
	filter: drop-shadow(0 2px 2px rgba(0,0,0,0.9));
}

footer {    
	font-size: 24px;
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding: 28px;	
}

/* footer a {        
	
}

footer a:hover {
    text-decoration: underline;    
} */

/* Klein scherm → onder elkaar */
@media (max-width: 840px) {
    .cards {
        flex-direction: column;
    }

    .title {
        font-size: 36px;
    }

    .info-columns {
        flex-direction: column;
    }

    .info-column:first-child {
        border-right: none;
        border-bottom: 2px solid #fff;
        padding-right: 0;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .info-column:last-child {
        padding-left: 0;
    }	
}

