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

.spark-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    background: #000;
    padding: 90px 60px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .spark-footer {
        padding: 70px 30px;
    }

    .footer-logo-img {
        width: 100%;
        max-width: 150px;
        height: auto;
    }
}


/* CONTAINER */

.footer-container {

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 100px;

    width: 100%;
}


/* =========================
   LEFT
========================= */

.footer-left {

    flex: 1;
}


/* LOGO */

.footer-logo {

    text-decoration: none;

    display: inline-block;
}

.footer-logo-img {

    width: 320px;

    height: auto;

    display: block;
}


/* =========================
   RIGHT
========================= */

.footer-right {

    flex: 1.4;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 60px;
}


/* COLUMN */

.footer-column {

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* TITLE */

.footer-column h3 {

    color: rgba(255,255,255,0.45);

    font-size: 18px;
    font-weight: 500;

    margin: 0 0 10px 0;
}


/* LINKS */

.footer-column a,
.footer-column p {

    color: #fff;

    text-decoration: none;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.7;

    margin: 0;

    transition: 0.3s ease;
}

.footer-column a:hover {

    opacity: 0.6;
}


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

@media (max-width: 1200px) {

    .footer-container {

        flex-direction: column;

        gap: 70px;
    }

    .footer-right {

        width: 100%;

        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .spark-footer {
        padding: 70px 30px;
        clear: both;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-logo-img {
        width: 100%;
        max-width: 150px;
        height: auto;
        margin: 0;
    }

    .footer-left {
        text-align: left;
        margin-bottom: 0;
    }

    .footer-logo-top {

        font-size: 56px;
    }

    .footer-logo-bottom {

        font-size: 18px;

        letter-spacing: 7px;
    }

    .footer-right {

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 20px;
    }

    .footer-column h3 {
        font-size: 15px;
    }

    .footer-column a,
    .footer-column p {

        font-size: 15px;
    }
}

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

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

.design-credit {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.design-credit:hover {
    color: rgba(255, 255, 255, 0.7);
}

.design-credit .heart {
    color: #ff4e6e; /* premium pink/red accent used in the child theme */
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    animation: heartBeat 2s infinite ease-in-out;
}

.design-credit .brand-alchemy {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.design-credit .brand-alchemy:hover {
    opacity: 0.7;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 50px;
        padding-top: 30px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copyright,
    .design-credit {
        font-size: 13px;
    }
}