/* ===========================
   FOOTER STYLING
=========================== */

/* Main footer container */
footer {
    display: flex;
    align-items: flex-end !important;
    background-color: #0b0d12; /* clean white footer */
    border-top: 1px solid #e5e7eb; /* subtle line */
    padding-top: 20px;
    padding-bottom: 0px;
}
footer .container {
    align-items: flex-end !important;   /* Align the two <small> tags to bottom */
    padding-bottom: 0 !important;       /* Remove excess bottom padding */
}

footer small {
    margin-bottom: 5px !important;      /* Adjust spacing if needed (optional) */
}
/* Text styling */
footer small {
    font-size: 0.9rem;
    color: #555;
}

/* Secondary text */
footer .text-secondary {
    color: #888 !important;
}

/* Add subtle hover effect for links (if added later) */
footer a {
    color: #555;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Mobile spacing */
@media (max-width: 768px) {
    footer .container {
        text-align: center;
        flex-direction: column !important;
        gap: 8px;
    }
}
