/*
 * FOOTER SPECIFIC STYLING
 * Geïsoleerd voor veiligheid - gebruikt alleen .site-footer namespace
 * Voorkomt conflicten met andere pagina's
 */

/* Main footer container */
.site-footer {
    background: linear-gradient(135deg, #0a0c12 0%, #141825 100%);
    color: white;
    padding: 0;
    margin-top: auto;
    width: 100%;
}

/* Footer content wrapper */
.site-footer .site-info {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Footer content layout */
.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Copyright section (left side) */
.site-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Links section (right side) */
.site-footer .footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer links styling */
.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.site-footer .footer-links a:hover {
    color: #e8585d;
    background: rgba(232, 88, 93, 0.1);
    transform: translateY(-1px);
}


/* Separator styling */
.site-footer .footer-links .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0 0.3rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-footer .footer-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .site-footer .footer-copyright {
        order: 2;
        font-size: 0.85rem;
    }

    .site-footer .footer-links {
        order: 1;
        justify-content: center;
    }

    .site-footer .footer-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-content {
        padding: 15px;
    }

    .site-footer .footer-links {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .site-footer .footer-links .separator {
        display: none;
    }

    .site-footer .footer-links a {
        margin: 2px 0;
    }
}

/* Ensure footer sticks to bottom when content is short */
#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1;
}

/* Override any conflicting styles */
.site-footer * {
    box-sizing: border-box;
}

/* Ensure full width on all pages */
body .site-footer {
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
