﻿/* ====== MODERNE RESPONSIVE FOOTER ====== */

.site-footer {
    background: #e8d4e5;
    color: #3b114a;
    padding: 40px 40px 25px;
    font-family: "Segoe UI", Tahoma, Geneva, sans-serif;
    font-size: 15px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 30px auto 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

/* Kolommen */
.footer-section {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    box-sizing: border-box;
}

.footer-section h4 {
    color: #802d85;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-section p {
    line-height: 1.5;
    margin: 0 0 8px;
}

.footer-section a {
    color: #4b1d56;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-section a:hover {
    color: #622168;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

/* Formulieren-links */
.formulieren-links a {
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdf-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

/* PDF-icon hover effect */
.formulieren-links a:hover .pdf-icon {
    opacity: 1;
    transform: translateY(-2px) scale(1.1);
    filter: drop-shadow(0 0 4px rgba(211, 47, 47, 0.6));
}

/* Social icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.social-icons img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 50%;
}

.social-icons img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Onderaanregel */
.footer-bottom {
    border-top: 1px solid rgba(75, 29, 86, 0.2);
    margin-top: 30px;
    padding-top: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: #4b1d56;
    line-height: 1.6;
}

.footer-bottom a {
    color: #4b1d56;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #622168;
    text-decoration: underline;
}

/* ====== RESPONSIEF ====== */

@media (max-width: 992px) {
    .footer-container {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .footer-bottom {
        text-align: left;
    }

    /* ===== MOBIEL: ALLE LINKS ZICHTBAAR ===== */
    .footer-section a,
    .footer-bottom a {
        font-weight: 700 !important;
        color: #3b114a !important;
        text-decoration: underline !important;
    }

    .footer-section a:hover,
    .footer-bottom a:hover {
        color: #622168 !important;
        text-decoration: underline !important;
    }

    .footer-section a:active,
    .footer-bottom a:active {
        background-color: rgba(124, 90, 133, 0.1);
        border-radius: 4px;
    }
}

/* ===== UITGEBREID NAAR ALLE TABLETS + SMALL LAPTOPS (tot 1366px) ===== */
@media (max-width: 1366px) {

    .footer-section a,
    .footer-bottom a {
        font-weight: 700 !important;
        color: #3b114a !important;
        text-decoration: underline !important;
    }

    .footer-section a:hover,
    .footer-bottom a:hover {
        color: #622168 !important;
        text-decoration: underline !important;
    }

    .footer-section a:active,
    .footer-bottom a:active {
        background-color: rgba(124, 90, 133, 0.1);
        border-radius: 4px;
    }
/* ===== FORCEER MOBIELE LINK-STYLING OP ALLE iPADS ===== */
@media (hover: none) and (pointer: coarse) {

    .footer-section a,
    .footer-bottom a {
        font-weight: 700 !important;
        color: #3b114a !important;
        text-decoration: underline !important;
    }

    .footer-section a:hover,
    .footer-bottom a:hover {
        color: #622168 !important;
        text-decoration: underline !important;
    }

    .footer-section a:active,
    .footer-bottom a:active {
        background-color: rgba(124, 90, 133, 0.1);
        border-radius: 4px;
    }
}
