/* Eid Global Design System */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Cairo:wght@400;600;700&family=Outfit:wght@300;400;600&display=swap');

:root {
    --eid-primary: #2d1b4d;
    --eid-secondary: #006064;
    --eid-accent: #FFD700;
    --eid-accent-dark: #B8860B;
    --eid-text: #F5F5DC;
    --bg-eid: radial-gradient(circle at center, #2d1b4d 0%, #1a0f2e 100%);
}

/* Islamic Geometric Background Pattern */
.eid-pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0l10 30h30l-25 20 10 30-25-20-25 20 10-30-25-20h30z' fill='%23ffd700' fill-opacity='0.03'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

body.eid-theme {
    background: var(--bg-eid);
    color: var(--eid-text);
    font-family: 'Outfit', 'Cairo', sans-serif;
}

.arabic-font {
    font-family: 'Amiri', serif;
}

/* Festive Card Style */
.eid-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.eid-button {
    background: linear-gradient(135deg, var(--eid-accent) 0%, var(--eid-accent-dark) 100%);
    color: var(--eid-primary);
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.eid-button:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
