/* hero-animation.css */

#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    overflow: hidden;
    pointer-events: none;
    background-color: #0b132b; 
}

#industrial-canvas {
    display: block;
    width: 100%;
    height: 100%;
    image-rendering: pixelated; 
}

.hero-section {
    position: relative; 
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* BOX TITRE STYLE RETRO/PIXEL PREMIUM & ULTRA-LISIBLE */
.hero-overlay.pixel-box {
    position: relative;
    z-index: 10;
    background: rgba(11, 19, 43, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 3px solid #ffffff;
    border-radius: 4px;
    padding: 34px 52px;
    width: calc(100% - 40px);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 25px rgba(14, 165, 233, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    box-sizing: border-box;
}

.hero-overlay.pixel-box h1 {
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    text-shadow: 2px 2px 0 #000000;
    font-size: clamp(1.4rem, 4vw, 2.7rem);
    letter-spacing: 2px;
    line-height: 1.25;
}

.hero-overlay.pixel-box p {
    color: #38bdf8;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    text-shadow: 1px 1px 0 #000000;
    letter-spacing: 1.5px;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-overlay.pixel-box {
        width: 92%;
        padding: 22px 16px;
        border-width: 2px;
    }
}