/* Footer Contact Information Enhancement CSS */
/* High Contrast Styles for Maximum Readability */

/* Footer Background Enhancement */
footer#footer {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* Contact Information Specific Styles */
.footer-section .contact-info {
    color: #ffffff !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    margin-bottom: 0.75rem !important;
    padding: 0.25rem 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Footer Title Enhancement */
.footer-title {
    color: #ffffff !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
}

/* General Footer Text Enhancement */
footer#footer h1, footer#footer h2, footer#footer h3, 
footer#footer h4, footer#footer h5, footer#footer h6 {
    color: #ffffff !important;
}

footer#footer p {
    color: #f0f0f0 !important;
}

footer#footer small {
    color: #e0e0e0 !important;
}

/* Footer Links Enhancement */
footer#footer a {
    color: #93c5fd !important;
    text-decoration: underline !important;
}

footer#footer a:hover {
    color: #dbeafe !important;
}

/* Contact Info Emoji Enhancement */
.contact-info::before {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

/* Focus Styles for Accessibility */
footer#footer a:focus {
    outline: 2px solid #93c5fd !important;
    outline-offset: 2px !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    footer#footer {
        background-color: #000000 !important;
    }
    
    .contact-info, .footer-title {
        color: #ffffff !important;
        font-weight: bold !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    footer#footer {
        background-color: #1a1a1a !important;
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .contact-info {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    footer#footer {
        padding: 2rem 0 !important;
    }
}

/* Print Styles */
@media print {
    .contact-info {
        color: #000000 !important;
        background-color: #ffffff !important;
    }
}

/* Forced Visibility Rules */
footer#footer * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Specific Contact Information Overrides */
.footer-section p.contact-info {
    background-color: transparent !important;
    border: none !important;
    text-shadow: none !important;
    font-family: inherit !important;
    font-size: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
