/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, hsl(var(--deep-black)) 0%, hsl(20 8% 8%) 100%);
    padding: 3rem 0 1.5rem 0;
    border-top: 1px solid hsl(var(--border) / 0.3);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        hsl(var(--terracotta) / 0.3) 50%, 
        transparent 100%
    );
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(var(--border) / 0.2);
}

.footer-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-badge a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.footer-badge a:hover {
    transform: scale(1.05);
    opacity: 1;
}

.footer-badge img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: hsl(var(--terracotta));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: hsl(var(--terracotta));
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: hsl(var(--card) / 0.5);
    border: 1px solid hsl(var(--border) / 0.3);
    color: hsl(var(--muted-foreground));
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: hsl(var(--terracotta));
    border-color: hsl(var(--terracotta));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px hsl(var(--terracotta) / 0.3);
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: hsl(var(--muted-foreground));
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

.footer-tagline {
    color: hsl(var(--muted-foreground) / 0.7);
    font-style: italic;
    font-size: 0.8rem !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem 0;
    }

    .footer-content {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .footer-badge img {
        max-width: 200px;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}
