@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Footer */
.footer {
    background: #001D3D;
    box-shadow: 0px 4px 96.8px 0px rgba(0, 0, 0, 0.04);
    padding: 40px 10%; /* Uniwersalne marginesy zamiast sztywnych */
}

/* Kontener z kolumnami */
.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Boxy w stopce */
.footer-box {
    display: flex;
    flex-direction: column;
    align-items: start; /* Wyrównanie tekstu do lewej */
    padding: 20px;
}

/* Logo */
.footer-box img {
    width: 100px;
}

/* Tekst i linki */
.footer-box p,
.footer-box a {
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-box a {
    color: hsl(0, 0%, 80%);
    text-decoration: none;
    margin-top: 5px;
}

.footer-box a:hover {
    transition: color 0.3s ease;
    color: #FFF;
}

/* Tytuły w stopce */
.title-4 {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* 🔹 Responsywność */
@media screen and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 20px; /* Mniejsze paddingi na telefonach */
    }

    .footer-container {
        grid-template-columns: repeat(1, 1fr); /* 1 kolumna na telefonach */
        text-align: center;
        gap: 10px;
    }

    .footer-box {
        align-items: center; /* Środkowanie zawartości */
        padding: 10px;
    }

    .footer-box img {
        margin-bottom: 10px;
    }
}
