/**
 * Footer Styles
 * Styles specific to footer.php
 */

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background-color: var(--white);
    border-top: 1px solid var(--slate-200);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 3rem;
    }
}

/* ==========================================================================
   Footer Column
   ========================================================================== */
.footer-col {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--slate-900);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--slate-900);
    letter-spacing: -0.025em;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--slate-500);
}

/* ==========================================================================
   Footer Navigation
   ========================================================================== */
.footer-nav-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--slate-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav a {
    font-size: var(--text-sm);
    color: var(--slate-600);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-600);
}

/* Hiring Badge */
.footer-hiring-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-hiring-badge span:first-child {
    color: var(--slate-600);
}

.footer-hiring-badge span:last-child {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background-color: var(--success-light);
    color: #047857;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Footer Bottom
   ========================================================================== */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-100);
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.footer-bottom-text {
    font-size: var(--text-sm);
    color: var(--slate-500);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: var(--text-sm);
    color: var(--slate-500);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-600);
}

/* ==========================================================================
   Footer Social Links
   ========================================================================== */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .footer-social {
        margin-top: 0;
    }
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--slate-100);
    border-radius: var(--radius-full);
    color: var(--slate-600);
    transition: all var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-100);
    color: var(--primary-600);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}
