/* --- FOOTER STYLES --- */

/* Latar Belakang & Pembatas Atas */
.joyluck-footer {
  background-color: #ffff; /* Dark Charcoal (Abu-abu sangat gelap) */
  color: #FAF9F6; /* Teks warna Cream */
  border-top: 4px solid #D4AF37; /* Garis tipis Rose Gold di bagian atas footer */
}

/* Tipografi Brand & Copyright */
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 4px;
  color: #D4AF37; /* Menggunakan Classic Muted Gold untuk nama brand */
}

.footer-copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #A0A0A0; /* Abu-abu redup agar tidak mendominasi */
}

/* Gaya Ikon Sosial Media (Ulu Artisan Style) */
.footer-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #A0A0A0; /* Lingkaran outline putih cream */
  border-radius: 50%;
  color: #A0A0A0;
  margin-left: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

/* Efek Hover Ikon Sosial: Berubah menjadi Rose Gold dan sedikit naik */
.footer-socials .social-icon:hover {
  background-color: #E7A1B0;
  border-color: #E7A1B0;
  color: #A0A0A0;
  transform: translateY(-4px);
}

/* Gaya Tautan Kebijakan (Sofitel Style) */
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #A0A0A0;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Efek Hover Tautan: Berubah menjadi Emas */
.footer-links a:hover {
  color: #D4AF37; /* Warna Gold baru kita */
}

/* Pemisah Tautan (|) */
.footer-links .separator {
  margin: 0 10px;
  color: #555555;
}

/* Penyesuaian Responsif untuk Layar Mobile */
@media (max-width: 767px) {
  .footer-socials .social-icon {
    margin: 0 6px; /* Mengurangi jarak antar ikon di HP */
  }
}