/* Footer */
.site-footer {
  background-color: #fff;
  padding: 80px 0 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul a,
.social-links a {
  color: #666;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-col ul a:hover,
.social-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.social-links svg {
  width: 32px;
  height: 32px;
  transition:
    transform 0.3s,
    fill 0.3s;
}

.social-links a:hover svg {
  transform: scale(1.1);
  fill: var(--primary-color);
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 14px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    min-width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
    gap: 25px;
  }

  .social-links svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 320px) {
  .social-links {
    gap: 20px;
  }

  .social-links svg {
    width: 36px;
    height: 36px;
  }
}
