/* ============================================================
   FOOD OF NEPAL PAGE — page-specific styles
   ============================================================ */

/* ------ Split-screen editorial hero ------ */
.food-editorial-hero {
  display: flex;
  height: 90vh;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
}

.food-hero-photo {
  flex: 0 0 55%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #1c0f02;
}

.food-hero-panel {
  flex: 1;
  background: #1c0f02;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 52px;
  position: relative;
}

.food-hero-back {
  position: absolute;
  top: 28px;
  left: 52px;
  color: rgba(255,248,240,0.42);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.food-hero-back:hover { color: rgba(255,248,240,0.85); }

.food-hero-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d97706;
  margin-bottom: 20px;
}

.food-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff8f0;
  margin: 0 0 22px;
}

.food-hero-desc {
  font-size: 0.92rem;
  color: rgba(255,248,240,0.58);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 340px;
}

.food-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.food-hero-pill {
  display: inline-block;
  padding: 6px 15px;
  border: 1px solid rgba(217,119,6,0.35);
  border-radius: 20px;
  color: #d97706;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.food-hero-pill:hover {
  background: #d97706;
  color: #fff;
  border-color: #d97706;
}

/* ------ Section colour bands ------ */
.food-sec--warm {
  background: #fef8f2 !important;
  border-color: #fde8c8 !important;
}

.food-sec--dark {
  background: #1a0c03 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.food-sec--dark h2 {
  color: #fff8f0 !important;
}

.food-sec--dark .visa-section-title p,
.food-sec--dark > p {
  color: rgba(255,248,240,0.58);
}

.food-sec--dark .food-drink-card {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.09) !important;
}

.food-sec--dark .food-drink-icon { filter: brightness(1.15); }

.food-sec--dark .food-drink-body h4 { color: #fcd34d; }

.food-sec--dark .food-drink-body p { color: rgba(255,248,240,0.62); }

.food-sec--dark .section-tag {
  background: rgba(217,119,6,0.18) !important;
  color: #fbbf24 !important;
}

/* Amber section tag on warm + on the whole food page */
.food-sec--warm .section-tag {
  background: rgba(217,119,6,0.1) !important;
  color: #92400e !important;
}

/* ------ Amber sidebar identity ------ */
.food-visa-grid .visa-sidebar-card {
  background: #fef9f2;
  border-color: #f5e0bc;
}

.food-visa-grid .visa-sidebar-card h3 {
  color: #92400e;
  border-bottom-color: #fde8c8;
}

.food-visa-grid .visa-sidebar-card--tip {
  background: #fff7ed;
  border-color: #fed7aa;
}

.food-visa-grid .visa-sidebar-card--tip h3 { color: #92400e; }

.food-visa-grid .food-phrase-nep { color: #d97706; }

/* ------ Landscape dish cards ------ */
.food-dish-grid--landscape {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.food-dish-card--landscape {
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  height: 152px;
}

.food-dish-card--landscape .food-dish-img {
  width: 152px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 0;
}

.food-dish-card--landscape .food-dish-img img {
  border-radius: 0;
  height: 100%;
}

.food-dish-card--landscape:hover .food-dish-img img {
  transform: scale(1.07);
}

.food-dish-card--landscape .food-dish-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ------ Content wrapper ------ */
.food-visa-grid {
  padding: 48px 0 64px;
}

/* ------ Dish cards ------ */
.food-dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 10px;
}

.food-dish-grid--photo {
  grid-template-columns: repeat(3, 1fr);
}

.food-dish-card--photo {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.food-dish-img {
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.food-dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.food-dish-card--photo:hover .food-dish-img img {
  transform: scale(1.06);
}

.food-dish-card--photo .food-dish-body {
  padding: 14px 16px 18px;
}

.food-dish-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}

.food-dish-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
}

.food-dish-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.food-dish-body h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.food-dish-body .food-dish-sub {
  font-size: 0.76rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.food-dish-body p {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ------ Featured dish (Newari / Dal Bhat highlight) ------ */
.food-featured {
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e8 100%);
  border: 1px solid #f5e8c8;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 28px;
}

.food-featured-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.food-featured-header .food-big-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.food-featured-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.food-featured-header span {
  font-size: 0.82rem;
  color: #888;
}

.food-featured p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.68;
  margin: 0 0 14px;
}

.food-featured-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.food-featured-item {
  background: #fff;
  border: 1px solid #f0e0c0;
  border-radius: 8px;
  padding: 10px 13px;
}

.food-featured-item strong {
  display: block;
  font-size: 0.87rem;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.food-featured-item span {
  font-size: 0.79rem;
  color: #666;
  line-height: 1.4;
}

/* ------ Regional grid ------ */
.food-region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.food-region-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}

.food-region-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
}

.food-region-header {
  padding: 14px 18px;
  color: #fff;
}

.food-region-header h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}

.food-region-header span {
  font-size: 0.76rem;
  opacity: .85;
}

.food-region-body {
  padding: 14px 18px;
}

.food-region-body p {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 10px;
}

.food-region-dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.food-region-tag {
  display: inline-block;
  background: #f4f5f8;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.76rem;
  color: #444;
  font-weight: 500;
}

/* ------ Street food grid ------ */
.food-street-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.food-street-card {
  background: #f8f9fc;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  transition: transform .2s, box-shadow .2s;
}

.food-street-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.food-street-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  line-height: 1;
}

