/* Responsive Styles */

/* Tablets and smaller laptops */
@media screen and (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }
  
  .about-img {
    order: -1;
    margin-bottom: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow);
  }
  
  .nav-links.active {
    height: 300px;
    padding: 1rem 0;
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .menu-items {
    grid-template-columns: 1fr;
  }
  
  .menu-item {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cart-header {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  
  .cart-item-info {
    grid-column: 1;
    margin-bottom: 0.5rem;
  }
  
  .cart-item-quantity,
  .cart-item-price,
  .cart-item-total {
    display: flex;
    justify-content: space-between;
  }
  
  .cart-item-quantity::before,
  .cart-item-price::before,
  .cart-item-total::before {
    content: attr(data-label);
    font-weight: bold;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  .hero {
    height: 50vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .menu-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-filter {
    width: 80%;
  }
  
  .cart-summary {
    padding: 1.5rem;
  }
}