:root {
  --airbnb: #e0115f;
}
html { scroll-behavior: smooth; }
body { margin: 0; }

/* Fade-in for content on load */
main > * {
  animation: rise 0.5s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Native date input polish */
input[type="date"], input[type="number"], select, textarea {
  font-family: 'Bricolage Grotesque', sans-serif;
}
input[type="number"]::-webkit-inner-spin-button { opacity: 0.4; }

::selection { background: rgba(224, 17, 95, 0.2); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #d6d3d1; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #a8a29e; }