/* ==========================================================
   NAVIGARE - Salone Nautico Internazionale di Napoli
   Custom styles
   ========================================================== */

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle reveal animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

main > section {
  animation: fadeInUp 0.6s ease-out both;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f0f4f8; }
::-webkit-scrollbar-thumb { background: #0a2540; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #06182f; }

/* Selection */
::selection { background: #d4af37; color: #03101f; }

/* Form focus */
input:focus, textarea:focus, select:focus {
  outline: none;
}

/* Prose tweaks */
.prose h2, .prose h3 { color: #06182f; }
.prose strong { color: #06182f; }
.prose a { color: #c19b2c; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
