/* ===================================
   SNAPSHOT CARDS - VISUAL REVIEW SECTION
   Beautiful card-based design for review section
   =================================== */

.snapshot-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
    padding: 0;
}

.snapshot-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.snapshot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #8B4513;
}

/* Card Header */
.snapshot-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.snapshot-icon {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.snapshot-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Card Body */
.snapshot-body {
    padding: 24px;
}

.snapshot-field {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
}

.snapshot-field:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.snapshot-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #666;
    margin-bottom: 6px;
}

.snapshot-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Special styling for different card types */
#personal-snapshot .snapshot-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

#faith-snapshot .snapshot-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

#relationship-snapshot .snapshot-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .snapshot-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .snapshot-header {
        padding: 16px;
    }
    
    .snapshot-icon {
        font-size: 28px;
    }
    
    .snapshot-title {
        font-size: 18px;
    }
    
    .snapshot-body {
        padding: 20px;
    }
}

/* Empty state styling */
.snapshot-value:empty::before,
.snapshot-value:contains("Not provided") {
    color: #999;
    font-style: italic;
}

/* Animation for data population */
@keyframes fadeInValue {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.snapshot-value.populated {
    animation: fadeInValue 0.3s ease;
}

