/* ==================== FOOTER ==================== */

.footer {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.footer-image {
    max-width: 280px;
    max-height: 280px;
    cursor: pointer;
}

/* Content Container */
.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

/* Links Column */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: start;
}

.footer-links-header {
    color: #0F0F0F;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.625rem;
    cursor: pointer;
    margin: 0;
}

.footer-links-content {
    color: #525252;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    cursor: pointer;
    margin: 0;
    transition: color 0.2s ease;
}

.footer-links-content:hover {
    color: #0F0F0F;
    text-decoration: underline;
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #D2D6DB;
}

/* Copyright */
.footer-copright {
    text-align: start;
    color: #989896;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
}

/* Social Buttons */
.footer-social-btn {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    background-color: #FFFFFF;
    cursor: pointer;
    border: 1px solid #D6D6D6;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s ease;
}

.social-btn img {
    height: 20px;
    width: 20px;
}

.social-btn:hover {
    background-color: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet Large - 992px to 1199px */
@media (max-width: 1199px) {
    .footer {
        gap: 2rem;
    }

    .footer-image {
        max-width: 240px;
        max-height: 240px;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-links-header {
        font-size: 1rem;
    }

    .footer-links-content {
        font-size: 0.875rem;
    }
}

/* Tablet - 768px to 991px */
@media (max-width: 991px) {
    .footer {
        gap: 2rem;
        align-items: center;
    }

    .footer-image {
        max-width: 220px;
        max-height: 220px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
    }

    .footer-links {
        align-items: center;
        text-align: center;
    }

    .footer-links-header {
        text-align: center;
    }

    .footer-links-content {
        text-align: center;
    }

    .footer-social-btn {
        justify-content: center;
    }

    .footer-copright {
        text-align: center;
    }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
    .footer {
        gap: 2rem;
        align-items: center;
    }

    .footer-image {
        max-width: 200px;
        max-height: 200px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .footer-links {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-links-header {
        font-size: 1.125rem;
        text-align: center;
    }

    .footer-links-content {
        font-size: 0.9375rem;
        text-align: center;
    }

    .footer-social-btn {
        justify-content: center;
    }

    .footer-divider {
        margin: 0.5rem 0;
    }

    .footer-copright {
        text-align: center;
        font-size: 0.8125rem;
    }
}

/* Mobile Small - 479px and below */
@media (max-width: 479px) {
    .footer {
        gap: 1.5rem;
    }

    .footer-image {
        max-width: 180px;
        max-height: 180px;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .footer-links-header {
        font-size: 1rem;
    }

    .footer-links-content {
        font-size: 0.875rem;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .social-btn img {
        height: 18px;
        width: 18px;
    }

    .footer-copright {
        font-size: 0.75rem;
    }
}
