/* ===================================
   Subtle Batik Texture
   Minimal Heritage Accent
   =================================== */

.batiks-background {
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(139, 21, 56, 0.015) 40px,
            rgba(139, 21, 56, 0.015) 80px
        );
}

.batik-ornament {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.batik-ornament::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 1px;
    background-color: rgba(184, 134, 11, 0.3);
}

.batik-ornament::after {
    content: '◆';
    font-size: 1.25rem;
    color: var(--color-secondary);
    z-index: 1;
    background-color: var(--color-bg);
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .batik-background {
        display: none;
    }
}