/* Struktur Halaman */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.content-wrapper {
  flex: 1;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
  padding: 20px 0 10px 0;
  color: #ccc;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease-in-out;
}

/* Logo di Footer */
footer img {
  width: 120px;
  margin-bottom: 10px;
}

/* Deskripsi Footer */
footer p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Link Navigasi Footer */
footer .footer-link {
  color: #f39c12;
  margin: 0 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

footer .footer-link:hover {
  color: #ffffff;
}

/* Sosial Media Icon */
footer .social-icon img {
  width: 24px;
  margin: 0 5px;
  transition: transform 0.3s, filter 0.3s;
}

footer .social-icon img:hover {
  transform: scale(1.2);
  filter: brightness(1.5);
}

/* Copyright Text */
footer small {
  font-size: 12px;
  color: #777;
}

/* Fade-in Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive di Mobile */
@media (max-width: 576px) {
  footer p,
  footer .footer-link {
    font-size: 13px;
  }
  footer .social-icon img {
    width: 22px;
  }
}
