/* 
 * CrownateStudio - BOQ Page Enhancements
 * Modular styles for the AI BOQ Engine hero section.
 */

/* Focal Point Zoom for Document Inspection Effect */
@keyframes focalZoom {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(-1%, 1%);
    }
    100% {
        transform: scale(1.05) translate(0, 0);
    }
}

.boq-hero-animated {
    animation: focalZoom 30s ease-in-out infinite;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.65) contrast(1.1); /* Darkened for high-contrast white text */
}

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

.hero-overlay {
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.1) 0%, rgba(3, 7, 18, 0.8) 100%);
    z-index: 2;
}

.glass-hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.accent-gold {
    color: #ffd700;
    letter-spacing: 2px;
}
