/* NRS Diesel 2020 — Custom Styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Noto Sans Thai', sans-serif;
}

/* Smooth scroll offset for sticky navbar */
section {
  scroll-margin-top: 70px;
}

/* Custom focus ring */
input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.3);
}

/* Transition for nav links */
nav a {
  transition: color 0.2s ease;
}

/* Card hover lift */
.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* Form submit feedback */
button[type="submit"]:active {
  transform: scale(0.98);
}
