/* Custom styles and animations */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f9f5f7;
}
::-webkit-scrollbar-thumb {
    background: #a76f82;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8d5568;
}

/* Base transition for scroll animations */
.scroll-trigger {
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

/* Animation states handled by JS */
.scroll-trigger.is-visible {
    opacity: 1;
    transform: translate(0, 0) translateZ(0);
}
