/* footer.css */

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    margin-top: 60px;
    margin-bottom: 10px;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    border-radius: 10px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-column {
    flex: 1 1 30%;
    min-width: 200px;
    margin-bottom: 10px;
}

.footer-heading {
    font-size: 16px;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 8px;
}

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

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

.footer-column ul li a {
    color: #1a237e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #c62828;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
}

/* Przycisk powrotu na górę */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 10px;
    background: #3949ab;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 12px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background 0.3s, transform 0.3s;
}

#scrollToTop:hover {
    background: #5c6bc0;
    transform: scale(1.1);
}