/* footer */
.footer {
    background-color: rgb(2, 48, 2); /* achtergrond kleur */
    color: white; /* Tekstkleur */
    text-align: center; /* Tekst centraal uitlijnen */
    padding: 20px 0; /* Verticale padding */
    position: fixed; /* Footer blijft onderaan de pagina */
    width: 100%; /* Volledige breedte */
    bottom: 0; /* Plaats de footer onderaan de pagina */
    z-index: 99;
}

.footer-content {
    display: flex;
    /* justify-content: space-between; /* Ruimte tussen de link en de tekst */
    /* align-items: left ; /* Centraal uitlijnen van de inhoud */
    width: 100%; /* Breedte van de inhoud in de footer */
    margin: 0 auto; /* Centraal uitlijnen van de footer-content */
    flex: 1;
    /*justify-content: space-evenly ; /* Menu items centreren */
    /* background-color: rgb(68, 243, 68); */
    min-height: 20px;
    /* padding-left: 10px; */
    position: relative;
}

.footer-link {
    color: white; /* Kleur van de link */
    text-decoration: none; /* Geen onderstreping */
    transition: color 0.3s ease; /* Smoothe overgang voor hover-effect */
    font-family: 'Times New Roman', Times, serif; /* Aanpasbare font */
    font-size: 14px; /* Aanpasbare fontgrootte */
    position: absolute;
    bottom: 0;
}

.footer-link:hover {
    color: yellow; /* Kleur veranderen bij hover */
}

.footer-text {
    margin: 0; /* Geen margin voor de tekst */
    font-family: 'Times New Roman', Times, serif; /* Aanpasbare font */
    font-size: 12px; /* Aanpasbare fontgrootte */
    position: absolute;
    bottom: 0;
}

.footer-container-links {
    width: 25%;
    /*flex: 0 0 15%;*/
    /* background-color: rgb(3, 163, 3); */
    /* min-height: 60px; */
    justify-content: flex-start;
    width: var(--footer-container-links-width, 150px);
    display: "flex-box";
    padding: 10px;
    position: absolute;
    bottom: 0;
}

.socialmedia-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
}

.socialmedia-menu li {
    margin-right: 30px;
    margin-left: 10px;
}

.socialmedia-menu a {
    color: rgb(247, 244, 244);
    text-decoration: none;
    transition: color 0.3s ease;
}

.socialmedia-menu a:hover {
    color: rgb(14, 0, 0);
    text-decoration: none;
}

/*.social-icons i {
    font-size: 24px; /* Aanpasbaar
} */

.footer-container-midden {
    width: 50%;
    flex: 1;
    /* background-color: rgb(3, 163, 3); */
    /* min-height: 60px; */
    justify-content: center;
    display: "flex-box";
}

.footer-container-rechts {
    width: 25%;
    /*flex: 0 0 15%;*/
    /* background-color: rgb(3, 163, 3); */
    /* min-height: 60px; */
    justify-content: right;
    /* width: var(--footer-container-rechts-width, 180px); */
    display: "flex-box";
}