/**
 * Custom Liofivit Footer Styles
 * Add this to your child theme's style.css or enqueue as a separate file
 */

/* Ensure parent containers don't clip footer */
body,
#page,
.site {
    overflow-x: visible !important;
}

/* ===== FOOTER ===== */
.liofivit-footer {
    position: relative;
    background: radial-gradient(50% 80% at 50% 100%, rgba(115, 255, 83, 0.40) 0%, rgba(75, 115, 66, 0.00) 100%);
    padding: 80px 0 40px;
    margin-top: 0;
    /* Break out of container */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: visible;
}

/* Footer Background Image */
.liofivit-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 120%;
    background-image: url('assets/images/footer-background.svg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.liofivit-footer-map-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.liofivit-footer-content {
    position: relative;
    z-index: 2;
}

.liofivit-footer-grid {
    display: flex;
    justify-content: flex-end;
}

.liofivit-footer-right {
    text-align: right;
}

.liofivit-footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.6px;
    color: var(--contrast, #111);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.liofivit-footer-logo svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.liofivit-footer-address {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.48px;
    color: var(--contrast, #111);
    text-align: right;
    margin: 0;
    font-style: normal;
}

.liofivit-footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
}

.liofivit-footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.42px;
    color: var(--contrast, #111);
    opacity: 0.6;
}

.liofivit-footer-privacy {
    color: var(--contrast, #111);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.liofivit-footer-privacy:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {
    .liofivit-footer {
        padding: 60px 40px;
        margin-top: 60px;
    }



    .liofivit-footer-bottom {
        margin-top: 40px;
    }

    .liofivit-footer-copyright {
        font-size: 12px;
    }
}
