﻿/* ===================== FOOTER BASE ===================== */
.np-footer {
    background: var(--np-footer-gradient);
    color: var(--np-white);
    padding: 60px 0 40px;
    border-radius: 24px 24px 0 0;
    width: 100%;
}
/* ===================== END FOOTER BASE ===================== */



/* ===================== FOOTER INNER LAYOUT ===================== */
.np-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}
/* ===================== END FOOTER INNER LAYOUT ===================== */



/* ===================== FOOTER LEFT COLUMN ===================== */
.np-footer-left {
    width: 330px;
    flex-shrink: 0;
}
/* ===================== END FOOTER LEFT COLUMN ===================== */



/* ===================== FOOTER RIGHT COLUMN ===================== */
.np-footer-right {
    flex-grow: 1;
    max-width: 700px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* ===================== END FOOTER RIGHT COLUMN ===================== */



/* ===================== FOOTER TITLES ===================== */
.np-footer-title {
    font-size: var(--fs-xxl);
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--np-white);
    font-family: var(--font-body);
}
/* ===================== END FOOTER TITLES ===================== */



/* ===================== FOOTER LIST ===================== */
.np-footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
}

    .np-footer-list li {
        margin-bottom: 0.7rem;
    }

    .np-footer-list a {
        color: var(--np-white);
        font-size: var(--fs-md);
        padding: 6px 10px;
        border-radius: 8px;
        transition: background 0.25s ease, opacity 0.25s ease;
    }

        .np-footer-list a:hover {
            background: var(--np-footer-hover-bg);
            color: var(--np-white);
            text-decoration: none !important;
        }
/* ===================== END FOOTER LIST ===================== */



/* ===================== FOOTER TEXT BLOCK ===================== */
.np-footer-copy {
    font-size: var(--fs-sm);
    opacity: 0.6;
    margin-top: 1.5rem;
}

.np-footer-desc {
    font-size: var(--fs-sm);
    color: var(--np-footer-text-desc);
    opacity: 1;
    margin-bottom: 1.4rem;
    max-width: 100%;
}
/* ===================== END FOOTER TEXT BLOCK ===================== */



/* ===================== FOOTER SUBSCRIBE FIELD ===================== */
.np-footer-subscribe {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.np-footer-input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    font-size: var(--fs-md);
}

/* Footer subscribe input */
.np-footer .np-footer-input {
    background: var(--np-footer-input-bg) !important;
    background-clip: border-box !important;
    border-radius: 25px !important;
    border: none !important;
    padding: 16px 22px !important;
    font-size: var(--fs-md);
    color: var(--np-white);
    outline: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

    /* Placeholder */
    .np-footer .np-footer-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    /* Focus state */
    .np-footer .np-footer-input:focus {
        background: var(--np-footer-input-active-bg) !important; /* на півтону світліше */
    }


.np-footer-btn {
    padding: 14px 24px !important;
    border-radius: 10px;
}

/* Subscribe button in footer */
.np-footer .np-footer-btn {
    background-color: var(--np-subscribe-btn) !important;
    color: var(--np-white) !important;
    border-radius: 25px !important;
    padding: 14px 28px !important;
    border: none !important;
    font-weight: 600;
    font-size: var(--fs-md);
    transition: background 0.25s ease, transform 0.2s ease;
}

    .np-footer .np-footer-btn:hover {
        background-color: var(--np-accent2) !important;
        transform: translateY(-2px);
    }
/* ===================== END FOOTER SUBSCRIBE FIELD ===================== */



/* ===================== FOOTER EMAIL ERROR ===================== */
.np-footer-field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.np-footer-subscribe {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.np-footer-error {
    color: var(--np-error-color);
    font-size: 14px;
    min-height: 18px;
    margin-top: 6px;
    text-align: left;
    padding-left: 20px;
}
/* ===================== END FOOTER EMAIL ERROR ===================== */



/* ===================== FOOTER SOCIAL ===================== */
.np-footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0.5rem;
}

.np-footer-social-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    line-height: 1;
    margin: 0 !important;
    margin-right: 10px;
}

.np-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .np-social-icon:hover {
        transform: translateY(-3px);
        opacity: 0.8;
    }
/* ===================== END FOOTER SOCIAL ===================== */



/* ===================== SOCIAL ICON SOURCES ===================== */
.youtube {
    background-image: url('/images/newDesign/icons/social/youtube.svg');
}

.threads {
    background-image: url('/images/newDesign/icons/social/threads.svg');
}

.tiktok {
    background-image: url('/images/newDesign/icons/social/tiktok.svg');
}

.instagram {
    background-image: url('/images/newDesign/icons/social/instagram.svg');
}

.facebook {
    background-image: url('/images/newDesign/icons/social/facebook.svg');
}

.linkedin {
    background-image: url('/images/newDesign/icons/social/linkedin.svg');
}
/* ===================== END SOCIAL ICON SOURCES ===================== */



/* ===================== FOOTER RESPONSIVE ===================== */
@media (max-width: 992px) {
    .np-footer-inner {
        flex-direction: column;
        padding: 0 30px;
        gap: 40px;
    }

    .np-footer-left,
    .np-footer-right {
        max-width: 100%;
        width: 100%;
    }
}
/* ===================== END FOOTER RESPONSIVE ===================== */



/* ===================== FOOTER BOTTOM LINE ===================== */
.np-footer-bottom {
    width: 100%;
    text-align: start;
    padding-top: 25px;
    margin-top: 40px;
}

    .np-footer-bottom p {
        margin: 0 10px;
        font-size: var(--fs-sm);
    }
/* ===================== END FOOTER BOTTOM LINE ===================== */