/* MAK'S DUMP TRUCK SPECIFIC STYLE OVERRIDES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* Dynamic custom fade-in entry animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Custom scroll adjustments for clean sticky header transitions */
.scroll-mt-20 {
  scroll-margin-top: 5rem; /* Matches h-20 (80px) sticky header spacing */
}

/* Custom map style modifiers */
iframe {
  transition: filter 0.3s ease;
}

/* Gallery Hover Image Scaling prevention */
.scale-102 {
  transform: scale(1.02);
}

/* Form transition states */
select, input, textarea {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
