/**
 * Hexagonal Grid Effect - CSS Styles
 * Inspired by: https://codepen.io/soju22/pen/MYgbRwg
 *
 * This CSS file provides styling for the hexagonal grid WebGL canvas background effect.
 * Use this in conjunction with hexagonal-grid.js for a fully functional animated background.
 */

#hexagonalCanvas {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content above the canvas is properly layered */
.ai-hero,
.container,
.ai-hero-title,
.ai-hero-subtitle {
    position: relative;
    z-index: 1;
}
