/* ============ FOOTER ============ */
.site-footer{
  background: #3577b3;
  color: #fff;

  /* padding op de footer zelf is prima */
  padding: 36px 0 22px;

  /* force full width */
  width: 100%;
  margin: 0;
}

/* inner wrapper bepaalt max-width + zij-padding */
.site-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* brand */
.site-footer__brand{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__brand img{
  height: 40px;
  width: auto;
}

.site-footer__brand small{
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* nav */
.site-footer__nav{
  display: flex;
  justify-content: center;
  gap: 42px;
}

.site-footer__nav a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.site-footer__nav a:hover{
  opacity: 1;
}

/* CTA */
.site-footer__cta .footer-cta{
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.site-footer__cta .footer-cta:hover{
  text-decoration: underline;
}

/* bottom row */
.site-footer__bottom{
  max-width: 1200px;
  margin: 26px auto 0;
  padding: 14px 16px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.9;
}

.site-footer__bottom a{
  color: #fff;
  text-decoration: none;
}

.site-footer__bottom a:hover{
  text-decoration: underline;
}

/* ============ CREDIT BAR ============ */
.site-footer-credit{
  background: black;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 14px;

  width: 100%;
  margin: 0;
}

.site-footer-credit a{
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-credit a:hover{
  text-decoration: underline;
}

/* responsive */
@media (max-width: 900px){
  .site-footer__inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__nav{
    flex-wrap: wrap;
    gap: 22px;
  }

  .site-footer__bottom{
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}