/* Islamic Geometric Pattern Backgrounds */
.islamic-pattern-bg {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 57, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 165, 57, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, 
            transparent 0px, 
            transparent 20px, 
            rgba(212, 165, 57, 0.03) 20px, 
            rgba(212, 165, 57, 0.03) 21px
        );
}

/* Arabic Calligraphy Style */
.arabic-calligraphy {
    font-family: 'Amiri', serif;
    font-weight: 700;
    line-height: 1.4;
}

/* Islamic Star Pattern */
.islamic-star-pattern {
    background-image: 
        radial-gradient(circle at 100% 150%, rgba(212, 165, 57, 0.1) 24%, transparent 24%),
        radial-gradient(circle at 0% 150%, rgba(212, 165, 57, 0.1) 24%, transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(212, 165, 57, 0.1) 10%, transparent 10%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 0, 0 20px;
}

/* Geometric Border */
.geometric-border {
    position: relative;
}

.geometric-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 10px,
        transparent 10px,
        transparent 15px
    );
}

.geometric-border-bottom {
    position: relative;
}

.geometric-border-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 10px,
        transparent 10px,
        transparent 15px
    );
}

/* Islamic Ornament */
.islamic-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.islamic-ornament::before,
.islamic-ornament::after {
    content: '✦';
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.islamic-ornament .ornament-line {
    flex: 1;
    max-width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color));
}

.islamic-ornament .ornament-line:last-child {
    background: linear-gradient(to left, transparent, var(--secondary-color));
}

/* Mosque Silhouette Divider */
.mosque-divider {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin: 30px 0;
    letter-spacing: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .islamic-star-pattern {
        background-size: 30px 30px;
    }
}