/* Custom styles and overrides for RAM Showroom */

:root {
  --brand-blue: #003366; /* Adjust based on exact logo blue */
  --brand-yellow: #FFCC00; /* Adjust based on exact logo yellow */
}

/* Base tweaks */
body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #222222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; 
}

/* Card hover effect */
.car-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Floating Button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.05);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

/* Hide on mobile if specified */
@media (max-width: 767px) {
  body {
    padding-bottom: 64px; /* Space for sticky mobile menu */
  }
  .wa-float {
    display: none !important;
  }
}
