/* Section Separator CSS */
@import url(style.css);

.section-separator {
    width: 100%;
    height: 5px;
    background-color: var(--highlight);
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.section-separator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
}

.section-separator.with-shadow {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}