/* samsunpsikolog.tr — özel stiller (Tailwind CDN üstüne) */

:root { color-scheme: light; }

html { -webkit-text-size-adjust: 100%; }

body.menu-open { overflow: hidden; }

/* Mobil/tablet: alt sabit randevu çubuğu içeriği kapatmasın */
@media (max-width: 1023px) {
  body { padding-bottom: 5rem; }
}

/* details/summary marker temizliği */
summary::-webkit-details-marker { display: none; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(1rem);
  z-index: 60;
  max-width: 90vw;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-success { background: #134E4A; color: #fff; }
.toast-error { background: #DC2626; color: #fff; }

/* prose yardımcı (Tailwind typography plugin'siz) */
.prose-custom h2 { color: #0F172A; }
.prose-custom a { color: #0F766E; }
.prose-custom strong { color: #0F172A; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
