/* =================================================================
   VICIOUS FUN — FOOTER
   SEO-rich footer with 3-column layout on Porto's dark background.
   ================================================================= */

/* -----------------------------------------------------------------
   Hide Porto's built-in footer-bottom bar (old copyright + mini logo)
   ----------------------------------------------------------------- */

#footer .footer-bottom,
.footer-wrapper .footer-bottom,
.footer-bottom {
    display: none !important;
}

/* -----------------------------------------------------------------
   Main footer wrapper
   ----------------------------------------------------------------- */

.vf-footer-main {
    padding: 50px 0 30px;
    margin-top: 40px;
    background: #272425;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #999;
}

.vf-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Brand column — logo watermark behind text */
.vf-footer-col--brand {
    position: relative;
    min-height: 180px;
}

.vf-footer-logo-bg {
    position: absolute;
    top: -120px;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.vf-footer-logo-bg img {
    width: 280px;
    height: auto;
}

.vf-footer-col--brand > *:not(.vf-footer-logo-bg) {
    position: relative;
    z-index: 1;
}

.vf-footer-tagline {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Social icons */
.vf-footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.vf-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ccc !important;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none !important;
}

.vf-footer-socials a:hover {
    background: #a11515;
    color: #fff !important;
}

/* Copyright line */
.vf-footer-copyright {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* Column headings */
.vf-footer-heading {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 18px !important;
    padding: 0;
}

/* Link lists */
.vf-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vf-footer-links li {
    margin-bottom: 10px;
}

.vf-footer-links a {
    color: #999 !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.2s;
}

.vf-footer-links a:hover {
    color: #a11515 !important;
}

/* About text */
.vf-footer-text {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------- */

@media screen and (max-width: 991px) {
    .vf-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 575px) {
    .vf-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vf-footer-main {
        padding: 36px 0 80px;
    }
}
