* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: white;
  color: #1e1e1e;
  scroll-behavior: smooth;
}

/* container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.section {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* header / navbar */
.navbar {
  background: #000000dd;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  border-bottom: 2px solid #10be00;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #10be00;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5b042;
}

/* hero inner page */
.hero-menu {
  background: linear-gradient(115deg, #1f1c18 0%, #2f281e 100%);
  padding: 70px 0 80px;
  text-align: center;
  color: white;
}

.hero-menu h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-menu h1 span {
  color: #10be00;
}

.hero-menu p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 16px auto 0;
  opacity: 0.9;
}

/* menu section - detailed cards */
.menu-detailed {
  padding: 80px 0;
  background: #fff9f2;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1f1c18;
}

.section-title p {
  color: #6b5a4a;
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.1rem;
}

.menu-category {
  margin-bottom: 70px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  border-left: 6px solid #f5b042;
  padding-left: 20px;
}

.category-header i {
  font-size: 2rem;
  color: #d97917;
}

.category-header h3 {
  font-size: 2rem;
  font-weight: 800;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.menu-item-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  border: 1px solid #94ff8a;
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
  border-color: #10be00;
}

.item-img {
  height: 200px;
  background: #f2e5d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #b97f3a;
  background-image: linear-gradient(145deg, #f7ede2, #f5e6d6);
}

.item-content {
  padding: 24px 24px 28px;
}

.item-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.item-img {
  width: 100%;
  aspect-ratio: 16 / 9; /* or 2/1 to match original 400x200 */
  overflow: hidden;
}

.item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-title h4 {
  font-size: 1.5rem;
  font-weight: 800;
}

.price {
  background: #f5b04220;
  padding: 4px 12px;
  border-radius: 40px;
  font-weight: 800;
  color: #c26317;
  font-size: 1rem;
}

.item-desc {
  color: #5e4b38;
  margin: 12px 0;
  line-height: 1.4;
}

.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  background: #fff0e2;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #b45f2b;
}

.badge-hot {
  background: #10be00;
  color: #1e1e1e;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

/* GALLERY SECTION */
.gallery-section {
  background: #fef7ef;
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.25s;
  cursor: pointer;
  text-align: center;
  border: 1px solid #ffe1c2;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e9dbcf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #a57248;
}

.gallery-caption {
  padding: 16px;
  font-weight: 600;
  background: white;
}

/* CTA order */
.order-cta {
  background: #1e1a15;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.btn-primary {
  background: linear-gradient(45deg, #f5b042, #f77737);
  color: #1e1e1e;
  padding: 14px 34px;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #f5b042, #f77737);
  transform: scale(1.02);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #f5b042;
  color: #f5b042;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
/* footer */
footer {
  background: #0f0f0c;
  padding: 48px 0 24px;
  color: #cbcbcb;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #f5b042;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.footer-col a {
  color: #dddddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #10be00;
}

.copyright {
  text-align: center;
  border-top: 1px solid #2a2a24;
  padding-top: 28px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .nav-flex {
    flex-direction: column;
  }
  .strip-flex {
    justify-content: center;
  }
  .container {
    padding: 0 20px;
  }
}

button,
.btn-primary,
.btn-outline,
.btn-map,
.btn-follow {
  cursor: pointer;
}

.whatsapp-order {
  background: #25d366;
  border: none;
}

/* modal for gallery */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.2s;
}
.close-modal:hover {
  color: #f5b042;
}
