/*
 * ETERNITUM - Classic Theme
 * Elegant gold and brown vintage style
 */

/* ========== CSS VARIABLES ========== */
.theme-classic {
    --theme-primary: #D4AF37;
    --theme-secondary: #8B7355;
    --theme-text: #5a4a3a;
    --theme-heading: #2C3E50;
    --theme-bg: #FFFEF8;
    --theme-border: #E8DCC8;
}

/* ========== HERO ========== */
.theme-classic .memorial-hero {
    background: linear-gradient(135deg, #2C3E50 0%, #5D4E37 30%, #8B7355 60%, #D4AF37 100%);
}

/* Decorative cross pattern overlay */
.theme-classic .memorial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23D4AF37" fill-opacity="0.05" width="100" height="100"/><path d="M0 50h100M50 0v100" stroke="%23D4AF37" stroke-opacity="0.08" stroke-width="0.5"/></svg>'),
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 115, 85, 0.2) 0%, transparent 50%);
    background-size: 40px 40px, 100% 100%, 100% 100%;
}

/* Decorative flourish */
.theme-classic .memorial-hero::after {
    content: '❧';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(212, 175, 55, 0.4);
    font-size: 3rem;
}

/* ========== PHOTO FRAME ========== */
.theme-classic .memorial-photo-frame {
    border: 8px solid var(--theme-primary);
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #8B7355 0%, #D4AF37 50%, #8B7355 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.3);
}

.theme-classic .memorial-photo-frame img {
    border-radius: 50%;
}

/* ========== TYPOGRAPHY ========== */
.theme-classic .memorial-name {
    font-family: 'Playfair Display', serif;
    color: #F5F0E8;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.theme-classic .memorial-dates {
    color: var(--theme-primary);
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
}

.theme-classic .memorial-epitaph {
    color: #E8E0D5;
}

/* ========== CARDS ========== */
.theme-classic .memorial-card {
    background: var(--theme-bg);
    border: 1px solid var(--theme-border);
    border-radius: 0;
    position: relative;
}

.theme-classic .memorial-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--theme-primary);
    pointer-events: none;
}

.theme-classic .memorial-card-heading {
    font-family: 'Playfair Display', serif;
    color: var(--theme-secondary);
    border-bottom: 2px solid var(--theme-primary);
}

.theme-classic .memorial-card-heading::after {
    content: '❦';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-bg);
    padding: 0 10px;
    color: var(--theme-primary);
}

/* ========== BUTTONS ========== */
.theme-classic .memorial-btn-primary {
    background: linear-gradient(135deg, #8B7355, #D4AF37);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* ========== TRIBUTE OPTIONS ========== */
.theme-classic .tribute-option {
    background: #fff;
    border: 2px solid var(--theme-primary);
}

.theme-classic .tribute-option:hover {
    background: rgba(212, 175, 55, 0.1);
}

.theme-classic .tribute-option:has(input:checked) {
    background: var(--theme-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ========== GALLERY ========== */
.theme-classic .memorial-gallery img {
    border: 3px solid var(--theme-primary);
}

/* ========== DIVIDER ========== */
.theme-classic .memorial-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--theme-primary), transparent);
    margin: 30px 0;
}

/* ========== STATS ========== */
.theme-classic .stat-value {
    color: var(--theme-primary);
}

.theme-classic .memorial-qr img {
    border: 2px solid var(--theme-primary);
}