/* Custom styles to supplement Tailwind */
body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #3d6140;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Image Aspect Ratios */
.img-aspect {
    aspect-ratio: 4/5;
}

/* Typography adjustments */
h1, h2, h3 {
    letter-spacing: -0.02em;
}
