/**
 * Klubovna Footer Styles
 */

/* Footer Animation & Positioning */
.site-footer {
    color: var(--color-orange-klu);
    font-family: var(--font-serif), serif;
    font-weight: lighter;
    font-size: 1.4rem;
    background-image: url('../images/div-bg-grain.png');
    background-size: cover;
    padding: 10px 0 7px 0;
    margin-top: 50px;
    z-index: 100;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    position: relative; /* Added to contain absolute sphere */
}

@media (max-width: 768px) {
    .site-footer {
        position: relative;
        width: 100%;
        margin-top: 50px;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    body.mobile-menu-open .site-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10001;
        margin-top: 0;
        animation: footerRise 0.5s ease-in-out forwards;
    }
}

@keyframes footerRise {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: no-wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
}

.social-links img {
    height: 30px;
    width: auto;
    transition: opacity 0.2s ease;
    padding-right: 6px;
}

.social-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.8;
}

.social-links a span {
    font-size: 1.7rem;
}

.footer-text {
    text-align: right;
    line-height: 1.2;
}

.footer-text p {
    margin: 5px 0;
}

.footer-email {
    text-decoration: underline;
}

.footer-ilu-sphere-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
}

.mobile-menu-footer {
    margin-top: 100px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    z-index: 2;
}

.mobile-menu-footer .social-links {
    justify-content: center;
    margin-bottom: 20px;
}

.mobile-menu-footer .footer-text {
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .social-links img {
        height: 25px;
    }

    .social-links a {
        margin: 2px 0;
    }

    .social-links a span {
        font-size: 1.3rem;
    }
}