/* Clin Jeep Auto Center Custom Styles */

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.animate-slow-zoom {
  animation: slowZoom 24s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.25s ease-out forwards;
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(24, 27, 32, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0A0B0D;
}

::-webkit-scrollbar-thumb {
  background: #22262E;
  border-radius: 5px;
  border: 2px solid #0A0B0D;
}

::-webkit-scrollbar-thumb:hover {
  background: #FF3B3C;
}

/* Smooth Focus Rings */
a:focus-visible, button:focus-visible {
  outline: 2px solid #FF3B3C;
  outline-offset: 2px;
}
