/**
 * WonderLAN - Illustration Styles
 * Professional flat illustration style with atmospheric depth
 */

/* Building Illustrations Container - LEFT SIDE */
.illustration-buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 400px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1024px) {
    .illustration-buildings {
        width: 450px;
        height: 300px;
        opacity: 0.09;
    }
}

@media (max-width: 768px) {
    .illustration-buildings {
        width: 300px;
        height: 200px;
        opacity: 0.07;
    }
}

/* Blue Arch Divider - LARGER & SOFT GRADIENT */
.arch-divider {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #E3F2FD 0%, 
        #BBDEFB 20%, 
        #90CAF9 40%, 
        #64B5F6 60%, 
        #42A5F5 80%, 
        #2196F3 100%
    );
}

.arch-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .arch-divider {
        height: 120px;
    }
}

/* Position parent for illustrations */
.illustration-container {
    position: relative;
    overflow: hidden;
}