/* Mengambil font modern 'Poppins' dari Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* =========================================
   Reset & Base Styles
========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  /* Gradasi Kuning Kalem / Pastel */
  background: linear-gradient(135deg, #fdfbfb 0%, #fdf0a6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* =========================================
   Mobile-First Container (Glassmorphism)
========================================= */
.microsite-container {
  width: 100%;
  max-width: 420px;
  margin: auto;

  /* Efek Kaca Transparan */
  background: rgba(
    255,
    255,
    255,
    0.4
  ); /* Dibuat sedikit lebih putih agar kontras dengan kuning */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05); /* Shadow diperhalus */

  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================================
   Profile Section
========================================= */
.profile-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.profile-name {
  font-size: 1.4rem;
  color: #334155; /* Ubah ke Abu-abu Gelap agar terbaca di background terang */
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.profile-desc {
  font-size: 0.9rem;
  color: #64748b; /* Abu-abu kalem untuk deskripsi */
  margin-bottom: 35px;
  line-height: 1.5;
}

/* =========================================
   Link Buttons
========================================= */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-link {
  display: block;
  width: 100%;
  padding: 12px 20px; /* Padding disesuaikan agar proporsional */
  background-color: #ffffff;
  color: #b45309;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Pengaturan Judul Link */
.link-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

/* Pengaturan Deskripsi Kecil di Bawah Judul */
.link-desc {
  display: block;
  font-size: 0.75rem;
  color: #64748b; /* Abu-abu kalem */
  font-weight: 400;
  margin-top: 2px;
  transition: color 0.3s ease;
}

/* Otomatis mengubah warna deskripsi menjadi putih saat tombol di-hover */
.btn-link:hover .link-desc {
  color: rgba(255, 255, 255, 0.8) !important;
}

.btn-link:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-link:hover {
  background-color: #fffbeb; /* Warna background sedikit kuning saat disentuh */
  color: #d97706;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.15); /* Shadow senada dengan tema */
}

.btn-link:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* =========================================
   STYLE TAMBAHAN: HEADER & DIVIDER
========================================= */

/* Gaya untuk Text Judul Kelompok Link */
.section-header {
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569; /* Warna abu-abu slate */
  margin-top: 25px;
  margin-bottom: 5px;
  padding-left: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase; /* Membuat huruf kapital semua agar tegas */
}

/* Gaya untuk Garis Pembatas */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(71, 85, 105, 0),
    rgba(71, 85, 105, 0.2),
    rgba(71, 85, 105, 0)
  );
  margin: 20px 0;
  border: none;
}
