/* Custom styles supplementing Tailwind CDN */
html { scroll-behavior: smooth; }

/* Remove default details/summary arrow */
summary::-webkit-details-marker { display: none; }
summary { list-style: none; }

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

/* Prose tweaks for content pages */
.prose h2 { color: #0f172a; font-weight: 800; margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { color: #0f172a; font-weight: 700; }
.prose a { color: #0284c7; }
.prose a:hover { color: #075985; }
.prose ul { list-style: disc; padding-left: 1.5rem; }
.prose ul li { margin-bottom: 0.25rem; }
.prose p { margin-bottom: 1rem; }

/* Snowflake animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

/* Add bottom padding on mobile to clear sticky call bar */
@media (max-width: 767px) {
    body { padding-bottom: 56px; }
}
