footer {
    background: linear-gradient(180deg, #090909, #232222);
    color: white;
    padding: 40px 20px 20px 20px;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1 1 65%;
}

.footer-links {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* LOGO po prawej */
.footer-logo {
    flex: 0 0 30%; /* prawa kolumna, 30% szerokości */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.footer-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.footer-logo span {
    font-weight: bold;
    font-size: 28px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #ccc;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        flex: 1 1 100%;
    }

    .footer-logo {
        flex: 1 1 100%;
        order: -1;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-description {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 18px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-logo span {
        font-size: 22px;
    }
}

/* FOOTER LOGIN / REJESTRACJA */
#footerLogin {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0px;
    margin-top: 0;
    background-color: #000000;
    color: #fff;
    z-index: 999;
}

body.has-fixed-footer {
    padding-bottom: 70px; /* aby content nie był przykryty przez footer */
}

/* AUTH (login / register) - fixed, mniejszy footer */
body.auth-page footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background-color: #000;
    color: #fff;
    z-index: 9999;
}

body.auth-page {
    padding-bottom: 72px;
}