/* footer.css */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

/* Footer */
#site-footer {
  background-color: #1a1a1a;
  color: #f5f5f5;
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-heebo);
}

.footer-info {
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  display: flex;
  margin-bottom: 1.5rem;
}

.footer-nav li {
  margin: 0 1rem;
}

.footer-nav a {
  color: #f5f5f5;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  font-size: 0.9rem;
  color: #999999;
}

/* Footer Widgets */
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: right;
}

.footer-widget {
  margin-bottom: 1rem;
}

.footer-widget-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #444444;
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-heebo);
}

.footer-widget ul li {
  margin-bottom: 0.5rem;
}

.footer-widget a {
  color: #cccccc;
}

.footer-widget a:hover {
  color: var(--accent-color);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #333333;
  color: #ffffff;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}