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

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth; /* For smooth scrolling on button click */
}

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

/* Simple fade-in animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background gradient animation */
.animated-gradient {
    background-size: 200% 200%;
    background-image: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}