/* Footer Styles — ΩPedia Design Language */
footer {
    background: rgba(10, 10, 18, 0.9);
    padding: 40px 0 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(123, 47, 255, 0.1);
    position: relative;
}

footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    padding: 0 12px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 13px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(123, 47, 255, 0.2);
    transition: all 0.2s ease;
}

.footer-logo:hover img {
    opacity: 0.85;
}

.powered-by-tag {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.freedom-brand {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
    max-width: 300px;
    margin-top: 10px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
    position: relative;
    padding-left: 0;
}

.footer-links-list a::before {
    display: none;
}

.footer-links-list a:hover {
    color: var(--primary-color);
}

.footer-links-list a:hover::before {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(123, 47, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    letter-spacing: 0.02em;
}

.footer-copyright .year {
    color: var(--primary-color);
    font-weight: 500;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(123, 47, 255, 0.08);
    border: 1px solid rgba(123, 47, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(123, 47, 255, 0.15);
    border-color: rgba(123, 47, 255, 0.3);
}
