@import url('../_root.css');

.footerContainer {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 40px 20px 20px;
    font-family: inherit;
}

.footerTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footerLeft {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.mainLogo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footerLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footerLinks a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.footerLinks a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.footerRight {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footerRight img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footerMiddle {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footerMiddle p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.techLogos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.techLogos img {
    height: 30px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.techLogos img:hover {
    opacity: 1;
}

.footerBottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .footerTop {
        flex-direction: column;
    }

    .footerLeft,
    .footerRight {
        width: 100%;
    }

    .footerRight {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footerLinks {
        gap: 10px 20px;
    }

    .techLogos {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footerLinks {
        flex-direction: column;
        gap: 10px;
    }

    .footerRight {
        gap: 10px;
    }

    .footerRight img {
        height: 55px;
    }

    .techLogos img {
        height: 25px;
    }
}
