/**
 * Earth Background – full-page 3D canvas container and content stacking.
 * Kadence: #wrapper, .site, .wp-site-blocks. Generic: #page, main.
 */

.earth-bg-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.earth-bg-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Content above canvas – Kadence */
.has-earth-bg #wrapper,
.has-earth-bg .site,
.has-earth-bg .wp-site-blocks {
    position: relative;
    z-index: 1;
}

/* Content above canvas – generic themes */
.has-earth-bg #page,
.has-earth-bg main {
    position: relative;
    z-index: 1;
}
