/* ============================================================
   PJMB-WEB — CSS personnalisé (complète Tailwind CDN)
   ============================================================ */

html {
  scroll-behavior: smooth;
}

/* Utilitaire z-100 pour la lightbox portfolio */
.z-100 { z-index: 100; }

/* Zoom des cartes portfolio au survol */
.portfolio-zoom {
  overflow: hidden;
}
.portfolio-zoom img {
  transition: transform 0.2s ease-out;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
}
.portfolio-zoom:hover img {
  transform: scale(1.5);
}

/* Protection clic-droit sur les images portfolio */
.no-drag {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem;
}

/* Transitions douces sur les liens de navigation */
nav a {
  transition: color 0.15s ease;
}

/* Anticrénelage pour les polices de titres */
.font-display {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
