/* ============================================================
   Sen-Majordome — Custom CSS (complément à Tailwind CDN)
   Palette : BLEU MARINE DOMINANT + cyan accent + bleu très clair
   ============================================================ */

/* Smooth font rendering */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Cacher éléments Alpine non encore initialisés */
[x-cloak] { display: none !important; }

/* Line-clamp utilities */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Reset des inputs autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #1E3A8A !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* Scrollbar bleu marine de marque */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #EFF6FF; }
::-webkit-scrollbar-thumb { background: #1E3A8A; border-radius: 6px; border: 2px solid #EFF6FF; }
::-webkit-scrollbar-thumb:hover { background: #06B6D4; }

/* Prose perso (articles, blog) — tons bleu marine */
.prose h2, .prose h3 { font-family: 'Cormorant Garamond', Georgia, serif; color: #1E3A8A; font-weight: 500; letter-spacing: -0.01em; }
.prose h2 { font-size: 2.25rem; margin-top: 2.5em; margin-bottom: 0.8em; line-height: 1.15; }
.prose h3 { font-size: 1.625rem; margin-top: 2em; margin-bottom: 0.6em; line-height: 1.2; }
.prose p  { margin-top: 1.1em; margin-bottom: 1.1em; line-height: 1.75; color: #334155; }
.prose a  { color: #1E40AF; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.2s; }
.prose a:hover { color: #06B6D4; }
.prose blockquote { border-left: 3px solid #1E3A8A; padding-left: 1.5em; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.25em; color: #1E293B; margin: 2em 0; background: #EFF6FF; padding-top: 1em; padding-bottom: 1em; }
.prose ul, .prose ol { padding-left: 1.6em; margin: 1.1em 0; }
.prose li { margin: 0.5em 0; line-height: 1.7; }
.prose strong { color: #1E3A8A; font-weight: 600; }

/* Focus visible — accessibilité (cyan de marque) */
*:focus-visible { outline: 2px solid #06B6D4; outline-offset: 2px; }
button:focus, a:focus, input:focus, select:focus, textarea:focus { outline: none; }

/* Sélection texte */
::selection { background: #BFDBFE; color: #172554; }

/* Animations supplémentaires */
@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}
.animate-slow-zoom { animation: slow-zoom 20s ease-in-out infinite alternate; }

/* Print-friendly */
@media print {
    header, footer, .fixed { display: none !important; }
    body { background: white; color: black; }
    main { padding: 0; }
}
