/**
 * Footer Component
 */

footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 20px 20px;
  text-align: center;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-nav {
  margin-bottom: 30px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--white);
  opacity: 0.9;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  opacity: 1;
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}