/* Section Transitions - Professional, clean, minimal transitions between sections */

/* Common transition divider */
.section-transition {
    position: relative;
    height: 120px;
    margin-top: -60px;
    margin-bottom: -60px;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Fade transition (default) */
.transition-fade {
    background: linear-gradient(to bottom, 
        rgba(18, 18, 27, 0) 0%,
        rgb(18, 18, 27) 47%,
        rgb(18, 18, 27) 53%,
        rgba(18, 18, 27, 0) 100%
    );
}

/* Subtle wave transition */
.transition-wave {
    background: transparent;
}

.transition-wave::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        rgba(165, 255, 0, 0) 0%,
        rgba(165, 255, 0, 0.1) 20%,
        rgba(165, 255, 0, 0.2) 50%,
        rgba(165, 255, 0, 0.1) 80%,
        rgba(165, 255, 0, 0) 100%
    );
    transform: translateY(-50%);
}

/* Dot pattern transition */
.transition-dots {
    background: transparent;
}

.transition-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
        rgba(165, 255, 0, 0.15) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Gradient transition */
.transition-gradient {
    background: linear-gradient(to bottom,
        rgba(18, 18, 27, 0) 0%,
        rgba(30, 30, 40, 0.05) 50%,
        rgba(18, 18, 27, 0) 100%
    );
}

.transition-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right,
        rgba(165, 255, 0, 0) 0%,
        rgba(165, 255, 0, 0.2) 50%,
        rgba(165, 255, 0, 0) 100%
    );
    transform: translate(-50%, -50%);
}

/* Glow transition */
.transition-glow {
    background: transparent;
}

.transition-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 1px;
    background: radial-gradient(
        ellipse at center,
        rgba(165, 255, 0, 0.15) 0%,
        rgba(165, 255, 0, 0) 70%
    );
    transform: translate(-50%, -50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-transition {
        height: 80px;
        margin-top: -40px;
        margin-bottom: -40px;
    }
}
