@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

/* -------------------------------------------------------
    FOOTER
------------------------------------------------------- */
.footer {
    transition: var(--transition-bg), text 0.15s ease-in-out;
    color: var(--text);
    border-top: 1px solid var(--border-light);
    padding: 40px 0px;
    z-index: 1000;
    background:
        radial-gradient(circle at 50% 115%, rgba(255, 166, 0, 0.85) 0%, transparent 100%),
        var(--bg-foot);
    background-blend-mode: overlay;
}

.footer span,
.footer svg {
    z-index: 1000;
}

.footer-top, .footer-bottom {
    display: flex;
    justify-content: space-between;
    margin: var(--body-margin) auto;
    max-width: min(90vw, var(--max-body-width));
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.footer-bottom {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    flex-wrap: wrap;
    margin-bottom: 0px;
    gap: 10px;
}

.footer-logo {
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-weight: bold;
}

.footer-links-wrapper {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-btn);
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
}

.copyright-text {
    color: var(--text);
    font-size: 16px;
}

.weather-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.weather-text {
    color: var(--text-muted);
    font-size: 16px;
}

.back-to-top-text {
    font-weight: 550;
}

.back-to-top-text,
.footer-out-link {
    transition: var(--transition-btn);
    color: var(--text-muted);
    text-decoration: none;
}

.footer-out-link:hover {
    color: var(--text);
    text-decoration: underline;
}

.back-to-top-text:hover {
    color: var(--text);
}

.footer-bottom-right {
    text-align: right;
}

.text-code {
    font-family: var(--font-navbar);
}

.cursive {
    font-size: 16px;
    font-family: 'Alex Brush', 'Inter', sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
}

@media (max-width: 700px) {
    /* .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        text-align: left;
    } */

    /* .footer-links-wrapper {
        flex-direction: column;
        gap: 30px;
    } */

    .footer-bottom-right> :not(.cursive) {
        display: none;
    }
}

@media (max-width: 500px) {
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-right {
        align-items: center;
        width: 100%;
    }

    .cursive {
        text-align: center;
        margin: 0 auto;
    }

    .footer-bottom-right> :not(.cursive),
    .back-to-top-text,
    .footer-logo {
        display: none;
    }

    /* .nav-actions {
        display: none;
    }*/
} 

@media (max-width: 200px) {
    .footer-links-wrapper {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .back-to-top-text,
    .footer-bottom-right,
    .footer-bottom,
    .nav-actions {
        display: none;
    }
}
