/* ==========================================================================
   Footer - Ralph Ammer Theme
   ========================================================================== */

.footer {
    height: 70px;
    /* background-color: #eee; */
    color: #333;
    text-align: center;
    /* padding: 20px;
    margin-top: auto; */
    width: 100%;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* backdrop-filter: blur(3px); */
}

.footer-container {
    border-top: 1px dashed rgba(0, 0, 0, 0.3);
    width: 680px;
    padding-top: 1rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Typography - exakt wie im ursprünglichen CSS */
.footer-container p {
    font-family: "Crimson Pro", serif !important;
    font-optical-sizing: auto;
    font-weight: 300 !important;
    font-style: normal;
    font-size: 1.25rem !important; /* Gleiche Größe wie Body im Original */
    line-height: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #333 !important;
    text-align: center;
}

/* Footer Links */
.footer-container a {
    color: #555 !important;
    text-decoration-color: #aaa !important;
    transition: color 0.2s ease !important;
}

.footer-container a:hover {
    color: #333 !important;
}

/* Mobile Responsive Design */
@media (max-width: 570px) {
    .footer-container {
        width: 90%;
        padding-top: 1.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .footer-container p {
        font-size: 1.25rem !important;
        line-height: 1.5rem !important;
        text-align: center;
    }
}
