/*
Theme Name: KeyonBayani
Theme URI: https://keyonbayani.com
Description: Custom e-commerce and portfolio theme for Divi.
Author: Abdulrahman
Author URI: https://github.com/abdulfalll
Template: Divi
Version: 1.0.1
*/


/* Custom Footer Links - Horizontal Menu & Hover */
.custom-footer-links {
    text-align: center; /* Ensures the whole menu stays perfectly centered */
}

.custom-footer-links a {
    color: #00E5FF !important; /* Default light color (Cyan) */
    text-decoration: none !important; 
    display: inline-block;
    margin: 10px 18px; /* The magic trick: Adds perfect even spacing between links */
    transition: all 0.3s ease-in-out; 
    font-weight: 600; /* Makes them slightly bold to look like a real menu */
}

.custom-footer-links a:hover {
    color: #1e1e1e !important; /* Changes to dark charcoal on hover */
    transform: translateY(-3px); /* A sleek little "pop up" animation */
}