/**
 * Footer Styles
 * Footer layout, content, and footer language switcher
 */

/* Footer Styles */
.site-footer {
    background: #374151;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
}

.footer-section a:hover {
    color: #b71c1c;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #cccccc;
    text-decoration: none;
}

.footer-section ul a:hover {
    color: #b71c1c;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
    font-size: 0.875rem;
}

/* Footer Language Switcher Styles */
.language-switcher-footer .wpm-language-switcher {
    margin: 1rem 0 0 0;
    padding: 0;
    list-style: none;
}

.language-switcher-footer .wpm-switcher-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.language-switcher-footer .wpm-switcher-list li {
    display: inline-block;
}

.language-switcher-footer .wpm-switcher-list li a,
.language-switcher-footer .wpm-switcher-list li > span {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.language-switcher-footer .wpm-switcher-list li a:hover,
.language-switcher-footer .wmp-switcher-list li > span:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.language-switcher-footer .wpm-switcher-list li.active a,
.language-switcher-footer .wpm-switcher-list li.active > span {
    background-color: #b71c1c;
    color: #ffffff !important;
}

.language-switcher-footer .wpm-switcher-list li a img,
.language-switcher-footer .wpm-switcher-list li > span img {
    margin-right: 3px;
    vertical-align: middle;
}

/* Fallback Footer Language Switcher Styles */
.language-switcher-footer .language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.language-switcher-footer .language-switcher a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
}

.language-switcher-footer .language-switcher a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.language-switcher-footer .language-switcher a.active {
    background-color: #b71c1c;
    color: #ffffff;
}