/* =============================================
   Sate Madura Pak Solichin — style.css
   Warm street food: oranye #e65100 + kuning #ffd54f di bg krem
   ============================================= */

:root {
  --primary: #e65100;
  --primary-dark: #bf360c;
  --primary-light: #ff8a50;
  --accent: #ffd54f;
  --accent-dark: #f9a825;
  --bg: #fff8f0;
  --bg-alt: #fff3e0;
  --bg-dark: #fbe9c8;
  --text: #1a1200;
  --text-light: #5a3e00;
  --text-muted: #8d6e00;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(230,81,0,0.12);
  --shadow-lg: 0 6px 30px rgba(230,81,0,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --font: -apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding-top: 88px; /* demo-bar + header */
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* =====================
   DEMO BAR
   ===================== */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.demo-bar a {
  color: var(--accent);
  text-decoration: underline;
  margin: 0 4px;
}
.demo-bar a:hover { color: #fff; }

/* =====================
   HEADER / NAV
   ===================== */
header {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(230,81,0,0.15);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
  font-weight: 800;
}
.logo-text span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Checkbox hack menu */
#nav-toggle { display: none; }

.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-label span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav ul li a {
  display: block;
  padding: 7px 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--bg-alt);
  color: var(--primary);
  text-decoration: none;
}

.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 7px 16px !important;
}
.btn-nav:hover {
  background: var(--primary-dark) !important;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(230,81,0,0.3);
}
.btn-accent {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* =====================
   SECTION COMMONS
   ===================== */
section { padding: 60px 20px; }
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-title span { color: var(--primary); }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 560px;
}
.section-label {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, #1a0800 0%, #3e1000 40%, #6d2000 100%);
  color: var(--white);
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(230,81,0,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,213,79,0.08) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,213,79,0.18);
  color: var(--accent);
  border: 1px solid rgba(255,213,79,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--white);
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  max-width: 420px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--accent);
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* SVG sate illustration area */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sate-illustration {
  width: 100%;
  max-width: 380px;
}

/* =====================
   SVG / CSS ART
   ===================== */
/* Bara api animasi */
@keyframes flicker {
  0%,100% { opacity:1; transform: scaleY(1); }
  50% { opacity:0.75; transform: scaleY(0.92); }
}
@keyframes float-up {
  0% { transform: translateY(0) scaleX(1); opacity:0.7; }
  100% { transform: translateY(-30px) scaleX(0.5); opacity:0; }
}
.flame { animation: flicker 0.7s ease-in-out infinite alternate; }
.smoke { animation: float-up 2s ease-out infinite; }

/* =====================
   SIGNATURE / MENU CARDS
   ===================== */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.sig-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--bg-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}
