/* Algemene styling voor de footer */
.footer {
    background-color: #000; /* Zwarte achtergrond */
    color: #fff; /* Witte tekst */
    padding: 20px 20px; /* Meer padding voor een ruimere layout */
    display: flex;
    flex-wrap: wrap; /* Zorg dat secties op kleinere schermen onder elkaar komen */
    justify-content: space-between; /* Ruimte tussen secties */
    align-items: flex-start; /* Zorg dat de inhoud naar boven uitlijnt */
    font-size: 0.9rem;
    line-height: 1.6; /* Meer ruimte tussen regels */
    text-align: center;
}

/* Styling voor de linkerzijde van de footer */
.footer-left {
    flex: 1;
    text-align: left; /* Tekst naar links uitlijnen */
    margin-right: 20px; /* Ruimte tussen de linkerzijde en de rest */
}

.footer-logo {
    width: 120px; /* Breedte van het logo */
    margin-bottom: 10px; /* Ruimte onder het logo */
}

.footer-left p {
    font-size: 0.9rem;
    color: #ccc; /* Lichtgrijze kleur voor de tekst */
    line-height: 1.6; /* Meer ruimte tussen regels */
}

/* Styling voor links in de footer */
.footer a {
    color: #ccc; /* Lichtgrijze kleur voor links */
    text-decoration: none;
}

.footer a:hover {
    color: #ff9800; /* Oranje kleur bij hover */
}

/* Styling voor paragrafen in de footer */
.footer p {
    color: #fff; /* Witte kleur voor paragrafen */
    margin: 5px 0;
    text-align: left; /* Tekst naar links uitlijnen */
}

/* Styling voor de secties in de footer */
.footer-section {
    flex: 1;
    margin: 10px; /* Ruimte tussen de secties */
    min-width: 200px; /* Zorg dat secties niet te smal worden */
    text-align: left; /* Tekst naar links uitlijnen */
}

.footer-section h3 {
    font-size: 1.1rem; /* Iets kleinere titels */
    margin-bottom: 10px; /* Minder ruimte onder de titels */
    color: #fff;
    text-transform: uppercase; /* Maak de titels in hoofdletters */
    border-bottom: 2px solid #ff9800; /* Voeg een oranje lijn toe onder de titels */
    display: inline-block;
    padding-bottom: 5px;
}

/* Styling voor links in de secties */
.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: block; /* Zorg dat links onder elkaar staan */
    margin-bottom: 5px; /* Minder ruimte tussen de links */
}

.footer-section a:hover {
    color: #ff9800; /* Oranje kleur bij hover */
}

/* Styling voor de contact sectie */
.contact .social-icons {
    margin-top: 10px; /* Minder ruimte boven de iconen */
    display: flex;
    gap: 10px; /* Minder ruimte tussen de iconen */
}

.social-icons a {
    color: #fff; /* Witte kleur voor de iconen */
    font-size: 1.3rem; /* Iets kleinere iconen */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ff9800; /* Oranje kleur bij hover */
    transform: scale(1.1); /* Minder vergroting bij hover */
}

/* Styling voor de footer-bottom */
.footer-bottom {
    text-align: center; /* Centreer de tekst */
    padding: 20px 0; /* Ruimte boven en onder de tekst */
    background-color: #111; /* Donkerdere achtergrond voor de footer-bottom */
    margin-top: auto; /* Zorg dat de tekst naar de onderkant van de footer wordt geduwd */
    width: 100%;
    font-size: 0.8rem;
    color: #ccc; /* Lichtgrijze kleur voor de tekst */
    border-top: 1px solid #444; /* Subtiele lijn boven de footer-bottom */
    padding-top: 10px; /* Voeg extra padding boven de tekst toe */
}

/* Responsieve styling */
@media (max-width: 768px) {
    .footer {
        flex-direction: column; /* Stapel de secties onder elkaar */
        text-align: center;
    }

    .footer-section {
        margin: 15px 0; /* Minder ruimte tussen secties op mobiele schermen */
        text-align: center; /* Centreer tekst op kleine schermen */
    }

    .social-icons a {
        margin-right: 10px; /* Minder ruimte tussen iconen */
    }
}