/* Interior Design Animation Container */
.particle-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.8;
    /* Slightly transparent for subtlety */
}

#particle-canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Ensure content is above the animation */
body>*:not(.particle-animation-container) {
    position: relative;
    z-index: 2;
}

/* Adjust navigation z-index to stay on top */
.modern-nav {
    z-index: 1000 !important;
}

/* Add subtle backdrop blur for premium feel */
.particle-animation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0.5px);
    pointer-events: none;
}