/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.is-visible {
    opacity: 1;
}

/* Custom Utilities to replace inline styles */
.font-inter {
    font-family: 'Inter', system-ui, sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.05em;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-900 {
    animation-delay: 0.9s;
}

.bg-gradient-brand {
    background: linear-gradient(to top, #EC3237, #F3AD31);
}

.shadow-custom {
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.h-500 {
    height: 500px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}