﻿
:root {
    --color-primary: #164d92;
    --color-secondary: #f0f4ff;
    --color-tertiary: #58595b;
}


footer {
    background-color: var(--color-primary);
}

.download-buttons a {
    color: var(--color-primary);
    font-size: clamp(10px, 0.8vw, 16px);
}

footer ul li a, p {
    font-size: 11px;
}
footer a.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important
}
footer h6 {
    font-size: 17px;
}

/* Footer mobile responsiveness - stack columns vertically */
@media (max-width: 576px) {

    /* Make all footer columns full width (stacked one by one) */
    footer .row.gy-4 > div[class*="col-"] {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

        footer .row.gy-4 > div[class*="col-"] ul {
            margin-bottom: 0;
        }

    footer .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    footer .row.gy-4 {
        --bs-gutter-y: 1.5rem;
    }
}

.btn-footer-download {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(90deg, #f58220, #1f4e8c) border-box;
    color: var(--color-primary) !important;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50rem;
    /* rounded-pill */
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.footer-separator {
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin-top: 20px;
    margin-bottom: 10px !important;
    padding-top: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-footer-download:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}