/**
 * Hunik AI Footer Styles V2
 * Fond sombre (contraste), charte hunik.group, moderne
 */

/* Footer */
.hunik-footer {
    background: var(--color-dark, #333333);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 24px 40px;
    margin-top: 80px;
    font-family: var(--font-secondary, 'Raleway', sans-serif);
}

.hunik-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo column */
.hunik-footer__col-logo {
    grid-column: 1;
}

.hunik-logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.hunik-logo-footer__img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hunik-logo-footer__text-group {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hunik-logo-footer__text {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hunik-logo-footer__ai {
    background: linear-gradient(135deg, #3854ff 0%, #9024f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 20px;
}

.hunik-footer__tagline {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Column headings */
.hunik-footer__heading {
    margin: 0 0 16px 0;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Lists */
.hunik-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hunik-footer__link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.hunik-footer__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #3854ff 0%, #9024f5 100%);
    transition: width 0.3s ease;
}

.hunik-footer__link:hover {
    color: #ffffff;
}

.hunik-footer__link:hover::before {
    width: 100%;
}

/* Separator */
.hunik-footer__separator {
    max-width: 1200px;
    margin: 0 auto 24px;
    height: 1px;
    background: linear-gradient(135deg, #3854ff 0%, #9024f5 100%);
    opacity: 0.3;
}

/* Bottom section */
.hunik-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 12px;
}

.hunik-footer__legal {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.hunik-footer__legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hunik-footer__legal-link:hover {
    color: var(--color-primary, #3854ff);
}

.hunik-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hunik-footer {
        padding: 40px 24px 30px;
        margin-top: 60px;
    }

    .hunik-footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hunik-footer__col-logo {
        grid-column: auto;
    }

    .hunik-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hunik-footer__legal {
        flex-direction: column;
        gap: 12px;
    }
}
