/* ================================================================
   Dysora — CSS Plugin WordPress
   ================================================================ */

/* Reset de base dans le conteneur */
#dysora-wrapper {
  font-family: 'Atkinson Hyperlegible', ui-sans-serif, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2E2A24;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbars fines */
#dysora-wrapper ::-webkit-scrollbar { width: 6px; height: 6px; }
#dysora-wrapper ::-webkit-scrollbar-track { background: transparent; }
#dysora-wrapper ::-webkit-scrollbar-thumb {
  background: #2F6F6B55;
  border-radius: 999px;
}
#dysora-wrapper ::-webkit-scrollbar-thumb:hover { background: #2F6F6B99; }

/* Focus visible pour l'accessibilité */
#dysora-wrapper :focus-visible {
  outline: 2.5px solid #2F6F6B;
  outline-offset: 2px;
}

/* Réduire les animations si préférence système */
@media (prefers-reduced-motion: reduce) {
  #dysora-wrapper *,
  #dysora-wrapper *::before,
  #dysora-wrapper *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Neutraliser certains styles WordPress qui interfèrent */
#dysora-root p { margin: 0; }
#dysora-root a { color: inherit; text-decoration: none; }
#dysora-root button { font-family: inherit; }
#dysora-root input,
#dysora-root select,
#dysora-root textarea { font-family: inherit; }
#dysora-root ul, #dysora-root ol { margin: 0; padding: 0; list-style: none; }
#dysora-root img { max-width: none; }

/* Mode plein écran (template page Dysora) */
.page-template-dysora-fullscreen #dysora-wrapper,
.dysora-fullscreen #dysora-wrapper {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9990;
  overflow: hidden;
}

/* Cacher header/footer en mode plein écran */
.page-template-dysora-fullscreen .site-header,
.page-template-dysora-fullscreen .site-footer,
.page-template-dysora-fullscreen #wpadminbar,
.page-template-dysora-fullscreen nav,
.page-template-dysora-fullscreen header,
.page-template-dysora-fullscreen footer {
  display: none !important;
}

.page-template-dysora-fullscreen body,
.page-template-dysora-fullscreen .site-content,
.page-template-dysora-fullscreen .entry-content,
.page-template-dysora-fullscreen main,
.page-template-dysora-fullscreen .wp-block-post-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}
