/**
 * Part of LinkMyGoals.com project.
 * GitHub: https://github.com/ChadsCode/LinkMyGoals
 * License: MIT Open-Source
 * Website: https://www.linkmygoals.com/
 *
 * Copyright (c) 2025 Chad Wigington
 * LinkedIn: https://www.linkedin.com/in/chadwigington/
 */

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--footer-height);
    background: var(--surface);
    border-top: 1px solid var(--border);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.03);
}

.footer-content {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 48px;
}

.footer-left {
    font-size: 11px;
    color: var(--text-secondary);
    position: absolute;
    left: 0;
}

.footer-left a {
    color: var(--linkedin-blue);
    text-decoration: none;
    font-weight: 500;
}

.footer-left a:hover {
    color: var(--linkedin-blue-dark);
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.disclaimer {
    font-size: 13px;
    letter-spacing: 0.3px;
}

.footer-right {
    display: flex;
    gap: 16px;
    font-size: 11px;
    position: absolute;
    right: 0;
}

.footer-right a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-right a:hover {
    color: var(--linkedin-blue);
}