/*
 * Footer Styles
 */

footer {
  background-color: var(--color-footer-bg, #1a1a2e);
  color: var(--color-footer-text, #e0e0e0);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-footer-heading, #ffffff);
  text-decoration: none;
}

.footer-logo p {
  margin-top: 0.5rem;
  max-width: 250px;
  line-height: 1.6;
  color: var(--color-footer-text, #e0e0e0);
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-footer-heading, #ffffff);
  margin-bottom: 1rem;
}

.footer-links-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links-section li {
  margin-bottom: 0.5rem;
}

.footer-links-section a {
  color: var(--color-footer-text, #e0e0e0);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-section a:hover {
  color: var(--color-primary, #0070f3);
}

.footer-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-footer-border, #333);
  color: var(--color-footer-text-muted, #a0a0a0);
}
