/* Set the base font for the UI */
body {
    font-family: 'Inter', sans-serif;
}

/* New background container styles */
#background-container {
    /* This is the image that creates the immersive background */
    background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    /* This filter darkens the image */
    filter: blur(4px) brightness(0.6);
}

/* Set the elegant serif font for the quote text */
#quote-text {
    font-family: 'Playfair Display', serif;
}

/* Style for the large decorative quotation mark */
#quote-display::before {
    content: '“';
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    z-index: 1;
}

/* Adding a subtle transition for a smoother loading experience */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Styling for the Gemini-generated content */
.prose p {
    margin-bottom: 1em;
}

.prose strong {
    color: #a78bfa; /* A light purple for dark mode */
}
