/* Footer Container */

.footer {
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5vh;
}

.footer-content {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    flex: 1;
}

    /* =========================================
   DARK MODE OVERRIDES
   ========================================= */
    .footer-content.dark-mode {
        background-color: transparent;
        color: var(--antologa-white) !important; /* Sets the Copyright text to White */
    }

        /* 1. Normal State (Dark Mode): White Icon, Transparent Background */
        .footer-content.dark-mode .footer-icon {
            color: var(--antologa-white) !important;
            background-color: transparent !important;
        }

            /* 2. Hover State (Dark Mode): Primary Icon, WHITE Background 
   (Matches the Navbar behavior) */
            .footer-content.dark-mode .footer-icon:hover {
                color: var(--antologa-primary) !important;
                background-color: var(--antologa-white) !important;
            }

/* =========================================
   STANDARD STYLES (Light Mode)
   ========================================= */
.footer-text {
    font-family: Nunito;
    font-size: 0.9rem;
    color: var(--antologa-dark);
    text-align: center;
}

/* Ensure text turns white in dark mode via class inheritance */
.footer-content.dark-mode .footer-text {
    color: var(--antologa-white) !important;
}

.footer-icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Default Button Style (Light Mode) */
.footer-icon {
    width: 2.5rem;
    height: auto;
    padding: 0 0.5rem;
    margin: 0 0.25rem;
    color: var(--antologa-primary);
    background-color: transparent;
    transition: all 0.3s ease; /* Smooth hover transition */
}

    .footer-icon:hover {
        color: var(--antologa-white);
        background-color: var(--antologa-primary);
    }

.footer-logo {
    width: 14rem;
    height: auto;
}

@media (max-width: 1279px) {

    .footer {
        width: 100%;
        height: 100%;
        margin-bottom: 5vh;
    }

    #footer {
        width: 100%;
    }
}