/* ===========================
   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;
    }
}

/* ===========================
   COOKIES BANNER
=========================== */
.cookies-banner {
    position: fixed !important;
    bottom: 0px !important;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    display: none;
    /* Hidden by default, shown via JS */
}

.cookies-banner.show {
    display: block;
}

.cookies-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookies-banner-text {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    font-weight: 500;
}

.cookies-banner-btns {
    display: flex;
    gap: 15px;
}

.btn-cookies-manage,
.btn-cookies-accept {
    background-color: #28a745 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn-cookies-manage:hover,
.btn-cookies-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .cookies-banner {
        padding: 25px 15px;
    }

    .cookies-banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookies-banner-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .cookies-banner-btns {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .btn-cookies-manage,
    .btn-cookies-accept {
        flex: 1;
        max-width: 160px;
        padding: 12px 5px;
        font-size: 0.9rem;
    }
}