/* === Living Soil Background Texture === */

html {
    overscroll-behavior: none;
}

body {
    margin: 0;
    overscroll-behavior: none;
    background-color: #0d0805;
    /* background-image: url('../images/soil-texture-bg.jpg'); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Mobile: use solid dark bg instead of texture (avoids glass effect over mycelium) */
@media (max-width: 1024px) {
    body {
        background-image: none;
        background-color: #0d0805;
    }
}

/* Dark overlay to keep text readable over soil texture (desktop only) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 3, 2, 0.4);
    z-index: -9;
    pointer-events: none;
}
@media (max-width: 1024px) {
    body::before {
        display: none;
    }
}

/* Hide unused elements */
#soil-bg-video {
    display: none;
}

.texture {
    display: none;
}
