/* ============================================
   VARIANT FOOTER - Centralized Styling
   ============================================ */

/* Body Container */
.body-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Container */
.footer {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
    color: #000000;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 4rem;
    align-items: center;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-column-wide {
    flex: 1;
}

.footer-actions-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.footer-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer-action-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.8);
}

.footer-action-btn svg {
    flex-shrink: 0;
}

/* Footer Logo */
.footer-logo {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #000000;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .live-tag {
    background: hsl(29 100% 47% / 0.2);
    border: 1px solid hsl(29 100% 47% / 0.3);
    color: hsl(29 100% 47%);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Footer Description */
.footer-description {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 500px;
}

/* Footer Column Title */
.footer-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF7E1F;
}

/* Footer Bottom Section */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link:hover {
    color: #FF7E1F;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.5);
    max-width: 100%;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-copyright-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

.footer-copyright-bottom p {
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-actions-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .footer-content {
        gap: 1.25rem;
    }

    .footer-bottom {
        text-align: left;
        align-items: flex-start;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-actions-group {
        gap: 0.375rem;
    }

    .footer-action-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .footer-action-btn svg {
        width: 14px;
        height: 14px;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-description {
        font-size: 0.8125rem;
        max-width: 100%;
    }

    .footer-disclaimer {
        font-size: 0.6875rem;
    }
}
