/*
 * ETERNITUM - Vintage Theme
 * Sepia tones, nostalgic, old photographs feel
 */

/* ========== CSS VARIABLES ========== */
.theme-vintage {
    --theme-primary: #704214;
    --theme-secondary: #8B7355;
    --theme-accent: #C4A35A;
    --theme-text: #4A3728;
    --theme-heading: #3E2723;
    --theme-bg: #FAF0E6;
    --theme-border: #D4C4A8;
}

/* ========== HERO ========== */
.theme-vintage .memorial-hero {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 40%, #8D6E63 100%);
}

/* Film grain overlay */
.theme-vintage .memorial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.08"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

/* Camera icon */
.theme-vintage .memorial-hero::after {
    content: '📷';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.5;
}

/* ========== PHOTO FRAME ========== */
.theme-vintage .memorial-photo-frame {
    border: 8px solid #F5F5DC;
    border-radius: 0;
    box-shadow:
        0 0 0 4px var(--theme-primary),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.theme-vintage .memorial-photo-frame img {
    border-radius: 0;
    filter: sepia(20%);
}

/* ========== TYPOGRAPHY ========== */
.theme-vintage .memorial-name {
    font-family: 'Playfair Display', serif;
    color: #F5F5DC;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.theme-vintage .memorial-dates {
    color: var(--theme-accent);
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

.theme-vintage .memorial-epitaph {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* ========== CARDS ========== */
.theme-vintage .memorial-card {
    background: var(--theme-bg);
    border: 2px solid var(--theme-border);
    border-radius: 0;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.theme-vintage .memorial-card-heading {
    font-family: 'Playfair Display', serif;
    color: var(--theme-heading);
    border-bottom: 2px double var(--theme-border);
}

/* ========== BUTTONS ========== */
.theme-vintage .memorial-btn-primary {
    background: var(--theme-primary);
    border-radius: 0;
    font-family: 'Playfair Display', serif;
}

/* ========== TRIBUTE OPTIONS ========== */
.theme-vintage .tribute-option {
    background: #fff;
    border: 2px solid var(--theme-border);
    border-radius: 0;
}

.theme-vintage .tribute-option:has(input:checked) {
    background: var(--theme-primary);
    color: #fff;
}

/* ========== GALLERY ========== */
.theme-vintage .memorial-gallery img {
    border: 4px solid #F5F5DC;
    border-radius: 0;
    filter: sepia(10%);
}