/* VehicleInfo.in - Additional Custom Styles 
   This file supplements Tailwind CSS with additional custom utilities */

/* =====================================================
   CUSTOM ANIMATIONS
   ===================================================== */

@keyframes vehicleInfoPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes vehicleInfoSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vehicleInfoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =====================================================
   CUSTOM UTILITY CLASSES
   ===================================================== */

.text-gradient-custom {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
  transition: transform 0.2s ease-in-out;
}

.hover-lift:hover {
  transform: translateY(-2px);
}

.custom-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   ANIMATION UTILITIES
   ===================================================== */

.animate-vehicle-pulse {
  animation: vehicleInfoPulse 2s infinite;
}

.animate-vehicle-slide-in {
  animation: vehicleInfoSlideIn 0.6s ease-out forwards;
}

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

/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */

.responsive-text-xs {
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .responsive-text-xs {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .responsive-text-xs {
    font-size: 1rem;
  }
}

/* =====================================================
   PRINT FRIENDLY STYLES
   ===================================================== */

@media print {
  .no-print {
    display: none !important;
  }
  
  .print-friendly {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}