* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Tahoma, Arial, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.8;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1150px, 92%);
  margin: auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 14px;
}

.brand h1 {
  font-size: 24px;
  color: #a66a00;
  margin-bottom: 2px;
}

.brand p {
  font-size: 13px;
  color: #777;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #333;
  font-weight: 700;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c78500;
}

.menu-toggle {
  display: none;
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  background:
    linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.96)),
    #fff;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #fff3d9;
  color: #9b6200;
  border: 1px solid #f2d28a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 15px;
}

.hero-text h2 {
  font-size: 42px;
  line-height: 1.4;
  color: #222;
  margin-bottom: 14px;
}

.hero-text p {
  color: #666;
  font-size: 17px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: #c78500;
  color: #fff;
}

.btn-primary:hover {
  background: #a96f00;
}

.btn-light {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.btn-light:hover {
  background: #f7f7f7;
}

.hero-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section {
  padding: 70px 0;
}

.alt {
  background: #fcfcfc;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head.right {
  text-align: right;
}

.section-head h3 {
  font-size: 32px;
  color: #222;
  margin-bottom: 8px;
}

.section-head p {
  color: #777;
  font-size: 16px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.tab-btn {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background: #c78500;
  color: #fff;
  border-color: #c78500;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.food-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.food-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.food-info {
  padding: 16px;
}

.food-info h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.food-info p {
  color: #666;
  font-size: 15px;
  min-height: 54px;
}

.price {
  display: inline-block;
  margin-top: 10px;
  background: #fff6e6;
  color: #a96f00;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-text {
  color: #555;
  margin-bottom: 16px;
  font-size: 16px;
}

.features {
  list-style: none;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  color: #333;
}

.about-image {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.contact-item h4 {
  margin-bottom: 8px;
  color: #a96f00;
  font-size: 20px;
}

.contact-item p {
  color: #555;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #ececec;
  margin-top: 30px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.footer h4 {
  color: #a96f00;
  margin-bottom: 6px;
}

.footer p {
  color: #666;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #333;
  font-weight: 700;
}

.footer-links a:hover {
  color: #c78500;
}

.copyright {
  text-align: center;
  color: #777;
  border-top: 1px solid #f1f1f1;
  padding: 14px 10px;
  font-size: 14px;
}

.page-header {
  padding: 60px 0 30px;
  background: #fcfcfc;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.page-header h2 {
  font-size: 34px;
  color: #222;
}

.page-content {
  padding: 50px 0;
}

.content-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.content-card h3 {
  margin-bottom: 12px;
  color: #a96f00;
}

.content-card p,
.content-card li {
  color: #555;
}

.content-card ul {
  padding-right: 18px;
}

.back-home {
  display: inline-block;
  margin-top: 20px;
  color: #c78500;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h2 {
    font-size: 32px;
  }

  .hero-card img,
  .about-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    right: 4%;
    left: 4%;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    padding: 40px 0;
  }

  .section {
    padding: 50px 0;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .section-head h3 {
    font-size: 26px;
  }
}
.delete-form {
  margin-top: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #222;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #c78500;
  box-shadow: 0 0 0 3px rgba(199, 133, 0, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}