.sig-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sig-icon {
  width: 60px; height: 60px;
  background: var(--bg-dark);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sig-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.sig-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.sig-price {
  margin-top: 14px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}

/* =====================
   BUMBU SECTION
   ===================== */
.bumbu-section {
  background: linear-gradient(135deg, #3e1000 0%, #6d2000 100%);
  color: var(--white);
}
.bumbu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bumbu-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bumbu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.bumbu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.bumbu-dot {
  width: 36px; height: 36px;
  background: rgba(255,213,79,0.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.bumbu-item strong { display: block; font-size: 15px; color: var(--accent); font-weight: 700; }
.bumbu-item span { font-size: 13px; color: rgba(255,255,255,0.72); }

/* =====================
   PAKET / CATERING
   ===================== */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.paket-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 2px solid var(--bg-dark);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.paket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.paket-card.featured {
  border-color: var(--primary);
}
.paket-badge {
  position: absolute;
  top: -14px; right: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
}
.paket-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.paket-card .paket-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.paket-price {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}
.paket-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.paket-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.paket-features li {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.paket-features li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================
   CTA STRIP
   ===================== */
.cta-strip {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================
   MENU PAGE
   ===================== */
.menu-hero {
  background: linear-gradient(135deg, #1a0800 0%, #6d2000 100%);
  color: var(--white);
  padding: 60px 20px 48px;
  text-align: center;
}
.menu-hero h1 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight:900; margin-bottom:10px; }
.menu-hero p { font-size:16px; color:rgba(255,255,255,0.8); max-width:500px; margin:0 auto; }

.menu-nav {
  background: var(--white);
  border-bottom: 1px solid var(--bg-dark);
  position: sticky;
  top: 88px;
  z-index: 99;
}
.menu-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-nav-inner::-webkit-scrollbar { height: 3px; }
.menu-nav-inner::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.menu-nav a {
  white-space: nowrap;
  padding: 14px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2.5px solid transparent;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.menu-nav a:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }

.menu-section { padding: 48px 20px; }
.menu-section:nth-child(even) { background: var(--bg-alt); }
.menu-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--bg-dark);
  max-width: 200px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--bg-dark);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-item-icon {
  width: 52px; height: 52px;
  background: var(--bg-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.menu-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.menu-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}
.menu-item .price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-top: auto;
}
.menu-item .price-note {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* =====================
   TENTANG PAGE
   ===================== */
.tentang-hero {
  background: linear-gradient(135deg, #2d0800 0%, #6d2000 100%);
  color: var(--white);
  padding: 60px 20px 52px;
}
.tentang-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tentang-hero h1 { font-size: clamp(1.8rem,4vw,2.5rem); font-weight:900; line-height:1.2; margin-bottom:14px; }
.tentang-hero h1 span { color: var(--accent); }
.tentang-hero p { font-size:15px; color:rgba(255,255,255,0.82); line-height:1.7; margin-bottom:12px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
}
.tl-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.tl-year {
  min-width: 60px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent);
  padding-top: 2px;
}
.tl-dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  position: relative;
}
.tl-dot::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: rgba(255,213,79,0.25);
}
.tl-item:last-child .tl-dot::after { display: none; }
.tl-content strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 3px; }
.tl-content span { font-size: 13px; color: rgba(255,255,255,0.68); }

.penghargaan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.award-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1.5px solid rgba(230,81,0,0.15);
}
.award-icon { margin: 0 auto 12px; }
.award-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--primary); }
.award-card p { font-size: 13px; color: var(--text-light); }

.nilai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.nilai-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.nilai-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.nilai-card p { font-size: 13px; color: var(--text-light); }

/* =====================
   GALERI PAGE
   ===================== */
