/* Main Styles */
body {
    background-color: #f5f2e9;
    color: #333333;
    font-family: 'Lora', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
    max-height: 50vh;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes kenburns {
    0% { 
        transform: scale(1.1) translate(0, 0); 
    }
    100% { 
        transform: scale(1) translate(0, 0); 
    }
}

.hero-bg-animate {
    animation: kenburns 15s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
}

.fade-in-up.visible {
    animation: fadeInUp 1s forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chart-container {
        height: 300px;
    }
}
