/* ============================================
   Additional Styles & Customizations
   ============================================ */

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

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* List styles */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Link reset */
a {
  text-decoration: none;
}

/* Button reset */
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

/* Form elements */
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   Utility Classes
   ============================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-hidden {
  display: none !important;
}

.mt-visible {
  display: block !important;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  body {
    background: white;
  }

  .mt-header,
  .mt-footer,
  .mt-menu-toggle {
    display: none;
  }

  a {
    text-decoration: underline;
  }
}

/* ============================================
   Dark Mode Support (Optional)
   ============================================ */

@media (prefers-color-scheme: dark) {
  /* You can add dark mode styles here if needed */
}

/* ============================================
   Accessibility Enhancements
   ============================================ */

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--mt-indigo);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .mt-card {
    border-width: 2px;
  }

  .mt-btn {
    border-width: 2px;
  }
}

/* ============================================
   Loading States
   ============================================ */

.mt-loading {
  opacity: 0.6;
  pointer-events: none;
}

.mt-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 245, 255, 0.25);
  border-radius: 50%;
  border-top-color: var(--mt-indigo);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   Hover & Focus States
   ============================================ */

button:active {
  transform: scale(0.98);
}

a:focus-visible {
  outline: 2px solid var(--mt-indigo);
  outline-offset: 2px;
}

/* ============================================
   Transition Utilities
   ============================================ */

.mt-transition-fast {
  transition: all var(--mt-time-1) var(--mt-ease);
}

.mt-transition-normal {
  transition: all var(--mt-time-2) var(--mt-ease);
}

/* ============================================
   Shadow Utilities
   ============================================ */

.mt-shadow-soft {
  box-shadow: var(--mt-shadow-soft);
}

.mt-shadow-lift {
  box-shadow: var(--mt-shadow-lift);
}

/* ============================================
   Spacing Utilities
   ============================================ */

.mt-mt-4 { margin-top: var(--mt-space-4); }
.mt-mb-4 { margin-bottom: var(--mt-space-4); }
.mt-mt-8 { margin-top: var(--mt-space-8); }
.mt-mb-8 { margin-bottom: var(--mt-space-8); }
.mt-p-4 { padding: var(--mt-space-4); }
.mt-p-6 { padding: var(--mt-space-6); }

/* ============================================
   Responsive Images
   ============================================ */

.mt-img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.mt-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Custom Scrollbar
   ============================================ */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--mt-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--mt-border);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mt-ink-dim);
}

/* ============================================
   Selection Styles
   ============================================ */

::selection {
  background: var(--mt-indigo);
  color: white;
}

::-moz-selection {
  background: var(--mt-indigo);
  color: white;
}

/* ============================================
   Placeholder Styles
   ============================================ */

::placeholder {
  color: var(--mt-ink-soft);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--mt-ink-soft);
  opacity: 1;
}

/* ============================================
   Code Styles
   ============================================ */

code {
  font-family: var(--mt-font-mono);
  background: var(--mt-surface-alt);
  padding: 0.2em 0.4em;
  border-radius: var(--mt-r-8);
  font-size: 0.9em;
  color: var(--mt-ink);
}

pre {
  background: var(--mt-surface-alt);
  padding: var(--mt-space-4);
  border-radius: var(--mt-r-12);
  overflow-x: auto;
  margin: var(--mt-space-4) 0;
}

pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

/* ============================================
   Table Styles
   ============================================ */

table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--mt-space-8) 0;
}

th, td {
  padding: var(--mt-space-3) var(--mt-space-4);
  text-align: left;
  border-bottom: 1px solid var(--mt-border);
}

th {
  background: var(--mt-surface-alt);
  font-weight: 600;
  color: var(--mt-ink);
}

tr:hover {
  background: var(--mt-surface-alt);
}

/* ============================================
   Form Styles
   ============================================ */

.mt-form-group {
  margin-bottom: var(--mt-space-6);
}

.mt-form-label {
  display: block;
  margin-bottom: var(--mt-space-2);
  font-weight: 600;
  color: var(--mt-ink);
}

.mt-form-input,
.mt-form-textarea {
  width: 100%;
  padding: var(--mt-space-3) var(--mt-space-4);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-r-8);
  font-family: inherit;
  font-size: inherit;
  color: var(--mt-ink);
  background: var(--mt-surface);
  transition: border-color var(--mt-time-1) var(--mt-ease);
}

.mt-form-input:focus,
.mt-form-textarea:focus {
  outline: none;
  border-color: var(--mt-indigo);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.18);
}

.mt-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   Badge Styles
   ============================================ */

.mt-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--mt-space-2);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 245, 255, 0.15);
  color: var(--mt-indigo);
  border: 1px solid rgba(0, 245, 255, 0.35);
  font-weight: 600;
  font-size: 0.85rem;
}

.mt-badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--mt-success);
  border-color: rgba(16, 185, 129, 0.25);
}

.mt-badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--mt-warn);
  border-color: rgba(245, 158, 11, 0.25);
}

.mt-badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--mt-danger);
  border-color: rgba(239, 68, 68, 0.25);
}

/* ============================================
   Alert Styles
   ============================================ */

.mt-alert {
  padding: var(--mt-space-4);
  border-radius: var(--mt-r-12);
  border-left: 4px solid;
  margin-bottom: var(--mt-space-4);
}

.mt-alert-info {
  background: rgba(0, 245, 255, 0.12);
  border-left-color: var(--mt-indigo);
  color: var(--mt-indigo);
}

.mt-alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-left-color: var(--mt-success);
  color: var(--mt-success);
}

.mt-alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: var(--mt-warn);
  color: var(--mt-warn);
}

.mt-alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: var(--mt-danger);
  color: var(--mt-danger);
}
