@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A; /* Text utama */
    background-color: #FAFAFA;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .font-elegant {
    font-family: 'Playfair Display', serif;
}

/* Gradient Custom sesuai Logo */
.bg-brand-gradient {
    background: linear-gradient(135deg, #2563EB, #7C3AED, #DC2626, #F97316, #FACC15);
}
.hero-gradient {
    background: linear-gradient(135deg, #1E3A8A, #7C3AED);
}
.btn-primary-gradient {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary-gradient:hover {
    box-shadow: 0 10px 20px -10px rgba(124, 58, 237, 0.7);
    transform: translateY(-2px);
    color: white;
}
.text-gradient {
    background: linear-gradient(135deg, #2563EB, #DC2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Kustomisasi scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #7C3AED;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2563EB;
}
