/**
 * Mind Fitness - Main Stylesheet
 * Note: Most styles are inline in HTML for performance
 * This file contains additional/override styles
 */

/* Base reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
:focus-visible {
  outline: 3px solid #00A8A8;
  outline-offset: 2px;
}

/* Loading animation */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 16px 24px;
  background: #0B1E47;
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  animation: slideIn 0.3s ease;
}

.toast.success {
  background: #059669;
}

.toast.error {
  background: #dc2626;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .mindbot-widget {
    display: none !important;
  }
}
