/* Hero Animation Styles */
#animation-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
}

/* Ensure the animation container is visible */
#animation-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
