/* Footer Style Classes */

/* Classic Footer - Dark theme */
.footer-classic {
    background-color: #111827;
    color: #ffffff;
}

/* Modern Light Footer */
.footer-modern-light {
    background-color: #f3f4f6;
    color: #374151;
    border-top: 1px solid #e5e7eb;
}

/* Gradient Footer */
.footer-gradient {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    color: #ffffff;
}

/* Minimal Footer */
.footer-minimal {
    background-color: #ffffff;
    color: #6b7280;
    border-top: 2px solid #e5e7eb;
}

/* Colorful Footer */
.footer-colorful {
    background: linear-gradient(to right, #ec4899, #ef4444, #eab308);
    color: #ffffff;
}

/* Custom Footer - will be overridden by inline styles */
.footer-custom {
    background-color: #111827;
    color: #ffffff;
}

/* Footer link hover effects */
.footer-classic a:hover,
.footer-gradient a:hover,
.footer-colorful a:hover {
    color: #a78bfa;
}

.footer-modern-light a:hover {
    color: #2563eb;
}

.footer-minimal a:hover {
    color: #374151;
}

.footer-custom a:hover {
    opacity: 0.8;
}