/* Dekoratif Öğeler */
.decoration-left,
.decoration-right {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 200px;
    pointer-events: none;
}

.decoration-left {
    left: 0;
}

.decoration-right {
    right: 0;
}

/* Sol Taraf Dalgalar */
.wave-pattern {
    position: absolute;
    top: 20%;
    left: -50px;
    width: 100px;
    height: 200px;
    background: var(--primary-light);
    border-radius: 50px;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.flower-pattern {
    position: absolute;
    bottom: 30%;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.flower-pattern::before,
.flower-pattern::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
}

.flower-pattern::before {
    top: -30px;
    left: 0;
}

.flower-pattern::after {
    top: 0;
    left: -30px;
}

/* Sağ Taraf Çemberler */
.circle-pattern {
    position: absolute;
    top: 30%;
    right: 20px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
}

.circle-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
}

.lotus-pattern {
    position: absolute;
    bottom: 20%;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    border-radius: 50% 50% 0 0;
    transform: rotate(45deg);
    animation: breathe 5s ease-in-out infinite;
}

/* Sayfa yan banner (tema uyumlu şekiller) */
.side-banners {
    position: fixed;
    top: 120px;
    bottom: 80px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.side-banners .left-shapes,
.side-banners .right-shapes {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
}

.side-banners .left-shapes { left: 0; }
.side-banners .right-shapes { right: 0; }

.shape-pill {
    position: absolute;
    width: 120px;
    height: 260px;
    background: var(--primary-light);
    border-radius: 60px;
    transform: rotate(30deg);
    filter: blur(1px);
    opacity: 0.6;
    animation: float 7s ease-in-out infinite;
}

.shape-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: rotate 12s linear infinite;
}

.shape-lotus {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--primary-light);
    border-radius: 50% 50% 0 0;
    transform: rotate(35deg);
    animation: breathe 6s ease-in-out infinite;
    opacity: 0.7;
}