
/* ===== NEW FOOTER DESIGN ===== */
.main-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 0 0;
    margin-top: 4rem;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Kolumny */
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent); /* Używamy zmiennej accent z theme */
    display: inline-block;
}

/* Logo */
.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Logo na biało dla kontrastu */
    opacity: 0.9;
}

/* Adres i Tekst */
.footer-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.footer-address p {
    margin: 0.2rem 0;
    line-height: 1.5;
    color: #ccc;
}

/* Kontakt */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-register-info {
    margin-top: 1.5rem;
}

.company-name {
    font-weight: 700;
    color: #fff;
    margin: 0.2rem 0;
}

.register-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #888;
    margin-top: 0.5rem;
}

/* Tabela Danych Formalnych */
.footer-data-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.4rem;
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    color: #888;
    font-size: 0.9rem;
}

.data-value {
    color: #fff;
    font-weight: 500;
    font-family: 'Roboto Mono', monospace; /* Monospace dla cyfr */
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsywność */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
}
