/**
 * Footer Styles
 *
 * @package BadassNetwork
 */

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--color-text);
    color: white;
    padding: var(--space-4xl) 0;
    border-top: var(--border);
    margin-top: var(--space-4xl);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2xl);
}

/* ==========================================================================
   FOOTER LOGO
   ========================================================================== */

.footer-logo {
    font-weight: 900;
    font-size: var(--text-xl);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-logo-box {
    width: 32px;
    height: 32px;
    background: var(--color-hot);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
}

/* ==========================================================================
   FOOTER NAVIGATION
   ========================================================================== */

.footer-links {
    display: flex;
    gap: var(--space-3xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

/* Remove default menu styles */
.footer-links .menu,
.footer-links > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-3xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links .menu li,
.footer-links > ul > li {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
}

/* ==========================================================================
   FOOTER COPYRIGHT
   ========================================================================== */

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: var(--space-3xl);
    margin-top: var(--space-3xl);
    border-top: 3px dashed rgba(255, 255, 255, 0.2);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   FOOTER WIDGETS
   ========================================================================== */

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3xl);
    padding-bottom: var(--space-4xl);
    margin-bottom: var(--space-3xl);
    border-bottom: 3px dashed rgba(255, 255, 255, 0.2);
}

.footer-widget {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget-title {
    font-size: var(--text-base);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: white;
}

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

.footer-widget li {
    margin-bottom: var(--space-sm);
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-widget a:hover {
    color: white;
}

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

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xl);
    }

    .footer-links .menu,
    .footer-links > ul {
        justify-content: center;
        gap: var(--space-xl);
    }
}

