/* Footer styles for BarkWP theme */
footer {
    border-top: 1px solid #e5e7eb; /* Tailwind gray-200 */
}

/* Footer navigation links */
footer .menu-item a {
    color: #4b5563; /* Tailwind gray-600 */
    font-size: 1rem; /* 16px */
    text-decoration: none;
    transition: color 0.2s ease;
}
footer .menu-item a:hover {
    color: #c084fc; /* Tailwind purple-400 */
    text-decoration: underline;
}

/* Ensure consistent typography */
footer h3 {
    font-size: 1.25rem; /* 20px */
    color: #1f2937; /* Tailwind gray-900 */
}

/* Right-align navigation links on desktop */
footer .md\:text-right .menu-item {
    display: block;
    text-align: right;
}