/* Home page preloading and initialization scripts */

/* This file contains styles for the home page preloading functionality */

.home-preloading {

    /* Placeholder for any preloading-specific styles if needed */
}

/* Navigation preloading indicators could go here if desired */
.nav-link[data-preloading] {
    position: relative;
}

.nav-link[data-preloading]::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgb(var(--accent-color-rgb) 0.1), transparent);
    border-radius: inherit;
    opacity: 0;
    animation: preload-pulse 2s ease-in-out infinite;
}

@keyframes preload-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}