/* LemeMarket global immersive background + frosted overlay */

.leme-site {
    min-height: 100vh;
    position: relative;
    font-family: 'Inter', system-ui, sans-serif;
}

.leme-site::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url('../assets/bg1.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
}

.leme-site::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

/* Reduce fixed-attachment issues on narrow / touch viewports */
@media (max-width: 768px) {
    .leme-site::before {
        background-attachment: scroll;
    }
}

@supports (-webkit-touch-callout: none) {
    .leme-site::before {
        background-attachment: scroll;
    }
}

.leme-main {
    position: relative;
    z-index: 0;
}

/* Floating glass panels (survey, admin bento, landing sections) */
.leme-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08), 0 4px 16px -4px rgba(0, 0, 0, 0.04);
}
