/* hob/css/footer.css */

/* Footer base styling */
.site-footer {
  background-color: #fffefa;   /* soft cream background */
  color: #333;                 /* dark charcoal text */
  border-top: 1px solid #eee;  /* light separator line */
  width: 100%;
}

/* Container centers content */
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Footer copy text */
.footer-copy {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Link styling */
.footer-copy a {
  color: #b08b4f;     /* warm gold accent */
  text-decoration: none;
  font-weight: 500;
}
.footer-copy a:hover {
  text-decoration: underline;
}

/* If you reintroduce columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.footer-col {
  flex: 0 1 auto;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .site-footer .container {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }
  .footer-columns {
    flex-direction: column;
    gap: 1rem;
  }
}
