/* style-footer.css */

.site-footer {
  background-color: #f5f0f9;
  color: #333;
  padding: 40px 20px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 2px solid #e1d4ea;
  margin-top: 40px;
  box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  color: #a736f3;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #a736f3;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.footer-bottom a {
  color: #a736f3;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.icon-text-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-icon {
  width: 24px;
  min-width: 24px;
  text-align: center;
  color: #a736f3;
  font-size: 18px;
}

/* Responsief */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .icon-text-row {
    justify-content: center;
  }
}