
/* Custom Styling untuk Editorial Portfolio Minimalis */

html {
    scroll-behavior: smooth;
}

/* Transisi Halus Saat Section Masuk Layar */
.reveal-section {
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* Gaya Elemen Teks Khusus */
h1, h2, h3, h4 {
    letter-spacing: -0.05em;
}

/* Kustomisasi Scrollbar Minimalis */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f5f5f5; 
}
::-webkit-scrollbar-thumb {
    background: #171717; 
}
::-webkit-scrollbar-thumb:hover {
    background: #404040; 
}