.galeri-hero {
  background: linear-gradient(135deg, #1a0800 0%, #6d2000 100%);
  color: var(--white);
  padding: 60px 20px 48px;
  text-align: center;
}
.galeri-hero h1 { font-size: clamp(1.8rem,4vw,2.5rem); font-weight:900; margin-bottom:10px; }
.galeri-hero p { font-size:16px; color:rgba(255,255,255,0.8); max-width:500px; margin:0 auto; }

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.galeri-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1.5px solid var(--bg-dark);
}
.galeri-art {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.galeri-caption {
  padding: 16px 18px;
}
.galeri-caption h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.galeri-caption p { font-size: 13px; color: var(--text-light); }

/* CSS Art — Sate di bara */
.art-bara {
  background: linear-gradient(180deg, #1a0800 0%, #3e1000 50%, #6d2000 100%);
  position: relative;
  width: 100%; height: 200px;
}
.bara-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,87,0,0.7) 0%, transparent 70%);
}
.tusuk-sate-art {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.tusuk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.tusuk-daging {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, #c1440e, #e65100);
  box-shadow: 0 0 6px rgba(230,81,0,0.6);
}
.tusuk-daging.lemak {
  background: linear-gradient(135deg, #d4a017, #f9a825);
}
.tusuk-stick {
  width: 3px;
  height: 50px;
  background: linear-gradient(180deg, #c8a060, #a67c42);
  border-radius: 1.5px;
}
@keyframes ember {
  0%,100% { opacity: 0.9; }
  50% { opacity: 0.4; }
}
.bara-ember {
  position: absolute;
  bottom: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: ember 1.5s ease-in-out infinite alternate;
}

/* CSS Art — Mangkuk bumbu kacang */
.art-bumbu {
  background: linear-gradient(180deg, #fff8f0 0%, #ffe0b2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mangkuk {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mangkuk-isi {
  width: 120px; height: 60px;
  background: radial-gradient(ellipse at 40% 40%, #8b4513, #5d2906);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.3);
}
.mangkuk-isi::after {
  content: '';
  position: absolute;
  top: 8px; left: 15px;
  width: 30px; height: 8px;
  background: rgba(255,213,79,0.4);
  border-radius: 50%;
  transform: rotate(-10deg);
}
.mangkuk-body {
  width: 130px; height: 50px;
  background: linear-gradient(180deg, #fff3e0, #ffe0b2);
  border-radius: 0 0 65px 65px;
  border: 2.5px solid #e65100;
  border-top: none;
}
.mangkuk-base {
  width: 60px; height: 8px;
  background: #ffe0b2;
  border: 2px solid #e65100;
  border-radius: 4px;
  margin-top: -2px;
}

/* CSS Art — Lontong */
.art-lontong {
  background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lontong-wrap {
  display: flex;
  align-items: center;
  gap: -5px;
}
.lontong-potongan {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lontong {
  width: 44px; height: 60px;
  background: linear-gradient(135deg, #f9f3dc, #f0e68c);
  border-radius: 6px;
  border: 1.5px solid #b8a030;
  position: relative;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
.lontong::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 28px; height: 28px;
  background: rgba(240,230,140,0.5);
  border-radius: 50%;
}
.lontong-daun {
  width: 8px; height: 70px;
  background: linear-gradient(180deg, #4caf50, #2e7d32);
  border-radius: 4px 4px 0 0;
  margin: 0 -4px;
  z-index: 1;
}

/* CSS Art — Asap bakaran */
.art-asap {
  background: linear-gradient(180deg, #37474f 0%, #263238 100%);
  position: relative;
  overflow: hidden;
}
.asap-api {
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.api-lidah {
  border-radius: 50% 50% 30% 30%;
  animation: flicker 0.5s ease-in-out infinite alternate;
}
.asap-cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: float-up 3s ease-out infinite;
}

/* CSS Art — Sate siap saji */
.art-sajian {
  background: linear-gradient(180deg, #fff8f0 0%, #ffe0b2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.piring {
  width: 160px; height: 80px;
  background: linear-gradient(180deg, #f5f5f5, #e0e0e0);
  border-radius: 50%;
  border: 3px solid #bdbdbd;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.sate-served {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}
.sate-tusuk-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.sate-daging-mini {
  width: 10px; height: 10px;
  background: linear-gradient(135deg, #c1440e, #e65100);
  border-radius: 2px;
}
.sate-stick-mini {
  width: 2px; height: 40px;
  background: linear-gradient(180deg, #c8a060, #a67c42);
}

/* =====================
   RESERVASI / FORM
   ===================== */
.reservasi-hero {
  background: linear-gradient(135deg, #1a0800 0%, #6d2000 100%);
  color: var(--white);
  padding: 60px 20px 52px;
  text-align: center;
}
.reservasi-hero h1 { font-size: clamp(1.8rem,4vw,2.5rem); font-weight:900; margin-bottom:10px; }
.reservasi-hero p { font-size:16px; color:rgba(255,255,255,0.8); max-width:500px; margin:0 auto; }

.form-section {
  padding: 60px 20px;
  background: var(--bg);
}
.form-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--bg-dark);
}
.form-card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label span { color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--bg-dark);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  font-family: var(--font);
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--bg-dark);
  position: sticky;
  top: 100px;
}
.info-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; color: var(--primary); }
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-item { display: flex; gap: 10px; align-items: flex-start; }
.info-icon {
  width: 32px; height: 32px;
  background: var(--bg-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item strong { display: block; font-size: 13px; font-weight: 700; }
.info-item span { font-size: 12px; color: var(--text-muted); }

.syarat-box {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 20px;
  border-left: 4px solid var(--primary);
}
.syarat-box h4 { font-size: 13px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.syarat-box ul { display: flex; flex-direction: column; gap: 5px; }
.syarat-box li {
  font-size: 12px;
  color: var(--text-light);
  padding-left: 14px;
  position: relative;
}
.syarat-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #1a0800;
  color: rgba(255,255,255,0.75);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  body { padding-top: 86px; }

  .nav-label { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
    border-top: 1px solid var(--bg-dark);
  }
  nav ul li a { padding: 12px 16px; font-size: 15px; }
  #nav-toggle:checked ~ ul { display: flex; }

  #nav-toggle:checked + .nav-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #nav-toggle:checked + .nav-label span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked + .nav-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  .bumbu-grid { grid-template-columns: 1fr; }
  .bumbu-visual { display: none; }

  .tentang-hero-inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .form-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .galeri-grid { grid-template-columns: 1fr 1fr; }

  section { padding: 44px 16px; }
  .menu-section { padding: 36px 16px; }
  .form-section { padding: 36px 16px; }
}

@media (max-width: 480px) {
  .galeri-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .paket-grid { grid-template-columns: 1fr; }
  .signature-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}
