/* Custom styles complementing Tailwind CDN */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; }

/* Photo gallery */
.gallery-thumb { transition: transform 0.2s, opacity 0.2s; }
.gallery-thumb:hover { transform: scale(1.02); opacity: 0.9; }

/* Rich text content */
.prose h1, .prose h2, .prose h3 { font-weight: 600; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1rem; line-height: 1.7; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose a { color: #f59e0b; text-decoration: underline; }

/* Loading spinner */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-block; }

/* Admin sidebar active */
.sidebar-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 1rem; border-radius: 0.5rem; transition: background 0.15s; color: #94a3b8; }
.sidebar-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
.sidebar-link.active { background: rgba(245,158,11,0.15); color: #f59e0b; border-left: 3px solid #f59e0b; }
