:root {
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --bg-dark: #fffbeb;
  --bg-card: #ffffff;
  --bg-card-hover: #fef3c7;
  --text-main: #292524;
  --text-sub: #78716c;
  --primary-color: #b45309;
  --primary-hover: #92400e;
  --accent-color: #d97706;
  --border-color: #fde68a;
  --placeholder-bg: rgba(180, 83, 9, 0.05);
  --placeholder-border: rgba(180, 83, 9, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* Wireframe Visual Placeholder */
.wireframe-image-placeholder {
  width: 100%; height: 100%; min-height: 140px;
  background: var(--placeholder-bg); border: 2px dashed var(--placeholder-border);
  border-radius: var(--radius-md); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--primary-color);
  gap: 0.5rem; font-weight: 700; font-size: 0.85rem; padding: 1rem;
  text-align: center;
}
.wireframe-image-placeholder i { font-size: 2.2rem; opacity: 0.9; }

.mini-thumb { min-height: 65px; font-size: 0.7rem; }
.mini-thumb i { font-size: 1.2rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; border-radius: var(--radius-sm); font-weight: 800;
  font-size: 0.85rem; cursor: pointer; border: none; transition: all 0.25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(180, 83, 9, 0.3); }
.btn-outline { border: 1px solid var(--border-color); color: var(--primary-color); background: #ffffff; }
.btn-outline:hover { background: var(--primary-color); color: #fff; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.95rem; }

.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(180, 83, 9, 0.1); color: var(--primary-color);
  border: 1px solid rgba(180, 83, 9, 0.25); padding: 0.35rem 0.9rem;
  border-radius: 20px; font-size: 0.75rem; font-weight: 800; margin-bottom: 1.25rem;
}

/* Header */
.header { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; padding: 1.1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.header-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.2rem; color: var(--text-main); }
.logo-icon { width: 36px; height: 36px; background: var(--primary-color); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; }
.nav { display: flex; gap: 2rem; }
.nav-link { font-size: 0.85rem; font-weight: 700; color: var(--text-sub); }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }

/* Search Widget */
.search-widget-bar { margin: 2rem 0; }
.search-input-wrap { position: relative; max-width: 100%; }
.search-icon { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--primary-color); font-size: 1.1rem; }
.search-input { width: 100%; padding: 0.9rem 1rem 0.9rem 3rem; background: #ffffff; border: 1px solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-main); font-family: inherit; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.search-input:focus { outline: none; border-color: var(--primary-color); }

/* Hero Section */
.hero-section { padding: 2.5rem 0; margin-bottom: 2rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.headline { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--text-main); }
.supporting-text { color: var(--text-sub); font-size: 1.05rem; }
.hero-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.hero-dish-card { height: 180px; box-shadow: var(--shadow); }

/* Info Bar Section */
.info-bar-section { margin-bottom: 2.5rem; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-box { background: #ffffff; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow); }
.box-title { font-size: 1.1rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.5rem; }
.box-lines { color: var(--text-sub); font-size: 0.9rem; }
.location-header { display: flex; gap: 1rem; align-items: center; }
.location-icon-box { width: 44px; height: 44px; background: rgba(180, 83, 9, 0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 1.3rem; }

/* View Menu Banner */
.view-menu-banner { background: #ffffff; border: 1px dashed var(--border-color); border-radius: var(--radius-md); padding: 2rem; margin-bottom: 3.5rem; box-shadow: var(--shadow); }

/* Menu Section */
.menu-section { padding: 3rem 0; }
.section-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text-main); }
.accent-line { width: 50px; height: 3px; background: var(--primary-color); margin-bottom: 2rem; border-radius: 2px; }
.menu-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; }
.menu-items-list { display: flex; flex-direction: column; gap: 1.25rem; }
.menu-item-row { background: #ffffff; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.25rem; display: flex; gap: 1.25rem; align-items: center; box-shadow: var(--shadow); }
.menu-item-thumb { width: 65px; height: 65px; flex-shrink: 0; }
.menu-item-details { flex-grow: 1; }
.item-header { display: flex; justify-content: space-between; margin-bottom: 0.35rem; }
.item-name { font-size: 1.05rem; font-weight: 700; color: var(--text-main); }
.item-price { font-size: 1.05rem; font-weight: 800; color: var(--primary-color); }
.item-desc { color: var(--text-sub); font-size: 0.85rem; }
.large-menu-placeholder { min-height: 300px; box-shadow: var(--shadow); }

/* Contact Section */
.contact-section { padding: 4rem 0; border-top: 1px solid var(--border-color); margin-top: 3rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; }
.contact-line { margin-bottom: 0.75rem; color: var(--text-sub); font-size: 0.95rem; }
.contact-line i { color: var(--primary-color); margin-right: 0.5rem; }
.contact-subgrid { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-subtext h4 { font-size: 1.1rem; margin-bottom: 0.35rem; color: var(--text-main); }
.contact-subtext p { color: var(--text-sub); font-size: 0.9rem; }
.contact-placeholder { min-height: 160px; box-shadow: var(--shadow); }

/* Footer */
.footer { background: #ffffff; border-top: 1px solid var(--border-color); padding: 2rem 0; color: var(--text-sub); font-size: 0.85rem; }

@media (max-width: 900px) {
  .hero-grid, .info-grid, .menu-grid, .contact-grid { grid-template-columns: 1fr; }
  .headline { font-size: 2.2rem; }
  .nav { display: none; }
}

/* Global Mobile Viewport Overflow Protection */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, svg, video, iframe, canvas {
  max-width: 100%;
  height: auto;
}
