/* =====================
   ÇEYİZ İPİ DEKORASYONU
   ===================== */

/* Çeyiz İpi Container */
.ceyiz-rope {
    position: fixed;
    top: 0;
    right: 80px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(216, 90, 122, 0.3) 5%,
        rgba(184, 73, 101, 0.6) 10%,
        rgba(139, 58, 78, 0.8) 100%);
    z-index: 999;
    pointer-events: none;
}

/* İp üzerindeki çeyiz eşyaları */
.rope-item {
    position: absolute;
    width: 60px;
    height: 60px;
    right: -28px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(231, 109, 137, 0.3);
    animation: slideDownRope 8s ease-in-out infinite;
    pointer-events: none;
}

.rope-item i {
    font-size: 28px;
    background: linear-gradient(135deg, #E76D89 0%, #F4A6BA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Her bir item için farklı animasyon gecikmeleri */
.rope-item:nth-child(2) {
    animation-delay: 0s;
}

.rope-item:nth-child(3) {
    animation-delay: 1.5s;
}

.rope-item:nth-child(4) {
    animation-delay: 3s;
}

.rope-item:nth-child(5) {
    animation-delay: 4.5s;
}

.rope-item:nth-child(6) {
    animation-delay: 6s;
}

.rope-item:nth-child(7) {
    animation-delay: 7.5s;
}

/* İp bağlantı noktaları */
.rope-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, rgba(139, 58, 78, 0.6), transparent);
}

/* İp boyunca aşağı iniş animasyonu */
@keyframes slideDownRope {
    0% {
        top: -10%;
        opacity: 0;
        transform: rotate(-5deg);
    }
    10% {
        opacity: 1;
    }
    15% {
        top: 15%;
        transform: rotate(3deg);
    }
    30% {
        top: 35%;
        transform: rotate(-3deg);
    }
    45% {
        top: 55%;
        transform: rotate(2deg);
    }
    60% {
        top: 75%;
        transform: rotate(-2deg);
    }
    75% {
        top: 95%;
        transform: rotate(0deg);
    }
    85% {
        opacity: 1;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: rotate(5deg);
    }
}

/* Hover efekti - Devre dışı bırakıldı (pointer-events: none) */
/* .rope-item:hover {
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 12px 32px rgba(231, 109, 137, 0.4);
    animation-play-state: paused;
} */

/* İp üstü dekoratif düğüm */
.rope-knot {
    position: absolute;
    top: 0;
    right: -8px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #E76D89 0%, #D85A7A 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(231, 109, 137, 0.4);
}

/* İp alt ucu */
.rope-end {
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 16px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(139, 58, 78, 0.8), transparent);
    border-radius: 0 0 8px 8px;
}

/* İp üzerinde küçük süsleme boncukları */
.rope-bead {
    position: absolute;
    right: -4px;
    width: 12px;
    height: 12px;
    background: rgba(231, 109, 137, 0.5);
    border-radius: 50%;
}

.rope-bead:nth-of-type(1) { top: 25%; }
.rope-bead:nth-of-type(2) { top: 45%; }
.rope-bead:nth-of-type(3) { top: 65%; }
.rope-bead:nth-of-type(4) { top: 85%; }

/* Responsive - Mobilde gizle */
@media (max-width: 1024px) {
    .ceyiz-rope {
        display: none;
    }
}

/* Tablet'te daha ince */
@media (max-width: 1200px) {
    .ceyiz-rope {
        right: 40px;
    }
    
    .rope-item {
        width: 50px;
        height: 50px;
        right: -23px;
    }
    
    .rope-item i {
        font-size: 24px;
    }
}

