@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Source+Sans+3:wght@200..900&display=swap');

footer {
  font-family: "Chillax-Variable", "IBM Plex Sans Thai", sans-serif;
  padding: 4rem 2rem;
  background-color: var(--bg);
  color: var(--subtext);
  text-align: center;
  border: none;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

footer .social-links a {
  font-weight: 700;
  color: var(--subtext);
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

footer .social-links a:hover {
  color: var(--red);
  transform: scale(1.2);
}

footer .copyright {
  font-weight: 600;
  color: var(--subtext);
  margin-bottom: 0.5rem;
}

footer .st-link {
  color: var(--subtext);
  text-decoration: none;
  font-size: 0.85rem;
  margin: 0 0.5rem;
  opacity: 0.7;
}

footer .st-link:hover {
  color: var(--red);
  opacity: 1;
}

/* Dark mode handled by var(--bg) now */