/* Enhanced Footer Styles */

/* Footer Link Hover */
.footer-menu a:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2) !important;
}

/* Social Icons Hover in Footer */
.footer-area a[title]:hover {
    background: rgba(239, 63, 72, 0.2) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(239, 63, 72, 0.3);
}

/* Widget Improvements */
.widget-taber-content {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}

/* Recent Posts Images */
.post-thumb img:hover {
    transform: scale(1.1);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-area {
        padding: 40px 0 30px !important;
    }
    
    .footer-text {
        font-size: 14px !important;
    }
    
    .footer-bottom-area {
        padding: 20px 0 !important;
    }
    
    .footer-border {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

/* Social Icons in Footer (if added) */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

