/* public/css/footer.css */
.footer {
  background: linear-gradient(to right, #0f3b2e, #1e694d);
  color: #fff;
  padding: 3rem 2rem;
  /* Tambahkan ini untuk memastikan footer selalu di bawah jika konten pendek */
  margin-top: auto; 
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 5rem;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffd700;
}