/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
  }
  
  /* 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;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .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);
  }
  
  
  /* Menu Section */
  h1 {
    color: #ff6600;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .menu-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .menu-card img {
    width: 100%;
    height: auto;
  }
  
  .menu-content {
    padding: 1.5rem;
    text-align: left;
  }
  
  .menu-content h3 {
    font-size: 1.5rem;
    color: #ff6600;
    margin-bottom: 1rem;
  }
  
  .menu-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
  }
  
  .menu-content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .menu-content .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .menu-content .btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to right, #ff6600, #ff944d);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .menu-content .btn-primary:hover {
    background: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
  }

  /* 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);
  }
  
  /* Footer */
  .site-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  /* Mobile Responsive - Small Screens (below 900px) */
  @media (max-width: 899px) {
    .container {
      width: 95%;
      margin: 1rem auto;
    }

    .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;
    }

    h1 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .menu {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .menu-card {
      max-width: 100%;
    }

    .menu-content {
      padding: 1rem;
    }

    .menu-content h3 {
      font-size: 1.2rem;
    }

    .menu-content .price {
      font-size: 1rem;
    }

    .menu-content .btn-primary {
      padding: 0.6rem 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;
    }

    h1 {
      font-size: 2rem;
    }

    .menu {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .menu-card {
      width: 100%;
    }

    .menu-content h3 {
      font-size: 1.5rem;
    }

    .logo {
      font-size: 1.8rem;
    }
  }
  