/* Footer */
footer {
    display: grid;
    align-content: space-between;
    background-color: var(--primary);
    padding: 1.5rem;
    color: var(--secondary);
    min-height: 80vh;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* .footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 2.5rem;
    margin-bottom: 1rem;
} */

.footer-tagline {
    text-align: justify;
    max-width: 80%;
    color: var(--secondary);
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.footer-column a {
    color: var(--secondary);
    text-decoration: none;
    font-family: 'poppins';
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--highlights);
    opacity: 1;
}

.footer-column p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--strokes);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--secondary);
    text-decoration: none;
    font-family: 'space grotesk';
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--highlights);
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-content {
        gap: 3rem;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .footer-links {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-links {
        gap: 2.5rem;
    }

    .footer-column {
        min-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 1rem;
    }

    .footer-content {
        margin-bottom: 2rem;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
}