/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
background: #f4f4f4;
  color: #333;
}

.about p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #111;
  position: sticky;
  top: 0;
  color: #fff;
  z-index: 100;
}

.nav h2 {
  color: #ff6600;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav a {
  text-decoration: none;
  margin: 0 10px;
  color: #eee;
  font-size: 14px;
}

.nav a:hover {
  color: #ff6600;
}

/* HERO */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('dr-muhammad-amer-77ItGP98s6g-unsplash.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  margin: 10px 0 20px;
}

.hero-buttons a {
  padding: 12px 24px;
  background: #ff6600;
  color: #fff;
  border-radius: 999px;
  margin: 5px;
  text-decoration: none;
}

#searchInput {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 25px;
  border: 1px solid #ccc;
}

/* MENU */
.menu {
  padding: 40px 20px;
}

.menu h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* SECTIONS */
.menu-section {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 40px 20px;
}

.menu-section h3 {
  color: #ff6600;
  margin-bottom: 15px;
}

/* GRID */
.food-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* CARD */
.food-item {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 15px;
}

.food-item h4 {
  margin-bottom: 6px;
}

.food-item p {
  font-size: 13px;
  color: #666;
}

.food-item span {
  color: #ff6600;
  font-weight: 600;
}

/* BUTTON */
.food-item button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: none;
  background: #ff6600;
  color: #fff;
  border-radius: 999px;
}

/* COLLAPSIBLE */
details {
  margin-top: 10px;
  padding: 10px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

/* CART */
.cart {
  background: #fff;
  margin: 30px 20px;
  padding: 20px;
  border-radius: 16px;
}

/* WhatsApp Order Button ONLY */
.cart > button {
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 999px;
}

/* Cart items container */
#cart-items {
  margin-bottom: 15px;
}

/* Each cart item row */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  gap: 15px;
}

/* Item text (name + price) */
.cart-item span {
  flex: 1;
  font-size: 14px;
  color: #333;
  word-break: break-word;
}

/* Green circular remove button - MORE SPECIFIC */
.cart-item .remove-btn {
  background: #25D366 !important;  /* Force green */
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50% !important;  /* Force circle */
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
  padding: 0;  /* Remove default padding */
}

/* Turn red on hover/tap */
.cart-item .remove-btn:hover,
.cart-item .remove-btn:active {
  background: #ff4444 !important;  /* Force red on hover */
}

/* Empty cart message */
#cart-items p {
  color: #999;
  text-align: center;
  padding: 20px;
}

/* CONTACT */
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
}

.contact-top {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-bottom {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-btn {
  padding: 12px;
  border-radius: 50%;
  color: #fff;
}

.contact-btn.call { background: #ff6600; }
.contact-btn.instagram { background: #e1306c; }
.contact-btn.facebook { background: #1877f2; }
.contact-btn.email { background: #555; }
.contact-btn.map {
  border-radius: 999px;
  padding: 12px 20px;
  background: #333;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #777;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 24px;
  }
}
