/* Minimalist Footer Styles 🧹 */

:root {
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;
    --footer-accent: #6366f1;
}

#minimal-footer {
    transition: background-color 0.3s ease, color 0.3s ease, padding 0.3s ease;
    background-color: var(--footer-bg) !important;
    color: var(--footer-text) !important;
}

/* Base Interactions */
#minimal-footer a,
#minimal-footer .social-icon {
    display: inline-block;
    backface-visibility: hidden;
    text-decoration: none;
    /* Force remove underline */
}

/* Ensure Grid Stability */
#minimal-footer .grid {
    display: grid;
    /* Fallback for older browsers if Tailwind fails */
    width: 100%;
}

/* Link Typography */
#minimal-footer ul li a {
    color: inherit;
    opacity: 0.8;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

#minimal-footer ul li a:hover {
    opacity: 1;
    transform: translateX(4px);
}

/* Headings */
#minimal-footer h3,
#minimal-footer h4 {
    color: white;
    /* Always white headings in dark mode */
}

/* Social Icons */
#minimal-footer .social-icon {
    transition: transform 0.2s ease, color 0.2s ease;
}