﻿/**
 * Islamic Geometric Pattern Animations & Utilities
 * @package Mahzar_Theme
 */

/* ===== ORNAMENTAL BORDER ===== */
.mahzar-ornament-border {
    position: relative;
    padding: 2rem;
}
.mahzar-ornament-border::before,
.mahzar-ornament-border::after {
    content: '';
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mahzar-gold), transparent);
    left: 10%; right: 10%;
}
.mahzar-ornament-border::before { top: 0; }
.mahzar-ornament-border::after { bottom: 0; }

/* ===== ISLAMIC PATTERN BACKGROUNDS ===== */
.mahzar-pattern-bg {
    position: relative;
}
.mahzar-pattern-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.1'%3E%3Cpath d='M60 0L120 60L60 120L0 60z'/%3E%3Cpath d='M60 20L100 60L60 100L20 60z'/%3E%3Cpath d='M60 40L80 60L60 80L40 60z'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    pointer-events: none;
    z-index: 0;
}
.mahzar-pattern-bg > * { position: relative; z-index: 1; }

/* ===== GLOWING GOLD ACCENT ===== */
.mahzar-gold-glow {
    text-shadow: 0 0 20px rgba(201,168,76,0.5), 0 0 40px rgba(201,168,76,0.2);
}

/* ===== PULSE ANIMATION ===== */
@keyframes mahzarPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
.mahzar-pulse {
    animation: mahzarPulse 3s ease-in-out infinite;
}

/* ===== FADE IN ANIMATION ===== */
@keyframes mahzarFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.mahzar-fade-in {
    animation: mahzarFadeIn 0.8s ease-out forwards;
}
.mahzar-fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.mahzar-fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.mahzar-fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.mahzar-fade-in-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== ISLAMIC ARCH SHAPE ===== */
.mahzar-arch {
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    overflow: hidden;
}

/* ===== CARD SHINE EFFECT ===== */
.mahzar-card-shine {
    position: relative;
    overflow: hidden;
}
.mahzar-card-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 40%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 60%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.6s;
}
.mahzar-card-shine:hover::after {
    transform: rotate(30deg) translate(20%, 20%);
}

/* ===== DECORATIVE DIVIDER ===== */
.mahzar-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}
.mahzar-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--mahzar-border), transparent);
}
.mahzar-divider-icon {
    width: 24px;
    height: 24px;
    color: var(--mahzar-gold);
}
