/*
 * Derma Lights — Custom Stylesheet
 * Thème : dermatologie & luminothérapie
 * Palette #5 Cyan/Rose | Fonts #7 Lora/Inter
 * TailwindCSS chargé via CDN dans head.html
 */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(8, 145, 178, 0.2);
  color: #0e7490;
}

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

a, button {
  transition: color 0.25s ease, background-color 0.25s ease,
              box-shadow 0.25s ease, transform 0.25s ease,
              border-color 0.25s ease;
}

/* ─── Hero : effet luminothérapie ──────────────────── */

.hero-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(8, 145, 178, 0.35) 0%,
    rgba(8, 145, 178, 0.1) 40%,
    transparent 65%
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: glow-pulse 10s ease-in-out infinite;
}

.hero-glow-accent {
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.18) 0%,
    transparent 60%
  );
  border-radius: 50%;
  filter: blur(50px);
  animation: glow-pulse 12s ease-in-out 2s infinite reverse;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* Variante pour l'accent (pas de translateX) */
.hero-glow-accent {
  animation-name: glow-drift;
}

@keyframes glow-drift {
  0%, 100% { opacity: 0.6; transform: scale(1) translate(0, 0); }
  50%      { opacity: 0.9; transform: scale(1.1) translate(-5%, 3%); }
}

/* ─── Cards : lift au survol ───────────────────────── */

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

.card-lift:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 4px 10px -3px rgba(0, 0, 0, 0.04);
}

/* ─── Section divider ──────────────────────────────── */

.section-divider {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0891b2, #ec4899);
}

/* ─── Prose : contenu markdown ─────────────────────── */

.prose { max-width: 68ch; }

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1f2937;
}

.prose p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #374151;
}

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

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose li {
  margin-bottom: 0.5rem;
  color: #374151;
  line-height: 1.75;
}

.prose blockquote {
  border-left: 3px solid #0891b2;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4b5563;
  background: #f0fdfa;
  border-radius: 0 0.5rem 0.5rem 0;
}

.prose a {
  color: #0e7490;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(14, 116, 144, 0.3);
  font-weight: 500;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.prose a:hover {
  color: #0891b2;
  text-decoration-color: #0891b2;
}

.prose strong {
  font-weight: 600;
  color: #111827;
}

.prose img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

/* ─── Prose : tables ───────────────────────────────── */

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
  overflow-x: auto;
  display: block;
}

.prose thead {
  border-bottom: 2px solid #d1d5db;
}

.prose th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #111827;
  background: #f9fafb;
  white-space: nowrap;
}

.prose td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}

.prose tbody tr:hover {
  background: #f9fafb;
}

.prose table tr:nth-child(even) {
  background-color: #fafafa;
}

@media (max-width: 640px) {
  .prose th, .prose td {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* ─── Line clamp ───────────────────────────────────── */

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

/* ─── Accessibilité : focus visible ────────────────── */

a:focus-visible, button:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Pagination (Hugo internal template) ──────────── */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.pagination li {
  list-style: none;
}

.pagination a, .pagination .active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.pagination a {
  color: #374151;
  background: white;
  border: 1px solid #e5e7eb;
}

.pagination a:hover {
  background: #f0fdfa;
  border-color: #0891b2;
  color: #0e7490;
}

.pagination .active {
  color: white;
  background: #0e7490;
  border: 1px solid #0e7490;
}

.pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

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

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