

/* =========================================================
   NAV + FOOTER
   Plik: nav-footer.css
   Opis: Nawigacja górna + brand + stopka
========================================================= */


/* =========================================================
   TOP NAV / HEADER
========================================================= */

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #243041;
}

.navRight{
  display: flex;
  align-items: center;
  gap: 18px;
}

.navLink{
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: #5b677a;
}

.navLink:hover{
  color: #243041;
}

/* helper: hide Learn only on mobile 
.navLearn{}*/


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand .custom-logo-link{
  display: inline-flex;
  align-items: center;
}

.brand .custom-logo{
  height: 28px;
  width: auto;
  display: block;
}


/* =========================================================
   FOOTER
========================================================= */

footer{
  padding: 44px 0 26px;
  background: #ffffff;
}

.footerTop{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
}

.footGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr) 1.4fr;
  gap: 34px;
}

.footCol h4{
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #243041;
  font-weight: 700;
}

.companyBlock{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.companyBlock strong{
  color: #243041;
  font-weight: 700;
}

.footBottom{
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}


/* =========================================================
   RESPONSIVE — NAV + FOOTER
========================================================= */

@media (max-width: 980px){

  .footerTop{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footGrid{
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 560px){

  /* NAV */
  .navRight{
    gap: 12px;
  }

  .navLearn{
    display: none;
  }

  /* FOOTER */
  footer{
    padding: 26px 0 18px;
  }

  .footGrid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .companyBlock{
    font-size: 12px;
    line-height: 1.6;
  }

  .footBottom{
    margin-top: 18px;
  }

}
