/**

______          _            
|  ___|        | |           
| |_ ___   ___ | |_ ___ _ __ 
|  _/ _ \ / _ \| __/ _ \ '__|
| || (_) | (_) | ||  __/ |   
\_| \___/ \___/ \__\___|_|   

*/

/*------------------------------------------------------------- Sluit footer aan */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/*------------------------------------------------------------- Footer plaatsing */
footer {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #eae0d5, #cbbfb3);
    color: white;
    text-align: center;
    padding: 1% 0;
    margin-top: 5%;
    box-sizing: border-box;
    box-shadow: 10px 4px 20px rgba(0, 0, 0, 0.228);
}

/*------------------------------------------------------------- Footer text opmaak */
footer a:hover {
    text-decoration: underline;
}

.footerRechten {
    color: #0A0908;
}

.footerLinks a {
    color: #e1bb80;
    text-decoration: none;
    margin: 0 2%;
    font-weight: bold;
}

/* ------------------------------ MOBILE-FRIENDLY STYLES ------------------------------ */

/* Als het scherm kleiner is dan 768px (tablet/telefoon) */
@media (max-width: 768px) {

    footer {
        padding: 3% 0;
    }

    .footerLinks a {
        font-size: 0.9em;
        margin: 0 1%; 
    }
}

/* Als het scherm kleiner is dan 480px (mobiel) */
@media (max-width: 480px) {

    footer {
        padding: 4% 0;
    }

    .footerLinks a {
        font-size: 0.8em;
    }
}


