/* ===================================
   SIMPLIFIED ANIMATIONS
   Clean, Professional Effects
   =================================== */

/* Basic Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Smooth page load */
body {
    animation: fadeIn 0.5s ease-in;
}

/* Smooth Color & Background Transitions */
a,
button {
    transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

/* Hover Effects for Cards */
.group {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.group:hover {
    transform: translateY(-4px);
}

/* Form Input Focus */
input:focus,
textarea:focus,
select:focus {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Button Hover */
button:hover,
a[class*="bg-"]:hover {
    transition: all 0.3s ease;
}

/* Smooth Shadow Transitions */
.shadow,
.shadow-sm,
.shadow-lg,
.shadow-2xl {
    transition: box-shadow 0.4s ease;
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 2px solid #BD1015;
    outline-offset: 2px;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Navigation hover */
nav a {
    transition: color 0.3s ease;
}