/* Hero section fade-in animation */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

/* Navigation link hover fix - ensure text is always visible */
.nav-link:hover {
    background-color: white !important;
    color: #2563eb !important; /* blue-600 */
}

/* Adjust Toyota first image position - move down 30% in frame */
img[src="/images/toyotaRevo/20240409_115746.jpg"] {
    object-position: center 80% !important;
}
