/* FULL-WIDTH FOOTER BACKGROUND */
.footer-wrapper {
  width: 100%;
  background-color: #333;
}

/* base.css gives .container a light background; keep footer dark */
.footer-wrapper .container {
  background: transparent;
}

/* Footer columns (desktop) */
footer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 40px 0 20px;
  color: #c09318;
  box-sizing: border-box;
}

.footer-column { flex: 1; }

footer h4 {
  margin-top: 0;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  text-transform: uppercase;
}

/* List reset */
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }

/* Links */
footer a { color: #2d9391; text-decoration: none; }
footer a:hover { color: #c09318; }

/* Active footer link */
footer li.active > a,
footer a.active {
  color: #c09318;
  font-weight: 700;
  text-decoration: underline;
}

/* Copyright */
.copyright-section {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 20px;
  padding: 15px 0 25px;
  text-align: center;
  font-size: 13px;
  color: #c09318;
}

.copyright-section a { color: #c09318; text-decoration: none; }

/* ✅ MOBILE: stack footer columns */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0 15px;
  }
  .footer-column { width: 100%; }
}
