/* Kreativer Übergang von Events zu Gästestimmen */
.events-to-chinese-transition {
    position: relative;
    background: linear-gradient(180deg, 
        #f5f5f5 0%, 
        #e8e8e8 20%, 
        #d4d4d4 40%, 
        #a8a8a8 60%, 
        #666666 80%, 
        #1a1a1a 100%);
    padding: 100px 0 0 0;
    overflow: hidden;
    min-height: 500px;
}

/* Verlaufshintergrund für sanften Übergang */
.gradient-bridge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(245, 245, 245, 1) 0%, 
        rgba(245, 245, 245, 0.9) 10%, 
        rgba(200, 200, 200, 0.7) 30%, 
        rgba(150, 150, 150, 0.5) 50%, 
        rgba(100, 100, 100, 0.3) 70%, 
        rgba(26, 26, 26, 0.1) 90%, 
        rgba(26, 26, 26, 0) 100%);
    z-index: 1;
}

/* Festliche Feuerwerk-Elemente */
.fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.firework {
    position: absolute;
    animation: fireworkExplode 4s ease-out infinite;
}

.firework-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.firework-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.firework-3 {
    top: 50%;
    left: 70%;
    animation-delay: 3s;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    animation: sparkFly 2s ease-out infinite;
}

.firework-1 .spark:nth-child(1) { animation-delay: 0s; transform: rotate(0deg); }
.firework-1 .spark:nth-child(2) { animation-delay: 0.1s; transform: rotate(60deg); }
.firework-1 .spark:nth-child(3) { animation-delay: 0.2s; transform: rotate(120deg); }
.firework-1 .spark:nth-child(4) { animation-delay: 0.3s; transform: rotate(180deg); }
.firework-1 .spark:nth-child(5) { animation-delay: 0.4s; transform: rotate(240deg); }
.firework-1 .spark:nth-child(6) { animation-delay: 0.5s; transform: rotate(300deg); }

.firework-2 .spark:nth-child(1) { animation-delay: 1.5s; transform: rotate(30deg); }
.firework-2 .spark:nth-child(2) { animation-delay: 1.6s; transform: rotate(90deg); }
.firework-2 .spark:nth-child(3) { animation-delay: 1.7s; transform: rotate(150deg); }
.firework-2 .spark:nth-child(4) { animation-delay: 1.8s; transform: rotate(210deg); }
.firework-2 .spark:nth-child(5) { animation-delay: 1.9s; transform: rotate(270deg); }

.firework-3 .spark:nth-child(1) { animation-delay: 3s; transform: rotate(0deg); }
.firework-3 .spark:nth-child(2) { animation-delay: 3.1s; transform: rotate(45deg); }
.firework-3 .spark:nth-child(3) { animation-delay: 3.2s; transform: rotate(90deg); }
.firework-3 .spark:nth-child(4) { animation-delay: 3.3s; transform: rotate(135deg); }
.firework-3 .spark:nth-child(5) { animation-delay: 3.4s; transform: rotate(180deg); }
.firework-3 .spark:nth-child(6) { animation-delay: 3.5s; transform: rotate(225deg); }
.firework-3 .spark:nth-child(7) { animation-delay: 3.6s; transform: rotate(315deg); }

