/**
 * Footer Styles
 * Professional footer component styling
 */

/* ========================================
   Footer Container
   ======================================== */

.site-footer {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.site-footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ========================================
   Footer Branding
   ======================================== */

.site-footer__brand {
    margin-bottom: 10px;
}

.site-footer__brand-title {
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0;
    font-size: 24px;
}

/* ========================================
   Footer Contact Info
   ======================================== */

.site-footer__contact {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #333;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.5;
}

.site-footer__contact span {
    display: inline-block;
}

.site-footer__contact strong {
    font-weight: 600;
}

/* ========================================
   Footer Legal Disclaimer
   ======================================== */

.site-footer__legal {
    font-size: 9px;
    line-height: 1.4;
    color: #888;
    font-family: 'Manrope', sans-serif;
    text-align: justify;
    margin-top: 20px;
    margin-bottom: 0;
}

.site-footer__legal a {
    color: inherit;
    text-decoration: underline;
}

.site-footer__legal a:hover {
    color: #555;
}

/* ========================================
   Footer Responsive
   ======================================== */

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 16px;
    }

    .site-footer__contact {
        flex-direction: column;
        gap: 8px;
    }

    .site-footer__brand-title {
        font-size: 20px;
    }

    .site-footer__legal {
        font-size: 8px;
    }
}