/* Import Google Fonts: Inter (Body) & Playfair Display (Headings elegan) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

/* === BASE STYLES === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0a0a0a; /* Hitam Pekat */
}

/* === DARK & GOLD CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 10px;
  border: 2px solid #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4af37; /* Gold */
}

/* === UTILITY CLASSES === */
/* Teks Emas Bergradasi ala Premium */
.text-gradient-gold {
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
