
.separator-section {
    padding: 8rem 0;
    position: relative;
        background-image: url('../img/separator.png');
background-size: cover;
    overflow: hidden;
background-position-y: center;
 margin-bottom: 2%;

}



.separator-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.separator-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border-radius: 20px;

}

.separator-title {
    font-family: 'Lustria', 'Lustria Placeholder', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: white;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.separator-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: white;
    line-height: 1.6;
    margin: 0 0 3rem;
    font-weight: 300;
}

.separator-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.decoration-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
}

.decoration-diamond {
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    position: relative;
}

.decoration-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 6px;
    height: 6px;
    background: #fff;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.separator-content {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s ease;
}

.separator-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.separator-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.separator-decoration {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}


@media (max-width: 1024px) {
    .separator-section {
        padding: 6rem 0;
    }
    
    .separator-container {
        max-width: 95%;
        padding: 0 1.5rem;
    }
    
    .separator-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .separator-section {
        padding: 4rem 0;
    }
    
    .separator-container {
        padding: 0 1rem;
    }
    
    .separator-content {
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    .decoration-diamond {
        width: 10px;
        height: 10px;
    }
    
    .decoration-diamond::before {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .separator-section {
        padding: 3rem 0;
    }
    
    .separator-content {
        padding: 2rem 1rem;
        border-radius: 12px;
    }
    
    .separator-decoration {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .decoration-line {
        width: 30px;
    }
}
