/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header Styles */
  .site-header {
    background: #ff6600;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  
  .nav-links li a.active {
    background: #fff;
    color: #ff6600;
  }
  
  .nav-links li a:hover {
    background: #ffd699;
    color: #333;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    gap: 5px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Footer Styles */
  .site-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  .site-footer p {
    font-size: 0.9rem;
  }
  
  /* Menu Section */
.menu-section {
  text-align: center;
  padding: 3rem 0;
}

.menu-section h2 {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 1rem;
}

.menu-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.menu-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 280px; /* Fixed width */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Fix Image Size */
.menu-card img {
  width: 100%;
  height: 180px; /* Fixed height */
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.menu-content {
  padding: 1.5rem;
  text-align: left;
}

.menu-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.menu-card ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff9800;
  margin-bottom: 1rem;
}

/* Stylish Button */
.btn-primary {
  display: block;
  width: 100%;
  padding: 0.6rem;
  text-align: center;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e65c00;
}

/* Quantity Control Styles */
.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.qty-btn {
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(to right, #ff6600, #ff944d);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
}

.qty-btn.minus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.qty-btn.plus {
  padding: 0.7rem 1.5rem;
  white-space: nowrap;
}

.qty-btn:hover {
  background: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
  transform: scale(1.05);
}

.qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #ff6600;
  border-radius: 5px;
  padding: 0.5rem;
}

.qty-input:focus {
  outline: none;
  box-shadow: 0 0 5px #ff6600;
}

/* Cart Button Container */
.cart-button-container {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.btn-go-to-cart {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(to right, #ff6600, #ff944d);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-go-to-cart:hover {
  background: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
  transform: scale(1.05);
}
  
  .btn-add-to-cart {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(to right, #ff6600, #ff944d);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn-add-to-cart:hover {
    background: linear-gradient(to right, #ff944d, #ff6600);
    transform: scale(1.05);
  }
  
  /* Mobile Responsive - Small Screens (below 900px) */
  @media (max-width: 899px) {
    .container {
      width: 95%;
    }

    .hamburger {
      display: flex;
      order: 2;
      margin-left: auto;
    }

    .navbar {
      position: relative;
      flex-direction: row;
      gap: 0;
      flex-wrap: wrap;
    }

    .logo {
      order: 1;
    }

    .nav-links {
      order: 3;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #ff6600;
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      width: 100%;
    }

    .nav-links.active {
      max-height: 300px;
    }

    .nav-links li {
      width: 100%;
    }

    .nav-links li a {
      display: block;
      padding: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links {
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
    }

    .nav-links li a {
      font-size: 0.85rem;
      padding: 0.4rem 0.8rem;
    }

    .logo {
      font-size: 1.3rem;
    }

    .menu-section {
      padding: 1.5rem 0;
    }

    .menu-section h2 {
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }

    .menu-section p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .menu-cards {
      gap: 1rem;
    }

    .menu-card {
      width: 100%;
      max-width: 100%;
    }

    .menu-card img {
      height: 150px;
    }

    .menu-content {
      padding: 1rem;
    }

    .menu-card h3 {
      font-size: 1.2rem;
    }

    .menu-card ul li {
      font-size: 0.9rem;
    }

    .price {
      font-size: 1rem;
    }

    .btn-primary, .btn-add-to-cart {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  }

  /* Desktop Responsive - Large Screens (900px and above) */
  @media (min-width: 900px) {
    .hamburger {
      display: none;
    }

    .container {
      width: 90%;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row;
      gap: 1.5rem;
      padding: 0 1.5rem;
    }

    .nav-links {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      position: static;
      max-height: none;
      background: none;
    }

    .nav-links li a {
      font-size: 1rem;
      padding: 0.5rem 1rem;
      border: none;
    }

    .logo {
      font-size: 1.8rem;
    }

    .menu-section h2 {
      font-size: 2rem;
    }

    .menu-cards {
      gap: 2rem;
    }

    .menu-card {
      width: 280px;
    }

    .menu-card img {
      height: 200px;
    }

    .menu-content h3 {
      font-size: 1.5rem;
    }
  }
  