/* ==========================================================================
   Lindhaus Custom Footer
   ========================================================================== */

/* --- Main footer --- */
.lh-footer__main {
    background: #777474;
    padding: 50px 0 40px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.lh-footer__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.lh-footer__main .lh-footer__container {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* --- Logo column --- */
.lh-footer__col--logo {
    display: flex;
    align-items: flex-start;
}

.lh-footer__logo {
    display: block;
    text-decoration: none;
}

.lh-footer__logo-img {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
}

.lh-footer__logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* --- Column titles --- */
.lh-footer__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    font-family: 'Inter', sans-serif;
}

.lh-footer__title--app {
    margin-top: 24px;
}

/* --- Link lists --- */
.lh-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lh-footer__list li {
    margin-bottom: 8px;
}

.lh-footer__list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.25s ease;
}

.lh-footer__list a:hover {
    opacity: 0.7;
}

/* --- Registra garanzia button --- */
.lh-footer__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease;
}

.lh-footer__btn:hover {
    background: #fff;
    color: #777474;
}

/* --- Social icons --- */
.lh-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lh-footer__social a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.lh-footer__social a:hover {
    opacity: 0.7;
}

.lh-footer__social svg {
    width: 24px;
    height: 24px;
}

/* --- App badges --- */
.lh-footer__apps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lh-footer__app-badge {
    display: block;
    max-width: 140px;
}

.lh-footer__app-badge img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* --- Bottom bar --- */
.lh-footer__bottom {
    background: #5e5b5b;
    padding: 24px 0;
    color: #ccc;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.lh-footer__bottom-inner {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.lh-footer__address p {
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .lh-footer__main .lh-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .lh-footer__col--logo {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .lh-footer__logo-img {
        width: 140px;
    }
}

@media (max-width: 600px) {
    .lh-footer__main .lh-footer__container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .lh-footer__col--logo {
        justify-content: center;
    }

    .lh-footer__social {
        justify-content: center;
    }

    .lh-footer__apps {
        align-items: center;
    }

    .lh-footer__bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
