/* Custom resets and smooth behaviors */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography refinements */
h1, h2, h3, h4, .font-heading {
    letter-spacing: -0.02em;
}

/* Hide scrollbar for clean aesthetic but keep functionality if needed in overflow areas */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Base states for GSAP animations */
.gs-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Form input custom autocomplete styling to prevent background color breaks */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1A1A1A !important;
}
