:root {
  --primary: #ff6f00;
  --secondary: #fff3e6;
  --dark: #2d2d2d;
  --muted: #777;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #fafafa;
  color: var(--dark);
}

/* HEADER */
header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 48px;
  object-fit: contain;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}
nav a:hover { color: var(--primary); }

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
}
.mobile-nav a {
  padding: 14px 20px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 600;
  border-bottom: 1px solid #f1f1f1;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav.active { display: flex; }
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 20px;
}
.hero-content { max-width: 1200px; margin: auto; }
.hero h1 { font-size: 48px; margin-bottom: 12px; }
.hero p { font-size: 20px; max-width: 600px; }
.hero .badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--primary);
  border-radius: 20px;
  font-size: 14px;
}
.btn-primary { background:#ff6f00;color:#fff;padding:14px 22px;border-radius:8px;text-decoration:none;font-weight:600;margin-right:12px; }
.btn-secondary { background:#fff;color:#ff6f00;padding:14px 22px;border-radius:8px;text-decoration:none;font-weight:600; }
.btn-order { display:inline-block;margin-top:12px;background:#ff6f00;color:#fff;padding:10px 18px;border-radius:6px;text-decoration:none; }

/* SECTIONS */
.section { max-width: 1200px; margin: auto; padding: 60px 20px; }
.section-header { margin-bottom: 40px; }
.section-header h2 { font-size: 34px; margin-bottom: 8px; }
.section-header p { color: var(--muted); font-size: 16px; }

.menu-wrapper { overflow-x: auto; display: flex; gap: 20px; }
.menu-wrapper::-webkit-scrollbar { height: 8px; }
.menu-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.menu-wrapper::-webkit-scrollbar-track { background: #f0f0f0; }

.menu-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  min-width: 260px;
}
.menu-card img{
	width: 80px;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.menu-card h3 { margin: 12px 0 8px; font-size: 20px; }
.menu-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.tag { display: inline-block; margin-top: 12px; padding: 4px 10px; background: var(--secondary); color: var(--primary); border-radius: 12px; font-size: 12px; font-weight: 600; }
.delivery-logo { height: 60px; margin-bottom: 10px; object-fit: contain; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* GALLERY */
.gallery-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 20s linear infinite;
}

.gallery-item {
  min-width: 260px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-wrapper:hover .gallery-track {
  animation-play-state: paused;
}


.about-box { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); max-width: 900px; }
.contact-card { background: #fff; padding: 24px; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
footer { background: #1f1f1f; color: #bbb; text-align: center; padding: 20px; font-size: 14px; }
.whatsapp-link { position:fixed;bottom:90px;right:20px;width:56px;height:56px;background:#25D366;border-radius:50%;box-shadow:0 8px 20px rgba(0,0,0,0.3);display:flex;align-items:center;justify-content:center;text-decoration:none;z-index:999; }
.whatsapp-link img { width:28px;height:28px;object-fit:contain; }