/* ============================================
   ANIMATIONS DISABLED
   ============================================ */

/* All animations removed - instant page loads */

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-loaded main {
    animation: contentFadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.content-loaded header {
    animation: contentFadeIn 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* Optional: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .camera-shutter,
    .page-transition {
        display: none !important;
    }

    .content-loaded main,
    .content-loaded header {
        animation: none !important;
        opacity: 1 !important;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