@keyframes fireworkExplode {
    0% { 
        transform: scale(0);
        opacity: 1;
    }
    20% { 
        transform: scale(1);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes sparkFly {
    0% { 
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% { 
        transform: translateX(var(--random-x, 50px)) translateY(var(--random-y, 50px));
        opacity: 0;
    }
}

/* Schwebende Festelemente */
.celebration-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-glass,
.floating-heart,
.floating-star {
    position: absolute;
    font-size: 2rem;
    animation: celebrationFloat 6s ease-in-out infinite;
}

.floating-glass-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.floating-glass-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.floating-heart-1 {
    top: 40%;
    left: 5%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.floating-heart-2 {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.floating-star-1 {
    top: 15%;
    right: 10%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}

.floating-star-2 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 6.5s;
}

@keyframes celebrationFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-25px) rotate(-3deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-10px) rotate(8deg);
        opacity: 0.9;
    }
}

/* Elegante Verbindungslinie */
.connection-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.line-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ornament-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c41e3a 0%, #8B0000 100%);
    border: 4px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.5rem;
    box-shadow: 
        0 0 20px rgba(196, 30, 58, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    animation: ornamentPulse 3s ease-in-out infinite;
}

@keyframes ornamentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(196, 30, 58, 0.4),
            inset 0 0 15px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 
            0 0 30px rgba(196, 30, 58, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

.flowing-line {
    flex: 1;
    height: 2px;
    display: flex;
    align-items: center;
    margin: 0 30px;
}

.line-segment {
    flex: 1;
    height: 2px;
    margin: 0 5px;
    border-radius: 1px;
    animation: flowingGlow 4s ease-in-out infinite;
}

.segment-1 {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    animation-delay: 0s;
}

.segment-2 {
    background: linear-gradient(90deg, #FFA500, #c41e3a);
    animation-delay: 1s;
}

.segment-3 {
    background: linear-gradient(90deg, #c41e3a, #8B0000);
    animation-delay: 2s;
}

@keyframes flowingGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% { 
        opacity: 1;
        transform: scaleY(2);
        box-shadow: 0 0 10px currentColor;
    }
}

/* Hauptinhalt */
.transition-bridge-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 50px 0;
}

/* Übergangstitel mit festlicher Note */
.bridge-title-section {
    margin-bottom: 60px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.deco-element {
    font-size: 2rem;
    animation: decoSpin 3s linear infinite;
}

.deco-left {
    animation-direction: normal;
}

.deco-right {
    animation-direction: reverse;
}

@keyframes decoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bridge-title {
    margin: 0;
    line-height: 1.3;
}

.title-part-1 {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-connector {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    margin: 15px 0;
    font-style: italic;
}

.title-part-2 {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bridge-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* Interaktive Transformation */
.transformation-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.transform-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 120px;
}

.event-icon,
.review-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.event-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    border: 3px solid #c41e3a;
}

.review-icon {
    background: linear-gradient(135deg, #c41e3a 0%, #8B0000 100%);
    color: #FFD700;
    border: 3px solid #FFD700;
}

.transform-element:hover .event-icon,
.transform-element:hover .review-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.transform-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.transform-arrow {
    display: flex;
    align-items: center;
    position: relative;
}

.arrow-body {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #c41e3a);
    border-radius: 2px;
    position: relative;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 15px solid #c41e3a;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.arrow-sparkle {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: sparkleGlow 2s ease-in-out infinite;
}

@keyframes sparkleGlow {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

/* Emotionale Brücke */
.emotion-bridge {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.emotion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 140px;
}

.emotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.emotion-icon {
    font-size: 2rem;
}

.emotion-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Übergangs-Welle zur chinesischen Sektion */
.transition-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.transition-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-to-chinese-transition {
        padding: 60px 0 0 0;
        min-height: 400px;
    }

    .connection-line {
        padding: 0 5%;
    }

    .ornament-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .flowing-line {
        margin: 0 15px;
    }

    .title-part-1,
    .title-part-2 {
        font-size: 1.8rem;
    }

    .title-connector {
        font-size: 1.2rem;
    }

    .bridge-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .transformation-visual {
        gap: 30px;
    }

    .arrow-body {
        width: 60px;
    }

    .emotion-bridge {
        gap: 20px;
    }

    .emotion-card {
        min-width: 120px;
        padding: 15px;
    }

    .firework {
        display: none;
    }

    .floating-glass,
    .floating-heart,
    .floating-star {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .transformation-visual {
        flex-direction: column;
        gap: 20px;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }

    .emotion-bridge {
        flex-direction: column;
        align-items: center;
    }

    .title-decoration {
        gap: 15px;
    }

    .deco-element {
        font-size: 1.5rem;
    }
}
