/* Home_footer pages styling */

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    font-size: 1rem;
}

/* MOBILE - Copyright po lewej, linki po prawej pionowo */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.copyright {
    color: #ffffff;
    font-weight: 600;
}

.copyright p {
    margin: 0; /* Resetuje margines z base.css */
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    text-align: right;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-content a:hover {
    color: #eee;
}

/* DESKTOP - od 700px linki poziomo */
@media (min-width: 700px) {
    .footer-content {
        align-items: center;
    }
    
    .footer-links ul {
        flex-direction: row;
        gap: 30px;
    }
}