/* Custom styles for La Casita Mexican Food */

/* Smooth scroll offset for fixed nav */
html {
  scroll-padding-top: 80px;
}

/* Selection color */
::selection {
  background: #ff6b35;
  color: #fff;
}

/* Focus visible styles */
*:focus-visible {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

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

/* Print styles */
@media print {
  .navbar, .mobile-menu, .mobile-overlay { display: none !important; }
  body { color: #000; background: #fff; }
  .hero-bg { background: #fff !important; color: #000 !important; }
}

/* Extra small screens */
@media (max-width: 359px) {
  .font-display.text-4xl { font-size: 2rem; }
}

/* Large screens */
@media (min-width: 1280px) {
  .hero-bg { min-height: 100vh; }
}
