/* Professional 3-Column Footer Layout */
/* This file contains the approved footer styling from index.html */

.footer-compact {
    padding: 20px 0 0;
}

.compact-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left Column: Logo + Tagline */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
}

.footer-logo-img {
    height: 30px;
}

.tagline {
    font-size: 0.75rem;
    margin: 0;
    color: #a0aec0;
    font-style: italic;
}

/* Center Column: Navigation Links */
.footer-links {
    margin: 0;
    padding: 0;
    border: none;
    justify-self: center;
}

.footer-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin: 0;
}

.footer-links-list a {
    color: #a0aec0;
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-links-list a:hover {
    color: #fff;
}

/* Right Column: Social Icons */
.footer-social-compact {
    justify-self: end;
    display: flex;
    gap: 8px;
}

.footer-social-compact a {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Row: Copyright */
.copyright-text {
    grid-column: 1 / -1;
    text-align: left;
    padding-top: 12px;
}

.copyright-text p {
    font-size: 0.7rem;
    color: #5a6577;
    margin: 0;
}

/* Mobile: Compact stacked layout */
@media (max-width: 768px) {
    .footer-compact {
        padding: 14px 0 10px;
    }

    .compact-footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        padding-bottom: 8px;
    }

    /* Order 0: Logo first */
    .footer-brand {
        order: 0;
        flex-direction: row;
        gap: 6px;
        margin-bottom: 2px;
    }

    .footer-logo-img {
        height: 22px;
    }

    .tagline {
        font-size: 0.65rem;
        display: none;
        /* Hide tagline on mobile for compactness */
    }

    /* Order 1: Social icons second */
    .footer-social-compact {
        order: 1;
        justify-self: center;
        gap: 6px;
    }

    .footer-social-compact a {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    /* Order 2: Navigation links third */
    .footer-links {
        order: 2;
        margin: 0;
        padding: 0;
        border: none;
    }

    .footer-links-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 12px;
    }

    .footer-links-list a {
        font-size: 0.68rem;
    }

    /* Order 3: Copyright last */
    .copyright-text {
        order: 3;
        text-align: center;
        padding-top: 6px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .copyright-text p {
        font-size: 0.6rem;
        color: #5a6577;
    }
}
