/* Footer theming for readability */
.zozo-footer {
    /* Force footer visibility and theme -- use !important to override other stylesheet rules */
    background-color: #efe3b9 !important;
    /* requested footer bg */
    color: #1f1f1f !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10005 !important;
    /* sit above most page elements but below modals */
}

.zozo-footer a {
    color: #2f2f2f;
    text-decoration: none;
}

.zozo-footer a:hover,
.zozo-footer a:focus {
    color: #111111;
    text-decoration: underline;
}

/* Ensure inline SVG social icons use the text color */
.zozo-footer .footer-social svg {
    fill: currentColor;
}

/* Make decorative images responsive and adjust vertical lift (smaller logo should be lower) */
.zozo-footer .footer-deco-img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateY(-90px) !important;
    /* was -120px in main CSS; lower by 30px */
}

/* Ensure the smaller footer link image (100ProcentWestVlaams) is not translated upward */
.zozo-footer .footer-links .footer-deco-img {
    transform: none !important;
    margin-top: 6px;
    /* small spacing so it sits nicely under the company text */
}

/* Limit the company footer logo (e.g. /files/logo.webp) to a slightly smaller size */
.zozo-footer .footer-company .footer-deco-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}

/* Sub-containers (columns) slightly lighter background for contrast */
.zozo-footer .footer-content>div {
    background-color: rgba(255, 255, 255, 0.18);
    /* slightly lighter */
    padding: 12px;
    border-radius: 4px;
    border: none !important;
    /* ensure no borders */
}

/* Layout: left column fixed max width, right column fluid */
.zozo-footer .footer-content {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Left column cap */
.zozo-footer .footer-content>.footer-company {
    flex: 0 0 auto;
    max-width: 420px;
    width: 100%;
}

/* Right column grows to fill remaining space */
.zozo-footer .footer-content>.footer-right {
    flex: 1 1 0;
    min-width: 0;
}

/* On narrow screens stack and center right-column blocks so they don't span full width */
@media (max-width: 880px) {
    .zozo-footer .footer-content {
        display: block;
    }

    .zozo-footer .footer-right>*,
    .zozo-footer .footer-company {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .zozo-footer .footer-marketing {
        text-align: center;
    }
}

/* Make footer-company much lighter than other columns */
.zozo-footer .footer-company {
    background-color: rgba(255, 255, 255, 0.22);
    /* noticeably lighter */
    padding: 14px;
    border-radius: 6px;
}

.zozo-footer .footer-company,
.zozo-footer .footer-company a,
.zozo-footer .footer-company span,
.zozo-footer .footer-company p {
    color: #1f1f1f !important;
    /* darker text inside company block */
}

/* Force all footer text to a single dark color for readability */
.zozo-footer * {
    color: #1f1f1f !important;
}

/* Disable box-shadow for all divs inside the footer */
.zozo-footer div {
    box-shadow: none !important;
}

/* Footer marketing background (icecream) without overlay; image contained in the block */
.zozo-footer .footer-marketing {
    position: relative;
    background-image: url('/files/icecream.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 24px;
    color: #1f1f1f !important;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* ensure image stays within the container */
}

.zozo-footer .footer-marketing p {
    position: relative;
    z-index: 1;
    font-size: 1.06rem;
    /* slightly larger */
    line-height: 1.25;
    font-weight: 600;
    margin: 0;
}
