/**
 * Footer Enhancements for BoostifySEO Theme
 * 
 * Additional styling for footer quick links and improved layout
 */

/* Footer Grid Enhancements */
.site-footer .grid {
    gap: 2rem;
}

/* Footer Link Styling */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a,
.footer-resources ul a {
    color: #d1d5db !important; /* text-gray-300 */
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover,
.footer-resources ul a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

/* Footer Resources Section */
.footer-resources {
    color: #ffffff;
}

.footer-resources h4 {
    color: #ffffff !important;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-resources ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-resources ul li {
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
    .site-footer .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .site-footer .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-branding,
    .footer-links,
    .footer-contact,
    .footer-resources,
    .footer-social {
        text-align: center;
    }
}

/* Social Media Icons Spacing */
.footer-social .flex {
    justify-content: center;
}

@media (min-width: 1024px) {
    .footer-social .flex {
        justify-content: flex-start;
    }
}

/* Ensure footer visibility */
.site-footer {
    background-color: #111827 !important;
    color: #ffffff !important;
    visibility: visible !important;
    display: block !important;
}

.site-footer * {
    color: inherit;
}

/* Footer branding improvements */
.footer-branding h4 {
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-branding p {
    color: #d1d5db !important;
    line-height: 1.6;
}

/* Contact section improvements */
.footer-contact h4 {
    color: #ffffff !important;
}

.footer-contact a {
    color: #d1d5db !important;
}

.footer-contact a:hover {
    color: #3b82f6 !important; /* blue-500 */
}

/* Copyright section */
.copyright {
    color: #9ca3af !important; /* text-gray-400 */
}
