/* footer.css */

/* Container for the site footer */
.site-footer {
    background: #2B6B80;
    color: var(--color-LuonnonValkoinen);
    text-align: center;
    padding: 0rem 1.5rem;
    margin-top: 2rem;
    font-family: 'Hepta-slab';
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-top{
    display:flex;           /* logo left, socials right */
    align-items:center;
    justify-content:space-between;
    gap:1.5rem;
    padding-top: 2rem;
  } 

  .footer-logo img {
  height: 80px;                        /* tweak as needed */
  width: auto;                         /* keep aspect ratio */
  display: block;
}
  /* Links section inside the footer */
  .footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.footer-credit {
  gap:.5rem;
  margin-bottom: 0.5rem;
  font-size:.95rem;
  line-height:1.4;
}

  

@media (max-width: 600px) {
  .footer-top {
    display: grid;
    justify-content: center;
    gap: 20px;
  }
}
