/* menu */
/* Hide header by default */
header {
    display: none;
}

/* Show header only on small screens */
@media (max-width: 767px) {
    header {
        display: block;
        background-color: white;
        color: #333;
        padding: 5px 0; /* Reduce padding to decrease height */
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px; /* Adjust padding for inner spacing */
        position: relative;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        margin-right: 20px; /* Add space between the icon and the text */
        font-size: 24px; /* Adjust font size if needed */
        color: #333; /* Icon color */
    }

    .menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(81, 42, 91, 0.85); /* Overlay background */
        background-
        z-index: 999;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
        padding: 0; /* Remove padding from list items */
    }

    .menu li a {
        color: white; /* Text color of list items */
        text-decoration: none;
        display: block;
        padding: 0px 0; /* Adjust padding for clickable area */
    }

    .menu.active {
        display: flex;
    }
}

/* einde menu */ 
