/* Styles pour le responsive design */

/* Tablettes */
@media (max-width: 992px) {
  .container {
    max-width: 95%;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .about-content, 
  .location-content, 
  .contact-content {
    flex-direction: column;
  }
  
  .about-image, 
  .about-text, 
  .location-info, 
  .location-map, 
  .contact-info, 
  .contact-map {
    flex: none;
    width: 100%;
  }
  
  .about-image {
    margin-top: 2rem;
    order: 2;
  }
  
  .about-text {
    order: 1;
  }
  
  .location-map, 
  .contact-map {
    margin-top: 2rem;
    height: 350px;
  }
  
  .specialties-grid, 
  .testimonials-grid, 
  .menu-items, 
  .gallery-grid, 
  .reviews-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiles */
@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
  }
  
  .header-container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .specialties-grid, 
  .testimonials-grid, 
  .menu-items, 
  .gallery-grid, 
  .reviews-list {
    grid-template-columns: 1fr;
  }
  
  .menu-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-category {
    margin: 0.3rem 0;
    width: 80%;
    text-align: center;
  }
  
  .reviews-summary {
    flex-direction: column;
  }
  
  .average-rating {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-column {
    min-width: 100%;
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-item-price {
    margin-top: 0.5rem;
  }
}
