/* FOOTER SECTION */

/* Footer Container */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%; /* Aligns with central column */
    z-index: 10;
    margin: 0 auto;
    padding: calc(100vw * (20 / 3200)); /* Proportional padding */
    background: url('../assets/images/footer/footer-frame.png') no-repeat center, #000; /* Fallback to black */
    background-size: contain;
    color: #fff;
    font-size: calc(100vw * (26 / 3200)); /* Scaled font size */
    text-align: center;
    box-sizing: border-box;
}

/* Footer Links */
.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: inherit;
}

.footer-link:hover {
    color: #ffcc00;
}

/* Center Text (Back to Top) */
.footer-center-text {
    font-family: '1651AlchemyW00Italic', serif;
    font-size: inherit;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.footer-center-text:hover {
    transform: scale(1.1);
    text-shadow: 0px 4px 6px rgba(255, 255, 255, 0.8);
}

/* Copyright Section (Right Aligned) */
.footer-copyright {
    font-size: inherit;
    color: #fff;
    text-align: right;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: calc(100vw * (10 / 3200)); /* Reduced padding */
    }

    .footer-link, .footer-center-text, .footer-copyright {
        margin-bottom: 10px;
    }
}
