@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500&display=swap');

body {
    font-family: 'Playfair Display', serif;
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
}

/* Custom animation for hero section */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeIn 1.5s ease-out forwards;
}

/* Audio player style */
.audio-player {
    transition: all 0.3s ease;
}

.audio-player:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Event card hover effect */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}