/* ==========================================================================
   Zoriana Footer — migrated from AppFooter.vue
   ========================================================================== */

.zoriana-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
    background-color: #21212C;
    color: #fff;
    padding: 100px 0;
}

.zoriana-footer::before {
    pointer-events: none;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/footer-bg.png");
    background-position: bottom center;
    background-size: cover;
    opacity: .3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.zoriana-footer__container {
    position: relative;
    z-index: 1;
}

.zoriana-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.zoriana-footer__heading {
    font-size: 30px;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-bottom: 15px;
}

.zoriana-footer__description {
    font-size: 15px;
    text-align: justify;
}

.zoriana-footer__title {
    font-size: 18px;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-bottom: 28px;
}

.zoriana-footer__contact-link {
    font-size: 15px;
    color: inherit;
    display: block;
    margin-bottom: 16px;
}

/* Social media */
.zoriana-footer__smList {
    display: flex;
    gap: 26px;
    margin-top: 25px;
}

.zoriana-footer__smList-item {
    align-items: center;
    display: flex;
    justify-content: center;
}

.zoriana-footer__smList-item svg {
    height: 16px;
    width: 16px;
    fill: #fff;
    transition: .3s all ease-in-out;
}

.zoriana-footer__smList-item:hover svg {
    fill: #ba9a63;
}

/* Newsletter in footer */
.zoriana-footer__grid-item--newsletter {
    display: flex;
    flex-direction: column;
}

.zoriana-footer__input-group {
    display: flex;
    cursor: pointer;
}

.zoriana-footer__input {
    padding: 1rem;
    border: none;
    flex: 1;
    outline: none;
    cursor: pointer;
}

.zoriana-footer__cta {
    padding: .5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EC4400;
    box-shadow: 0px 10px 20px 0px rgba(255, 84, 84, 0.24);
    color: #fff;
    font-size: 14px;
    transition: .3s all ease-in-out;
}

.zoriana-footer__cta:hover {
    background: #000;
    color: #fff;
}

/* Copyright bar */
.zoriana-footer__copy-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 13px;
    padding: 32px 0;
    margin-top: 3rem;
}

.zoriana-footer__copyright {
    opacity: 0.6;
}

.zoriana-footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zoriana-footer__list-link {
    color: inherit;
    transition: .3s all ease-in-out;
}

.zoriana-footer__list-link:hover {
    color: #D5846E;
}

/* Responsive */
@media (max-width: 1024px) {
    .zoriana-footer__grid {
        gap: 40px;
    }
}

@media (max-width: 950px) {
    .zoriana-footer {
        padding: 50px 0;
    }

    .zoriana-footer__grid {
        grid-template-columns: 1fr;
    }

    .zoriana-footer__heading {
        margin-bottom: 1rem;
    }

    .zoriana-footer__title {
        padding-bottom: 0;
        margin-bottom: 1rem;
    }

    .zoriana-footer__copy-wrapper {
        flex-direction: column-reverse;
        padding-bottom: 0;
        gap: 4rem;
    }
}

@media (max-width: 800px) {
    .zoriana-footer__list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 660px) {
    .zoriana-footer__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 460px) {
    .zoriana-footer__list {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
