/*
 * footer.css — TechAgro Footer
 */

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */

.ta-footer {
    background-color: var(--color-green-dark);
    margin-top: var(--spacing-xxl);
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* ─── MAIN ROW ────────────────────────────────────────────────────────────── */

.ta-footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* ─── LOGO ────────────────────────────────────────────────────────────────── */

.ta-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ta-footer__logo .ta-logo {
    display: block;
    height: 34px;
    width: 170px;
    object-fit: contain;
}

.ta-footer__logo .ta-logo--dark {
    display: none;
}

body.dark-mode .ta-footer__logo .ta-logo--dark {
    display: block;
}

body.dark-mode .ta-footer__logo .ta-logo--light {
    display: none;
}

/* ─── SUBSCRIBE BUTTON ────────────────────────────────────────────────────── */

.ta-footer__subscribe {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

.ta-footer__subscribe:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

/* ─── SOCIALS ─────────────────────────────────────────────────────────────── */

.ta-footer__socials {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.ta-footer__social {
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.18s ease;
}

.ta-footer__social:hover {
    color: #ffffff;
}

/* ─── COPYRIGHT BAR ───────────────────────────────────────────────────────── */

.ta-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ta-footer__copy-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── MOBILE ──────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .ta-footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-md);
    }

    .ta-footer__copy-inner {
        text-align: center;
    }
}

/* ─── DARK MODE ───────────────────────────────────────────────────────────── */

body.dark-mode .ta-footer {
    background-color: #0a1209;
    border-top: 1px solid var(--color-border);
}