/* =========================
   DONASI SECTION
========================= */
.donate-section{
  text-align:center;
  background:transparent; /* ← INI YANG DIUBAH */
}

.donate-section h2{
  font-size:1.8rem;
  margin-bottom:14px;
  color:#0f4c81; /* 🔵 BIRU TUA FINAL */
}

.donate-desc{
  max-width:700px;
  margin:0 auto 26px;
  font-size:1rem;
  color:#475569;
  line-height:1.7;
}

.donation-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:18px;
}

.donation-buttons a{
  padding:14px 26px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  transition:.3s ease;
}

.donation-buttons a:nth-child(1){
  background:linear-gradient(135deg,#f97316,#fb923c);
}
.donation-buttons a:nth-child(2){
  background:linear-gradient(135deg,#22c55e,#4ade80);
}
.donation-buttons a:nth-child(3){
  background:linear-gradient(135deg,#2563eb,#38bdf8);
}

.donation-buttons a:hover{
  transform:translateY(-3px) scale(1.05);
}

.donation-note{
  font-size:.9rem;
  color:#64748b;
}
/* =========================
   DONASI SECTION ada flash mulai dari sini
========================= */
.donation-box {
  text-align: center;
  padding: 30px 20px;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  max-width: 700px;
  margin: 40px auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.donation-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #333;
}

.donation-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-donate {
  position: relative;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Flash / shimmer effect */
.btn-donate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  animation: flash 2.8s infinite;
}

@keyframes flash {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Trakteer */
.trakteer {
  background: linear-gradient(135deg, #ff5f5f, #ff8a5c);
  box-shadow: 0 8px 20px rgba(255,95,95,0.35);
}

/* PayPal */
.paypal {
  background: linear-gradient(135deg, #0070ba, #003087);
  box-shadow: 0 8px 20px rgba(0,112,186,0.35);
}

.btn-donate:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.thanks {
  font-size: 15px;
  color: #555;
}

.thanks span {
  font-weight: 600;
  color: #e63946;
}

/* =========================
   DIALOG ANIMATION
========================= */

.dialog-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:2000;

  /* animasi */
  opacity:0;
  transition:opacity .35s ease;
}

.dialog-overlay.active{
  display:block;
  opacity:1;
}

.dialog-box{
  transform:scale(.9) translateY(20px);
  opacity:0;
  transition:all .4s ease;
}

.dialog-overlay.active .dialog-box{
  transform:scale(1) translateY(0);
  opacity:1;
}