.food-street-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.food-street-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2a7a4a;
  margin-bottom: 6px;
}

.food-street-card p {
  font-size: 0.81rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* ------ Drinks section ------ */
.food-drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.food-drink-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 18px;
  background: #fff;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.food-drink-icon {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
}

.food-drink-body h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.food-drink-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.69rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.food-drink-badge--nonalc { background: #d1fae5; color: #065f46; }
.food-drink-badge--alc    { background: #fee2e2; color: #991b1b; }
.food-drink-badge--hot    { background: #fff3cd; color: #856404; }

.food-drink-body p {
  font-size: 0.81rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* ------ Etiquette two-col ------ */
.food-etiq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.food-etiq-col {
  border-radius: 10px;
  padding: 18px;
}

.food-etiq-col--do   { background: #f0fdf4; border: 1px solid #bbf7d0; }
.food-etiq-col--dont { background: #fef2f2; border: 1px solid #fecaca; }

.food-etiq-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0,0,0,.06);
}

.food-etiq-col--do   h4 { color: #166534; }
.food-etiq-col--dont h4 { color: #991b1b; }

.food-etiq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.food-etiq-list li {
  font-size: 0.83rem;
  color: #444;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.food-etiq-col--do   .food-etiq-list li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.food-etiq-col--dont .food-etiq-list li::before { content: '✕'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

/* ------ Sidebar: price guide ------ */
.food-price-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.food-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.82rem;
  gap: 8px;
}

.food-price-list li:last-child { border-bottom: none; }

.food-price-label { color: #444; }
.food-price-val   { font-weight: 600; color: #1a1a1a; white-space: nowrap; }

/* ------ Sidebar: must-try list ------ */
.food-musttry-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.food-musttry-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.82rem;
}

.food-musttry-list li:last-child { border-bottom: none; }

.food-musttry-list .mt-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1.3; }
.food-musttry-list .mt-body { color: #444; line-height: 1.4; }
.food-musttry-list .mt-body strong { color: #1a1a1a; display: block; font-size: 0.83rem; }
.food-musttry-list .mt-body span  { font-size: 0.78rem; color: #888; }

/* ------ Sidebar: phrase table ------ */
.food-phrase-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.food-phrase-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.81rem;
}

.food-phrase-list li:last-child { border-bottom: none; }

.food-phrase-nep {
  font-weight: 600;
  color: var(--nepal-red, #DC143C);
  width: 100px;
  flex-shrink: 0;
  line-height: 1.4;
}

.food-phrase-eng { color: #444; line-height: 1.4; }

/* ------ Responsive ------ */
@media (max-width: 900px) {
  .food-editorial-hero  { flex-direction: column; height: auto; max-height: none; }
  .food-hero-photo      { flex: 0 0 300px; width: 100%; }
  .food-hero-panel      { padding: 36px 28px 44px; }
  .food-hero-back       { top: 16px; left: 28px; }
  .food-dish-grid--landscape { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .food-hero-photo      { flex: 0 0 240px; }
  .food-dish-grid       { grid-template-columns: 1fr; }
  .food-region-grid     { grid-template-columns: 1fr; }
  .food-street-grid     { grid-template-columns: 1fr 1fr; }
  .food-drinks-grid     { grid-template-columns: 1fr; }
  .food-etiq-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .food-hero-title          { font-size: 2.4rem; }
  .food-dish-card--landscape { height: 120px; }
  .food-dish-card--landscape .food-dish-img { width: 120px; }
  .food-street-grid         { grid-template-columns: 1fr; }
}
