body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/*-section {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}-*/

section {
    width: 80%;
    text-align: center;
}

/*-COOKIES SECTIE-*/
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8f8f8;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
}

.cookie-banner p {
    margin: 0;
    color: #333;
}

button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}
/*-EINDE COOKIES SECTIE-*/

/*-HEADER SECTIE-*/
.header-with-text {
    text-align: center;
    position: relative;
}

.header-content {
    position: relative;
}

.header-content img {
    max-width: 100%;
    height: auto;
    -webkit-mask-image: linear-gradient(black 30%, transparent);
    mask-image: linear-gradient(black 30%, transparent);
    
}

.header-content h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0px;
    color:#333;
    font-size: 50px;
    z-index: 10;
}
/*-EINDE HEADER SECTIE-*/

/*-NAVIGATIE SECTIE-*/
.navigatie-nav {
    padding: 20px;
    text-align: Center;
}

.navigatie-btn {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    margin: 0px 10px;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    position: relative;
    transition: color 0.1s ease, border-bottom 0.1s ease;
    font-size: 18px;
    font-weight: bold;
    text-decoration-line: none;
}

.navigatie-btn:hover {
    color: #555;
    border-bottom: 5px solid #fc01bd;
    border-radius: 0;
}
/*-EINDE NAVIGATIE SECTIE-*/

/*-CATEGORIE PAGINA-*/
.categorie-informatie {
    width: 100%;
    align-items: center;
}

.categorie-regel {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.item-content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 1%;
    border-bottom: 1px dashed #ccc;
}

.item-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-content {
    width: calc(50% - 10px); 
    box-sizing: border-box;
    margin: 0 5px;
}

.categorie-regel:nth-child(odd) .item-content {
    flex-direction: row-reverse;
}

.btn-lees-meer {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    margin: 0px 10px;
    border: 1px solid #b6b6b6;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: color 0.1s ease, border-bottom 0.1s ease;
    font-size: 18px;
    font-weight: bold;
    text-decoration-line: none;
}

.btn-lees-meer:hover {
    color: #555;
    border-bottom: 5px solid #d137ed;
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-left: none;
}
/*-EINDE CATEGORIE PAGINA-*/


/*-FOOTER-*/
footer {
    color: #333;
    padding: 10px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #ccc;
}
/*-EINDE FOOTER-*/

/*-MOBIELE WEBSITE-*/
@media screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .navigatie-nav {
        margin-top: 20px;
    }

    .navigatie-btn {
        height: auto;
        display: block;
        margin-bottom: 10px;
    }

    .header-content h1{
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .header-content img {
        margin-top: -10px;
    }

    .btn-lees-meer {
        margin-bottom: 10px;
    }
}
/*-EINDE MOBIELE WEBSITE-*/

/*-TABLET WEBSITE-*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .navigatie-btn {
        height: auto;
        display: block;
    }
}