/* Custom styles that extend Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: "cv02", "cv03", "cv04";
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f9f5f9;
}

::-webkit-scrollbar-thumb {
    background: #d5b5d5;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a05ea0;
}

/* Fade In Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle hover tilt for cards */
.group:hover .group-hover\\:rotate-1 {
    transform: rotate(1deg);
}
