/**
 * Footer Styles for Miriam Janke Website
 *
 * Custom styles for the footer section
 */

/* Footer Container */
.miriam-footer {
    padding: 40px 0 30px;
    background-color: var(--color-bg);
    border-top: 1px solid #e8e5df;
    margin-top: 60px;
}

.site-footer {
   background-color: var(--color-bg) !important;
}

.miriam-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Navigation */
.miriam-footer .footer-navigation {
    margin-bottom: 20px;
}

.miriam-footer .footer-menu {
    color: #e8e5df;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.miriam-footer .footer-menu li {
    margin: 0;
    padding: 0;
}

.miriam-footer .footer-menu a {
    color: #c3c1bd;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    display: inline-block;
}

.miriam-footer .footer-menu a:hover,
.miriam-footer .footer-menu a:focus {
    color: var(--color-text-light);
}

.miriam-footer .footer-menu .current-menu-item > a,
.miriam-footer .footer-menu .current_page_item > a {
    font-weight: 500;
    color: #000;
}

/* Site Info / Copyright */
.miriam-footer .site-info {
    text-align: center;
}

.miriam-footer .copyright {
    margin: 0;
    font-size: 11px;
    color: #d6d4cf;
    line-height: 1.5;
}

/* Responsive Design */
@media (min-width: 768px) {
    .miriam-footer {
        padding: 50px 0 40px;
    }

    .miriam-footer .footer-navigation {
        margin-bottom: 25px;
    }

    .miriam-footer .footer-menu {
        gap: 25px;
    }

    .miriam-footer .footer-menu a {
        font-size: 14px;
    }

    .miriam-footer .copyright {
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .miriam-footer .footer-menu {
        gap: 30px;
    }
}

/* Additional Utility Styles */
.miriam-footer a:focus {
    outline: 2px solid var(--color-text);
    outline-offset: 2px;
}