/**
 * Footer Styles - Persoonlijk & Betrouwbaar
 * Past bij de tone of voice van Hugo
 *
 * BREAKPOINTS (consistent with style.css):
 * - Mobile:  0 - 767px       @media (max-width: 767px)
 * - Tablet:  768px - 1024px  @media (min-width: 768px) and (max-width: 1024px)
 * - Desktop: 1025px+         @media (min-width: 1025px)
 *
 * @package WinkelvanHugo
 */

/* ==========================================================================
   FOOTER CTA - Persoonlijk contact blok
   ========================================================================== */

.lbc-footer-cta {
    background: linear-gradient(135deg, #FF5A4D 0%, #E54A3F 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.lbc-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.03) 30px,
        rgba(255,255,255,0.03) 60px
    );
    pointer-events: none;
}

.lbc-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.lbc-footer-cta__text {
    max-width: 550px;
}

.lbc-footer-cta__text h3 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.lbc-footer-cta__text p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0;
}

.lbc-footer-cta__actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.lbc-btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.lbc-btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.lbc-btn-outline-light {
    background: transparent;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.lbc-btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Tablet and below: stack CTA */
@media (max-width: 1024px) {
    .lbc-footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .lbc-footer-cta__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .lbc-btn-whatsapp,
    .lbc-btn-outline-light {
        justify-content: center;
    }
}

/* ==========================================================================
   FOOTER MAIN
   ========================================================================== */

.lbc-footer-main {
    background: #111;
    padding: 60px 0 50px;
    border-bottom: none;
}

.lbc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 1024px) {
    .lbc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .lbc-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
}

/* Footer Column */
.lbc-footer-col {
    color: #fff;
}

/* About Column */
.lbc-footer-logo {
    margin-bottom: 18px;
}

/* Footer logo - white version for dark background */
.lbc-footer-logo img,
.lbc-footer-logo__img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.lbc-footer-logo a:hover img {
    opacity: 0.8;
}

.lbc-footer-logo__text {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 28px;
    color: #fff;
    letter-spacing: 1px;
}

/* Footer about - WCAG AA compliant contrast on dark bg (4.5:1) */
.lbc-footer-about {
    font-size: 14px;
    color: #a3a3a3;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* eTrusted / Trusted Shops Widget in Footer */
.lbc-footer-col--about etrusted-widget {
    display: block;
    margin-top: 15px;
}

/* Footer Headings */
.lbc-footer-heading {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Footer Links */
.lbc-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lbc-footer-links li {
    margin-bottom: 12px;
}

/* Footer links - WCAG AA compliant contrast on dark bg */
.lbc-footer-links a {
    font-size: 14px;
    color: #a3a3a3;
    transition: all 0.25s ease;
    display: inline-block;
}

.lbc-footer-links a:hover {
    color: #ff8a7a;
    transform: translateX(3px);
}

/* Footer Contact */
.lbc-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Footer contact - WCAG AA compliant contrast on dark bg */
.lbc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #a3a3a3;
}

/* Mobile: center contact items */
@media (max-width: 767px) {
    .lbc-footer-contact li {
        justify-content: center;
    }
}

.lbc-footer-contact svg {
    color: #FF5A4D;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer contact links - WCAG AA compliant contrast on dark bg */
.lbc-footer-contact a {
    color: #a3a3a3;
    transition: color 0.25s ease;
}

.lbc-footer-contact a:hover {
    color: #ff8a7a;
}

/* Social Links */
.lbc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* Mobile: center social links */
@media (max-width: 767px) {
    .lbc-footer-social {
        justify-content: center;
    }
}

/* Footer social links - WCAG AA compliant contrast on dark bg */
.lbc-footer-social__link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4d4d4;
    transition: all 0.3s ease;
}

.lbc-footer-social__link:hover {
    background: #FF5A4D;
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   FOOTER USPS
   ========================================================================== */

.lbc-footer-usps {
    background: #151515;
    padding: 32px 0;
    border-top: 2px solid #2a2a2a;
    border-bottom: 2px solid #2a2a2a;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    display: block;
    /* Visuele scheiding tussen footer-main en footer-bottom */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.lbc-footer-usps__grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* Tablet: 2 column USPs */
@media (min-width: 768px) and (max-width: 1024px) {
    .lbc-footer-usps__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile: 1 column USPs */
@media (max-width: 767px) {
    .lbc-footer-usps__grid {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }
}

/* Footer USP - WCAG AA compliant contrast on dark bg */
.lbc-footer-usp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a3a3a3;
}

/* Mobile: center USP items */
@media (max-width: 767px) {
    .lbc-footer-usp {
        justify-content: center;
    }
}

.lbc-footer-usp svg {
    color: #FF5A4D;
    flex-shrink: 0;
}

/* ==========================================================================
   FOOTER BOTTOM
   ========================================================================== */

.lbc-footer-bottom {
    background: #111;
    padding: 24px 0;
    border-top: none;
    margin-top: 0;
}

.lbc-footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* Tablet and below: stack footer bottom */
@media (max-width: 1024px) {
    .lbc-footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer copy - WCAG AA compliant contrast on dark bg */
.lbc-footer-bottom__copy p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.lbc-footer-bottom__legal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile: center legal links */
@media (max-width: 767px) {
    .lbc-footer-bottom__legal {
        justify-content: center;
        gap: 12px;
    }
}

/* Footer legal links - WCAG AA compliant contrast on dark bg */
.lbc-footer-bottom__legal a {
    font-size: 12px;
    color: #9ca3af;
    transition: color 0.25s ease;
}

.lbc-footer-bottom__legal a:hover {
    color: #ff8a7a;
}

/* Footer KVK - WCAG AA compliant contrast on dark bg */
.lbc-footer-kvk {
    font-size: 11px;
    color: #9ca3af;
    padding-left: 20px;
    border-left: 1px solid #333;
}

/* Mobile: stack KVK */
@media (max-width: 767px) {
    .lbc-footer-kvk {
        border-left: none;
        padding-left: 0;
        display: block;
        width: 100%;
        margin-top: 8px;
    }
}

.lbc-footer-bottom__payment {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lbc-footer-bottom__payment img,
.lbc-payment-icon {
    height: 24px;
    width: auto;
    max-width: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(0.3);
    object-fit: contain;
    display: block;
}

.lbc-footer-bottom__payment img:hover,
.lbc-payment-icon:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Mobile: center and shrink payment icons */
@media (max-width: 767px) {
    .lbc-footer-bottom__payment {
        justify-content: center;
        gap: 6px;
    }
    
    .lbc-footer-bottom__payment img {
        height: 20px;
        max-width: 40px;
    }
}
