


footer
{
    /* padding: 40px 0 0 0;
    background-color: #1c66c5;
    position: relative; */
    margin-top: 1rem;
}

.footer-prev
{
    padding: 40px 0 0 0;
    background-color: #004E98;
    position: relative;
}

.footer-header
{
  width: 100%;
  height: 50px;
  background: #004E98;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

#footer-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

#footer-logo {
    width: 300px;
    margin-bottom: 10px;
}

#footer-content-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
    padding: 0;
}


footer li {
    list-style: none;
}

footer a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 20px;
    transition: color 0.2s;
    position: relative;
    overflow: hidden;
}

footer a::after {
  content: '';
  position: absolute;
  background-color: #FF6700;
  height: 3px;
  width: 0;
  left: 0.5rem;
  bottom: 0.2rem;
  transition: all 0.3s ease;
}

#footer-content-nav a:hover::after {
    width: calc(100% - 1rem);
}

/* 
header li::after{
  content: '';
  position: absolute;
  background-color: orange;
  height: 3px;
  width: 0;
  left: 1rem;
  bottom: 1rem;
  transition: all 0.3s ease;
}

header li:hover::after{
  width: calc(100% - 2rem);
} */




.footer-socials {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 10px;
}

.footer-socials a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
}

.footer-socials a:hover {
    color: var(--accent-color);
}

.footer-copy {
    text-align: center;
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-top: 10px;
}

/* Poprawiony box kontaktowy */
.footer-contact-box {
    position: absolute;
    top: 50%;
    right: 2.5vw;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;         /* <-- wyśrodkowanie tekstu w boxie */
    gap: 8px;
    background: transparent;     /* <-- brak tła */
    padding: 0;
    border-radius: 0;
    box-shadow: none;            /* <-- brak cienia */
    z-index: 10;
}
.footer-contact-box a{
    font-size: 1rem;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;                 /* <-- biały tekst */
    font-size: 1rem;
    font-weight: 400;
    text-shadow: none;
    justify-content: center;     /* <-- wyśrodkowanie tekstu w wierszu */
}

.footer-contact-row i {
    color: #fff;
    font-size: 1.15rem;
}




/* Responsywność: box pod stopką, wyśrodkowany */
@media (max-width: 1400px) {
    .footer-contact-box {
        position: static;
        transform: none;
        align-items: center;
        margin: 18px auto 0 auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    .footer-contact-row {
        justify-content: center;
        width: 100%;
    }
    #footer-content-contact
    {
        padding-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    #footer-content {
        width: 98%;
        padding: 0 4px;
    }
    #footer-content-nav {
        gap: 8px;
    }
    .footer-socials {
        gap: 8px;
    }
}

@media (max-width: 700px) {
    #footer-content-contact {
        flex-direction: column;
        gap: 4px;
        font-size: 0.88rem;
        text-align: center;
        padding: 6px 0 4px 0;
        justify-content: center;
    }
    .footer-contact-left,
    .footer-contact-right {
        justify-content: center;
        width: 100%;
        padding: 0;
    }
}
