/**
 * Footer Widget Styles
 * 
 * Provides styling for 3 footer layouts
 */

/* Base Footer Styles */
.lg-footer {
    font-size: 0.875rem;
}

.lg-footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Logo Styles */
.lg-footer-logo {
    text-decoration: none;
}

/* Link Lists */
.lg-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lg-footer h4 {
    margin-bottom: 1rem;
}

/* Social Links */
.lg-footer-social-link {
    transition: all 0.2s ease;
}

.lg-footer-social-link:hover {
    transform: scale(1.1);
}

/* Newsletter Form */
.lg-footer-newsletter input {
    transition: all 0.2s ease;
}

.lg-footer-newsletter input:focus {
    border-color: #dc2626;
}

.lg-footer-newsletter button {
    transition: all 0.2s ease;
}

.lg-footer-newsletter button:hover {
    transform: translateY(-1px);
}

/* Classic Footer */
.lg-footer-classic .lg-footer-main {
    border-top: 1px solid #1e293b;
}

/* Minimal Footer */
.lg-footer-minimal {
    padding: 2rem 0;
}

.lg-footer-minimal .lg-footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Extended Footer */
.lg-footer-extended .lg-footer-newsletter {
    border-bottom-width: 1px;
}

/* Contact Info Icons */
.lg-footer li i {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 767px) {
    .lg-footer-main>.grid {
        gap: 2rem;
    }

    .lg-footer h4 {
        margin-top: 1rem;
    }

    .lg-footer-minimal .flex-row {
        flex-direction: column;
        text-align: center;
    }

    .lg-footer-social-link {
        margin: 0 0.25rem;
    }
}

/* Animation for minimal hover */
.lg-footer a:not(.lg-footer-social-link)::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.2s ease;
}

.lg-footer a:not(.lg-footer-social-link):hover::after {
    width: 100%;
}

/* Print Styles */
@media print {
    .lg-footer {
        background: #fff !important;
        color: #000 !important;
    }

    .lg-footer a {
        color: #000 !important;
    }

    .lg-footer-newsletter,
    .lg-footer-social-link {
        display: none !important;
    }
}