/* 
 * CrownateStudio - Fraud Detection Page Enhancements
 * Modular styles for the Forensic Intelligence hero section.
 */

/* Vigilant Zoom - Slow, focused inspection animation */
@keyframes vigilantZoom {
    0% {
        transform: scale(1.02) translate(0, 0);
    }
    50% {
        transform: scale(1.12) translate(-1%, -1%);
    }
    100% {
        transform: scale(1.02) translate(0, 0);
    }
}

.fraud-hero-animated {
    animation: vigilantZoom 45s ease-in-out infinite;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.6) contrast(1.2) saturate(0.8); /* High contrast, moody forensic feel */
}

#hero {
    min-height: 100vh;
    background: #020617;
    overflow: hidden;
}

.hero-overlay {
    z-index: 2;
    pointer-events: none;
}

.hero h1 {
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.text-primary {
    color: #ffd700 !important; /* Using the brand gold for highlight */
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
