@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
}

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

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

/* Delay animations for staggered effect */
.delay-100 {
    animation-delay: 0.1s;
}
.delay-200 {
    animation-delay: 0.2s;
}
.delay-300 {
    animation-delay: 0.3s;
}

/* Custom gold separator */
.gold-separator {
    height: 2px;
    background: linear-gradient(90deg, rgba(251,191,36,0) 0%, rgba(251,191,36,1) 50%, rgba(251,191,36,0) 100%);
}