/* ========== Kustomisasi CSS Kombel ========== */
:root {
  --primary-google: #4285F4;
  --danger-google: #EA4335;
  --warning-google: #FBBC05;
  --success-google: #34A853;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Animations */
@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob {
  animation: blob 7s infinite;
}
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }
.animation-delay-6000 { animation-delay: 6s; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-google {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-google);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* Transitions for SPA */
.spa-section {
  transition: opacity 0.3s ease-in-out;
}
.active-section {
  display: block;
  opacity: 1;
}

/* Utilities */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pb-safe {
  padding-bottom: env(safe-area-inset-bottom);
}
