/* Custom Utilities & Animations */

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

/* Subtle pattern for background */
.pattern-dots {
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F5F5F0;
}
::-webkit-scrollbar-thumb {
    background: #1A5F7A;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0D3B4A;
}

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

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
img[data-src] {
    opacity: 0;
}
