/* Deferred styles - loaded after initial page render */

/* Additional layout utilities */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .layout-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Component-specific styles */
.reservation-form {
  background: rgba(245, 241, 236, 0.95);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.menu-category {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: white;
}

.menu-category-header {
  background: linear-gradient(135deg, #f99747, #bc906b);
  color: white;
  padding: 1rem;
  font-weight: 600;
}

.contact-info {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid #f99747;
}

/* Enhanced hover effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Advanced animations */
.stagger-animation > * {
  animation: staggerIn 0.5s ease-out;
  animation-fill-mode: both;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }

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

/* Mobile optimizations */
@media (max-width: 768px) {
  .reservation-form {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .menu-category {
    border-width: 2px;
    border-color: #000;
  }
  
  .contact-info {
    border-left-width: 6px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-slide-up,
  .animate-bounce-in,
  .stagger-animation > *,
  .hover-lift {
    animation: none !important;
    transition: none !important;
  }
}
