/* Section Dividers CSS */

/* Common styles for all section dividers */
.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
    z-index: 1;
}

/* Diagonal Divider (Slant) */
.divider-diagonal {
    position: relative;
    height: 80px;
}

.divider-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--section-color-before) 0%, var(--section-color-before) 50%, var(--section-color-after) 50%, var(--section-color-after) 100%);
    z-index: 1;
}

/* Wave Divider */
.divider-wave {
    position: relative;
    height: 70px;
}

.divider-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Curved Divider */
.divider-curved {
    position: relative;
    height: 80px;
}

.divider-curved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--section-color-before);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Section background colors */
.section-light {
    background-color: #ffffff;
}

.section-dark {
    background-color: #f8f9fa;
}

.section-accent {
    background-color: #f0f4ff;
}

/* Section padding adjustments */
.content-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Add visual indicators for sections */
.section-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0,0,0,0.1);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

/* Add subtle shadow to bottom of sections */
.content-section {
    box-shadow: 0 6px 10px -5px rgba(0, 0, 0, 0.1);
    position: relative;
}