/* Responsive Styles */

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .customer-photos-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-content,
  .bar-content,
  .restaurant-content,
  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-image,
  .bar-image,
  .restaurant-image {
    order: -1;
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .customer-photos-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-details {
    flex-direction: column;
    gap: 20px;
  }

  .hours-item {
    width: 100%;
  }

  .navigation-apps {
    flex-direction: column;
    align-items: center;
  }

  .map-link {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav .nav-links {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
  }

  .main-nav .nav-links.active {
    left: 0;
  }

  .main-nav .nav-links li {
    margin: 15px 0;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-nav ul {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-nav ul li {
    margin: 0 10px 10px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .customer-photos-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 20px;
  }

  .language-selector ul {
    justify-content: center;
  }
}

