/* ===========================================
   Footer Component
   =========================================== */

.site-footer {
    background-color: var(--footer-bg, var(--bs-dark));
    color: var(--footer-text, rgba(255, 255, 255, 0.8));
    padding-block: 3rem 1.5rem;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease;
    opacity: 0.8;
}

.site-footer a:hover {
    opacity: 1;
}

.site-footer h5,
.site-footer h6 {
    color: inherit;
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid currentColor;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(128, 128, 128, 0.3);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, 0.2);
    margin-right: 0.5rem;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.footer-social a:hover {
    background-color: var(--bs-primary);
    opacity: 1;
}
