/**
 * Glass Viewer Styles for WordPress
 */

.glass-viewer-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
}

.glass-viewer-container .viewer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.glass-viewer-container canvas {
	display: block;
	width: 100%;
	height: 100%;
}

/* Ensure sections are above the viewer */
section {
	position: relative;
	z-index: 1;
}

/* Header should be above viewer */
Header,
header {
	position: relative;
	z-index: 100;
}

/* Main content should allow scrolling */
main {
	position: relative;
	z-index: 1;
}
