/* ============================================================
   aziFooter.css
   Footer wrapper, column layout, brand, typography, and links.
   ============================================================ */


/* ============================================================
   WRAPPER
   ============================================================ */

.azimuth-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    width: 100%;
    padding-bottom: 20px;
    border-top: 3px solid var(--footer-heading);
}


/* ============================================================
   INNER CONTAINER
   ============================================================ */

.footer-inner {
    padding: 40px 12px 0;
}


/* ============================================================
   COLUMN LAYOUT
   ============================================================ */

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
}

.footer-col-1 {
    flex: 2;
    min-width: 280px;
    padding-right: 100px;
}

.footer-col-2,
.footer-col-3 {
    flex: 1;
    min-width: 240px;
}


/* ============================================================
   BRAND
   ============================================================ */

.footer-brand {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.brand-primary {
    color: var(--footer-brand-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-secondary {
    color: var(--footer-brand-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* ============================================================
   HEADINGS
   ============================================================ */

.azimuth-footer h5,
.azimuth-footer h6 {
    color: var(--footer-heading);
    margin-bottom: 0.75rem;
}

.azimuth-footer h5 {
    font-size: 0.70rem;
    font-weight: 700;
}

.azimuth-footer h6 {
    font-size: 0.65rem;
    font-weight: 600;
}


/* ============================================================
   LINKS AND SMALL TEXT
   ============================================================ */

.footer-link,
.azimuth-footer .small {
    font-size: 0.65rem;
    color: var(--footer-link);
    line-height: 1.4;
}

.footer-link {
    display: block;
    margin-bottom: 0.4rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: var(--footer-link-hover);
    }

    /* ============================================================
   ICON LINKS  (column 3 — Get In Touch)
   Aligns the icon and label on the same baseline.
   ============================================================ */

    .footer-link.footer-link-icon {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-link.footer-link-icon i {
            width: 14px; /* fixed width keeps text left-aligned */
            flex-shrink: 0;
            text-align: center;
            color: var(--footer-heading); /* teal icon */
            font-size: 0.7rem;
        }

/* ============================================================
   DIVIDER
   ============================================================ */

.azimuth-footer hr {
    border-color: var(--footer-hr);
    opacity: 0.3;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        padding-right: 0;
        width: 100%;
    }
}
