/**
 * Accent Group Frontend Styles
 * Styles for the circle accent decorative elements
 */

/* Container positioning for accent elements */
.accent-group-container {
    position: relative;
    /*overflow: hidden; /* Prevents accents from extending beyond container */*/
}

/* Top Left Accent (using :before pseudo-element) */
.circle-accent-top-left:before {
    content: "";
    display: block;
    width: 20vw;
    height: 30vw;
    top: -3em;
    left: 0;
    position: absolute;
    background-image: url('../images/innerlocked-circles-orange.svg');
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: transparent;
    background-position: -21vw 0vw;
    background-size: 170%;
    mix-blend-mode: multiply;
    pointer-events: none; /* Ensures accents don't interfere with content interaction */
}

/* Top Right Accent (using :after pseudo-element) */
.circle-accent-top-right:after {
    content: "";
    display: block;
    width: 20vw;
    height: 30vw;
    top: 0;
    right: 0;
    position: absolute;
    background-image: url('../images/innerlocked-circles-orange.svg');
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: transparent;
    background-position: 21vw -3vw;
    background-size: 170%;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Bottom Left Accent (using :before pseudo-element) */
.circle-accent-bottom-left:before {
    content: "";
    display: block;
    width: 20vw;
    height: 30vw;
    bottom: -10em;
    left: 0;
    position: absolute;
    background-image: url('../images/innerlocked-circles-orange.svg');
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: transparent;
    background-position: -21vw 0;
    background-size: 170%;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

/* Bottom Right Accent (using :after pseudo-element) */
.circle-accent-bottom-right:after {
    content: "";
    display: block;
    width: 16vw;
    height: 30vw;
    z-index: 1;
    background-size: cover;
    bottom: -10em;
    right: 0;
    position: absolute;
    background-image: url('../images/innerlocked-circles-orange.svg');
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: transparent;
    background-position: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .circle-accent-top-left:before,
    .circle-accent-top-right:after,
    .circle-accent-bottom-left:before {
        width: 30vw;
        height: 40vw;
    }
    
    .circle-accent-bottom-right:after {
        width: 25vw;
        height: 40vw;
    }
    
    .circle-accent-top-left:before {
        background-position: -31vw -4vw;
    }
    
    .circle-accent-top-right:after {
        background-position: 31vw -4vw;
    }
    
    .circle-accent-bottom-left:before {
        background-position: -31vw 0;
    }
}

/* Print styles - hide decorative accents in print */
@media print {
    .circle-accent-top-left:before,
    .circle-accent-top-right:after,
    .circle-accent-bottom-left:before,
    .circle-accent-bottom-right:after {
        display: none;
    }
}