@import url("./vars.css");

footer {
    font-family:var(--bodyFont), serif;
    display: flex;
    max-width:1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-footer {
    font-family:var(--bodyFont), serif;
    background:linear-gradient(135deg,var(--blackColor) 0%,var(--lightGreyColor6) 60%,var(--lightGreyColor5) 100%);
    color:var(--whiteColor);
    border-radius:var(--r-md);
    margin: 240px auto 0;
    padding: 1.5rem 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    width: 140px;
    margin-bottom: 10px;
}

.footer-tagline {
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 4px;
    margin: 30px 0 15px;
}

.footer-column h4 {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--lightGreyColor3);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 30px;
    padding: 18px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 1024px) {
    footer {
        padding: 0.5rem;
    }
    .site-footer {
        border-radius:0;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap:20px
    }
    .footer-links {
        justify-content: center;
            gap: 50px;
    }
}