:root {
    --footer-text-color: white;
    --footer-text-opacity: 0.65;
    --footer-hover-opacity: 1;
    --footer-transition: color 0.3s ease;
    --footer-spacing: 15px;
    --footer-gap: 20px;
}

footer .container {
    display:flex;
    padding: 15px;
    gap: 15px;
}

footer .footer-navigation {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

footer .footer-nav-container {
    margin-bottom: 20px;
    width: 100%;
}

footer .footer-main {
    display: flex;
    padding: var(--footer-spacing);
}

footer .footer-logo-container {
    display: flex;
    flex-direction: column;
}

footer .footer-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--footer-spacing);
}

footer .footer-logo {
    object-fit: contain;
    object-position: 0 0;
}

footer .footer-nav-menu li {
    margin: 0;
    text-align: left;
}

footer .footer-nav-menu li a, footer .footer-logo-container a {
    display: inline-block;
    min-height: 24px;
    min-width: 24px;
    color: var(--footer-text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--footer-transition);
    opacity: var(--footer-text-opacity);
    text-align: left;
    white-space: nowrap;
}

footer .footer-nav-menu > li > a {
    opacity: var(--footer-hover-opacity);
    font-weight: 700;
    text-decoration: none;
}

footer .footer-nav-menu li a:hover {
    opacity: var(--footer-hover-opacity);
    text-decoration: none;
}

footer .sub-menu {
    padding: 0;
    list-style: none;
}

footer .site-info {
    font-size: 12px;
    padding:15px;
    opacity: 0.6;
    color: white;
    text-align: center;
}

footer .site-info a {
    color: white !important;
}

footer .site-info-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--footer-gap);
}

footer .site-info-links a {
    color: var(--footer-text-color);
    text-decoration: none;
}

footer .footer-logo-container a:hover, footer .footer-logo-container a:first-child {
    text-decoration: none;
    opacity: 1;
}

footer .site-info a:hover {
    text-decoration: underline;
    color: var(--footer-text-color);
}

footer .site-info-links a:not(:last-child)::after {
    content: " | ";
    color: var(--footer-text-color);
    margin-left: var(--footer-gap);
}

@media (max-width: 445px) {
    footer .container {
        flex-wrap: wrap;
    }
    footer .footer-navigation {
        padding-top: 15px;
    }
}

@media (max-width: 768px) {
    footer .footer-nav-menu {
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }
}
