/* Mobile responsiveness improvements */

/* Ensure proper display on small screens */
@media (max-width: 640px) {
  /* Adjust menu item cards for mobile */
  .food-card {
    margin-bottom: 1rem;
  }
  
  /* Adjust image height for better mobile viewing */
  .food-card .image-gallery {
    height: 180px;
  }
  
  /* Increase text size for better readability on mobile */
  .food-card h3 {
    font-size: 1.2rem;
  }
  
  .food-card p {
    font-size: 0.9rem;
  }
  
  /* Adjust price toggle button position and size for mobile */
  .price-toggle {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  /* Adjust reservation section for mobile */
  .reservation-section h2 {
    font-size: 1.75rem;
  }
  
  .reservation-section p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .reservation-section .slogan {
    font-size: 1.1rem;
  }
}

/* Tablet responsiveness */
@media (min-width: 641px) and (max-width: 1024px) {
  /* Adjust grid for tablets */
  .grid-cols-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  /* Adjust image height for better tablet viewing */
  .food-card .image-gallery {
    height: 190px;
  }
}

/* Ensure proper spacing and alignment across all devices */
.container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* Improve touch targets for mobile */
button, 
.category-tab,
.food-card {
  touch-action: manipulation;
}

/* Ensure proper scrolling behavior */
html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
