* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0e0e0e;
  color: #fff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: orange;
}

/* HAMBURGER MENU BUTTON */
.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: orange;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: #ff8c00;
  transform: scale(1.05);
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1002;
  transition: left 0.3s ease;
  box-shadow: 2px 0 15px rgba(0,0,0,0.5);
  overflow-y: auto;
  border-right: 3px solid orange;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  background: orange;
  color: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

.sidebar-header h2 {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.close-btn {
  background: none;
  border: none;
  color: #000;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.sidebar-nav {
  padding: 20px 0;
}

.sidebar-nav a {
  display: block;
  padding: 15px 25px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  background: #252525;
  border-left-color: orange;
  padding-left: 30px;
}

.sidebar-cta {
  background: orange !important;
  color: #000 !important;
  margin: 10px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  border-left: none !important;
}

.sidebar-cta:hover {
  background: #ff8c00 !important;
  padding-left: 25px !important;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
}

.sidebar-footer p {
  margin: 10px 0;
  font-size: 14px;
  color: #aaa;
}

.delivery-info {
  color: #4CAF50 !important;
  font-weight: bold;
}

/* SIDEBAR OVERLAY */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("images/hero.webp") center/cover no-repeat;
  cursor: zoom-in;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 20px;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.4);
  padding: 20px 25px;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: orange;
  font-size: 36px;
  margin-bottom: 8px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
  animation: fadeInDown 0.8s ease-out;
}

.tagline {
  font-size: 14px;
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
  font-size: 15px;
  margin: 5px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.buttons {
  margin-top: 15px;
}

.cta-btn {
  background: orange;
  color: #000;
  padding: 12px 24px;
  margin: 8px;
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 165, 0, 0.3);
}

.cta-btn:hover {
  background: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 165, 0, 0.5);
}

.delivery-apps {
  margin-top: 12px;
  color: #4CAF50;
  font-weight: bold;
  font-size: 14px;
}

/* ABOUT */
.subtitle {
  color: #aaa;
  font-style: italic;
  margin-top: 10px;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.highlight-item .icon {
  font-size: 36px;
}

.highlight-item span:last-child {
  font-size: 14px;
  color: #ccc;
}

/* MENU - Flexible grid layout */
.menu {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 60px 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: #252525;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
  border-color: orange;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
}

.card h3 {
  margin: 15px 0 5px 0;
  color: orange;
  font-size: 20px;
}

.menu-card {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  border-color: #ffd700;
}

.menu-card h3 {
  color: #fff;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #4CAF50;
  margin: 8px 0;
}

.description {
  color: #aaa;
  font-size: 14px;
  margin-top: 5px;
}

/* CATEGORIES */
.categories {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 60px 30px;
}

.category-subtitle {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 16px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.category-item {
  background: #252525;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid orange;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.category-item:hover {
  background: #2d2d2d;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

.category-item h3 {
  color: orange;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.category-item > p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
}

.arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  color: orange;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.category-item.active .arrow {
  transform: rotate(180deg);
}

.category-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 15px;
}

.category-menu.show {
  max-height: 1000px;
}

.category-menu ul {
  list-style: none;
  padding: 15px 0 0 0;
  margin: 0;
  border-top: 1px solid #444;
}

.category-menu li {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  color: #ddd;
  font-size: 14px;
}

.category-menu li span {
  color: #4CAF50;
  font-weight: bold;
}

.category-menu li .popular {
  color: #ff6b6b;
}

.menu-note {
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

/* TIMING */
.timing {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-radius: 20px;
  padding: 35px 25px;
}

.hours {
  font-size: 18px;
  line-height: 1.6;
}

.hours .note {
  color: #aaa;
  font-size: 16px;
  margin-top: 10px;
}

/* DELIVERY */
.delivery {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border-radius: 20px;
  padding: 40px 30px;
}

.delivery-info-box {
  max-width: 600px;
  margin: 0 auto;
  background: #252525;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid orange;
}

.direct-order {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.phone-link {
  color: orange;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: #ff8c00;
  text-decoration: underline;
}

.delivery-offer {
  color: #FFD700;
  font-weight: bold;
  font-size: 18px;
  margin: 15px 0;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.delivery-apps {
  color: #4CAF50;
  font-size: 16px;
  margin-top: 15px;
  font-style: italic;
}

.delivery-note {
  color: #4CAF50;
  font-weight: bold;
  font-size: 16px;
  margin-top: 12px;
}

.gst-note {
  color: #aaa;
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}

/* MAP */
.map {
  padding: 40px 20px 50px 20px;
}

iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.map-text {
  margin-top: 15px;
  color: #aaa;
  font-size: 16px;
}

.map-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: orange;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

.map-btn:hover {
  background: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 165, 0, 0.5);
}

/* FOOTER */
footer {
  background: #000;
  padding: 20px 15px;
  text-align: center;
  border-top: 2px solid orange;
}

footer p {
  margin: 5px 0;
  color: #888;
  font-size: 14px;
}

.other-outlets {
  color: #aaa;
  font-size: 13px;
  margin-top: 8px;
}

/* CHATBOT */
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.8);
  z-index: 1000;
  transition: all 0.3s ease;
  border: 2px solid orange;
}

#chatbot.collapsed #chat-content {
  display: none;
}

#chat-header {
  background: orange;
  color: #000;
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

#chat-header:hover {
  background: #ff8c00;
}

#chat-toggle {
  transition: transform 0.3s ease;
}

#chatbot.collapsed #chat-toggle {
  transform: rotate(180deg);
}

#chat-content {
  display: block;
}

#chat-body {
  height: 350px;
  padding: 15px;
  overflow-y: auto;
  font-size: 14px;
  background: #252525;
}

#chat-body p {
  margin: 10px 0;
  padding: 8px 12px;
  background: #333;
  border-radius: 8px;
  text-align: left;
}

#chat-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 10px 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

#chat-body img:hover {
  transform: scale(1.02);
}

#chat-body strong {
  color: orange;
}

#chat-input {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  background: #333;
  color: #fff;
  font-size: 14px;
}

#chat-input::placeholder {
  color: #888;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(255,165,0,0.5);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: orange;
  cursor: pointer;
  z-index: 10000;
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* SCROLLBAR STYLING */
#chat-body::-webkit-scrollbar {
  width: 8px;
}

#chat-body::-webkit-scrollbar-track {
  background: #1a1a1a;
}

#chat-body::-webkit-scrollbar-thumb {
  background: orange;
  border-radius: 4px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .tagline {
    font-size: 16px;
  }

  h2 {
    font-size: 26px;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* 2 columns on tablet */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .highlights {
    gap: 25px;
  }

  .category-list {
    grid-template-columns: 1fr;
  }

  #chatbot {
    width: 320px;
    bottom: 15px;
    right: 15px;
  }

  #chat-body {
    height: 280px;
  }

  .close-btn {
    top: 20px;
    right: 25px;
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 15px;
  }

  .hero {
    min-height: 300px;
    padding: 30px 15px;
  }

  .hero-overlay {
    padding: 20px 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .tagline {
    font-size: 12px;
  }

  /* Single column on mobile */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  #chatbot {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
  }

  .category-list {
    gap: 15px;
  }

  .category-item {
    padding: 20px;
  }
}