.iaaug-floating-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.iaaug-floating-flower {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    filter: blur(1px);
    transform-origin: center;
}

.iaaug-floating-flower svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.iaaug-floating-flower.small {
    width: 20px;
    height: 20px;
    opacity: 0.4;
}

.iaaug-floating-flower.medium {
    width: 30px;
    height: 30px;
    opacity: 0.5;
}

.iaaug-floating-flower.large {
    width: 50px;
    height: 50px;
    opacity: 0.3;
}

/* Flower color variations */
.iaaug-floating-flower.color-1 {
    color: rgba(149, 29, 93, 0.2); /* Primary pink */
}

.iaaug-floating-flower.color-2 {
    color: rgba(122, 21, 72, 0.2); /* Dark pink */
}

.iaaug-floating-flower.color-3 {
    color: rgba(173, 73, 127, 0.2); /* Light pink */
}

.iaaug-floating-flower.color-4 {
    color: rgba(198, 120, 163, 0.2); /* Very light pink */
}

/* Add blur effect for depth */
.iaaug-floating-flower.depth-1 {
    filter: blur(0px);
    z-index: 3;
}

.iaaug-floating-flower.depth-2 {
    filter: blur(1px);
    z-index: 2;
}

.iaaug-floating-flower.depth-3 {
    filter: blur(2px);
    z-index: 1;
}

/* Ensure the container doesn't interfere with content */
main, section, .container {
    position: relative;
    z-index: 1;
} 