/*
 * ETERNITUM - Minimalist Theme
 * Black and white, clean, simple, elegant
 */

/* ========== CSS VARIABLES ========== */
.theme-minimalist {
    --theme-primary: #1a1a1a;
    --theme-secondary: #333;
    --theme-accent: #666;
    --theme-text: #333;
    --theme-heading: #1a1a1a;
    --theme-bg: #fff;
    --theme-border: #e0e0e0;
}

/* ========== HERO ========== */
.theme-minimalist .memorial-hero {
    background: linear-gradient(180deg, #1a1a1a 0%, #333 100%);
}

/* Clean overlay */
.theme-minimalist .memorial-hero::before {
    display: none;
}

/* Simple line decoration */
.theme-minimalist .memorial-hero::after {
    content: '—';
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    letter-spacing: 20px;
}

/* ========== PHOTO FRAME ========== */
.theme-minimalist .memorial-photo-frame {
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.theme-minimalist .memorial-photo-frame img {
    border-radius: 50%;
    filter: grayscale(100%);
}

/* ========== TYPOGRAPHY ========== */
.theme-minimalist .memorial-name {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.theme-minimalist .memorial-dates {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 4px;
}

.theme-minimalist .memorial-epitaph {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-weight: 300;
}

/* ========== CARDS ========== */
.theme-minimalist .memorial-card {
    background: var(--theme-bg);
    border: 1px solid var(--theme-border);
    border-radius: 0;
}

.theme-minimalist .memorial-card-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--theme-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.theme-minimalist .memorial-card-heading::before {
    display: none;
}

/* ========== BUTTONS ========== */
.theme-minimalist .memorial-btn-primary {
    background: var(--theme-primary);
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 2px;
}

.theme-minimalist .memorial-btn-secondary {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 0;
}

/* ========== TRIBUTE OPTIONS ========== */
.theme-minimalist .tribute-option {
    background: #fff;
    border: 1px solid var(--theme-border);
    border-radius: 0;
}

.theme-minimalist .tribute-option:hover {
    background: #f5f5f5;
}

.theme-minimalist .tribute-option:has(input:checked) {
    background: var(--theme-primary);
    color: #fff;
    border-color: var(--theme-primary);
}

/* ========== GALLERY ========== */
.theme-minimalist .memorial-gallery img {
    border: 1px solid var(--theme-border);
    border-radius: 0;
    filter: grayscale(50%);
}

.theme-minimalist .memorial-gallery img:hover {
    filter: grayscale(0%);
}

/* ========== STATS ========== */
.theme-minimalist .stat-value {
    color: var(--theme-primary);
    font-weight: 300;
}

/* ========== QR ========== */
.theme-minimalist .memorial-qr img {
    border: 1px solid var(--theme-border);
}