/* Hockey Footer */
.site-footer {
    background-color: #1b232b;
    border-top: 3px solid #668eab;
    padding: 2.5rem 5% 1rem;
    color: #b1c4d8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-brand-logo .logo-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.footer-description {
    line-height: 1.6;
    font-size: 0.85rem;
    max-width: 320px;
    color: #888888;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 0.35rem;
}

.footer-links a,
.footer-contact-list a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #668eab;
}

.footer-contact-list strong {
    color: #cccccc;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0;
}

.address-line {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom-bar {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-parent-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: bold;
    color: #64748b;
    letter-spacing: 1px;
}

.footer-logo-inline {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.footer-logo-inline:hover {
    filter: grayscale(0%) opacity(1);
}

.dark .footer-parent-brand {
    color: #94a3b8;
}

.dark .footer-logo-inline {
    filter: grayscale(100%) brightness(200%) opacity(0.7);
}

.dark .footer-logo-inline:hover {
    filter: grayscale(0%) brightness(100%) opacity(1);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-left: auto;
}

.footer-legal-links p {
    margin: 0;
}

.legal-anchors {
    display: flex;
    gap: 1.5rem;
}

.legal-anchors a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-anchors a:hover {
    color: #1b232b;
}

.dark .footer-legal-links,
.dark .legal-anchors a {
    color: #94a3b8;
}

.dark .legal-anchors a:hover {
    color: #f8fafc;
}

@media (max-width: 1024px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 5% 1rem;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-left: 0;
    }
}
