/* Footer */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 2.5rem 1rem;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--color-orange);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5em;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-section a {
    color: var(--color-white);
}

.footer-section a:hover {
    color: var(--color-orange);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
}

.social-links a {
    display: flex;
    color: var(--color-white);
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--color-orange);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.staff-login-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.staff-login-link:hover {
    color: var(--color-white);
}
