/*
 * ETERNITUM - Islamic Theme
 * Crescent moon, green and gold, geometric patterns
 */

/* ========== CSS VARIABLES ========== */
.theme-islamic {
    --theme-primary: #006400;
    --theme-secondary: #228B22;
    --theme-accent: #D4AF37;
    --theme-text: #2F4F4F;
    --theme-heading: #004d00;
    --theme-bg: #F5FFF5;
    --theme-border: #90EE90;
}

/* ========== HERO ========== */
.theme-islamic .memorial-hero {
    background: linear-gradient(135deg, #004d00 0%, #006400 40%, #228B22 100%);
}

/* Geometric pattern overlay */
.theme-islamic .memorial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    pointer-events: none;
}

/* Crescent moon and star */
.theme-islamic .memorial-hero::after {
    content: '☪';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(212, 175, 55, 0.7);
    font-size: 2.5rem;
}

/* ========== PHOTO FRAME ========== */
.theme-islamic .memorial-photo-frame {
    border: 6px solid var(--theme-accent);
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 100, 0, 0.4);
}

.theme-islamic .memorial-photo-frame img {
    border-radius: 50%;
}

/* ========== TYPOGRAPHY ========== */
.theme-islamic .memorial-name {
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.theme-islamic .memorial-dates {
    color: var(--theme-accent);
    letter-spacing: 2px;
}

.theme-islamic .memorial-epitaph {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* ========== CARDS ========== */
.theme-islamic .memorial-card {
    background: var(--theme-bg);
    border: 1px solid var(--theme-border);
    border-radius: 8px;
    border-top: 4px solid var(--theme-primary);
}

.theme-islamic .memorial-card-heading {
    color: var(--theme-heading);
}

.theme-islamic .memorial-card-heading::before {
    content: '☪ ';
    color: var(--theme-primary);
}

/* ========== BUTTONS ========== */
.theme-islamic .memorial-btn-primary {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
}

.theme-islamic .memorial-btn-secondary {
    background: rgba(0, 100, 0, 0.8);
    border: 1px solid var(--theme-accent);
}

/* ========== TRIBUTE OPTIONS ========== */
.theme-islamic .tribute-option {
    background: #fff;
    border: 2px solid var(--theme-primary);
    border-radius: 8px;
}

.theme-islamic .tribute-option:hover {
    background: rgba(0, 100, 0, 0.1);
}

.theme-islamic .tribute-option:has(input:checked) {
    background: var(--theme-primary);
    color: #fff;
}

/* ========== GALLERY ========== */
.theme-islamic .memorial-gallery img {
    border: 2px solid var(--theme-primary);
    border-radius: 8px;
}

/* ========== STATS ========== */
.theme-islamic .stat-value {
    color: var(--theme-primary);
}