/**
 * Footer Component
 */

.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0 20px 0;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

/* Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Social Row */
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ccc;
    margin-right: 10px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social-icon:hover {
    opacity: 0.7;
}

/* App Download Row */
.footer-app-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-app-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ccc;
    margin-right: 10px;
}

.footer-app-buttons {
    display: flex;
    gap: 10px;
}

.footer-app-button {
    height: 40px;
    transition: opacity 0.3s ease;
}

.footer-app-button img {
    height: 100%;
    width: auto;
}

.footer-app-button:hover {
    opacity: 0.8;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF5722;
}

.footer-links-separator {
    color: #666;
}

/* Copyright */
.footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    color: #999;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-social-row,
    .footer-app-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-social-label,
    .footer-app-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-social-icons {
        flex-wrap: wrap;
    }

    .footer-social-icon {
        width: 30px;
        height: 30px;
    }

    .footer-app-button {
        height: 35px;
    }

    .footer-link,
    .footer-copyright {
        font-size: 13px;
    }
}