/* ============================================================================
   PeasBlossom.eu — Styles personnalisés
   Complément Tailwind CDN — anti-footprint, transitions et typographie
   ============================================================================ */

/* ── Base ──────────────────────────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
}

/* ── Prose (contenu Markdown) ─────────────────────────────────────────────── */

.prose h2 {
  margin-top: 2.25rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.125rem;
  line-height: 1.8;
}

.prose ul, .prose ol {
  margin-bottom: 1.125rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  border-left-width: 4px;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ── Utilitaires ──────────────────────────────────────────────────────────── */

.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;
}

/* ── Hero overlay ─────────────────────────────────────────────────────────── */

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.72) 0%,
    rgba(77, 124, 15, 0.55) 50%,
    rgba(139, 92, 246, 0.35) 100%
  );
}

/* ── Cards ─────────────────────────────────────────────────────────────────── */

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* ── Image aspect ratios ──────────────────────────────────────────────────── */

.aspect-article {
  aspect-ratio: 4 / 3;
}

.aspect-hero {
  aspect-ratio: 16 / 9;
}

/* ── Accessibilité ────────────────────────────────────────────────────────── */

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ── Transitions ──────────────────────────────────────────────────────────── */

a, button {
  transition: color 0.2s ease, background-color 0.2s ease;
}

img {
  transition: transform 0.4s ease;
}

/* ── Print ─────────────────────────────────────────────────────────────────── */

@media print {
  header, footer, nav { display: none !important; }
  .prose { max-width: 100%; }
}
