/* Media Queries - SoftDZ Responsive Styles */
/* Legacy compatibility file */

/* Base responsive breakpoints */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none;
  }
  
  .main-content {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .card {
    padding: 1rem;
  }
}

/* Print styles */
@media print {
  .nav-header,
  .nav-footer,
  .sidebar,
  .no-print {
    display: none !important;
  }
  
  .main-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  .page-break {
    page-break-before: always;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .card {
    border-width: 2px;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Dark mode support (future) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --text-primary: #eaeaea;
    --text-secondary: #a0a0a0;
    --border-color: #2d2d44;
  }
}
