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

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(228, 28, 56, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(228, 28, 56, 0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-pulse-cta {
    animation: pulse-red 2s infinite;
}

.text-outline {
    -webkit-text-stroke: 1px #E41C38;
    color: transparent;
}

.scroll-reveal {
    opacity: 1;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Base style for sticky nav transparency */
#nav-container {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#nav-container.scrolled {
    background-color: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #E41C38;
}
