/* Footer Contact Information Enhanced Styles */

/* Force footer background to be dark with high contrast */
footer {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* Contact Information Enhanced Styling */
.contact-info {
    color: #ffffff !important;
    background: transparent !important;
    font-size: 1.1em !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
    padding: 8px 0 !important;
    line-height: 1.6 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Enhanced visibility for contact text */
.contact-info span {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Emoji icons styling */
.contact-info::before {
    display: inline-block !important;
    margin-right: 8px !important;
    font-size: 1.2em !important;
    color: #93c5fd !important;
    filter: brightness(1.2) !important;
}

/* Footer section headers */
footer h5 {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    font-size: 1.3em !important;
}

/* Footer text elements */
footer p {
    color: #f0f0f0 !important;
    line-height: 1.6 !important;
}

/* Footer links */
footer a {
    color: #93c5fd !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

footer a:hover {
    color: #dbeafe !important;
    text-decoration: underline !important;
}

/* Newsletter section special handling */
.newsletter-section {
    background: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-top: 20px !important;
}

.newsletter-section h4 {
    color: #333333 !important;
}

.newsletter-section p {
    color: #666666 !important;
}

.newsletter-input {
    background: #ffffff !important;
    color: #333333 !important;
    border: 2px solid #93c5fd !important;
}

.newsletter-button {
    background: #007bff !important;
    color: #ffffff !important;
    border: none !important;
}

.newsletter-success {
    background: #d4edda !important;
    color: #155724 !important;
    padding: 10px !important;
    border-radius: 4px !important;
    margin-top: 10px !important;
}

/* Focus styles for accessibility */
.contact-info:focus,
footer a:focus {
    outline: 2px solid #93c5fd !important;
    outline-offset: 2px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    footer {
        background-color: #000000 !important;
    }
    
    .contact-info {
        color: #ffffff !important;
        background: #000000 !important;
        border: 1px solid #ffffff !important;
        padding: 10px !important;
    }
    
    footer a {
        color: #ffffff !important;
        text-decoration: underline !important;
        font-weight: bold !important;
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .contact-info {
        font-size: 1rem !important;
        padding: 6px 0 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    footer h5 {
        font-size: 1.2em !important;
        margin-bottom: 15px !important;
    }
}

/* Print styles */
@media print {
    .contact-info {
        color: #000000 !important;
        background: #ffffff !important;
        border: 1px solid #000000 !important;
        padding: 5px !important;
    }
}

/* Forced visibility for all footer text */
footer * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Special handling for contact section */
.footer-section h5:contains("Contactgegevens") + p {
    color: #ffffff !important;
    font-weight: 500 !important;
}

