/* ══════════════════════════════════════
   KABABI MENU PAGE — menu.css
   Aklikx Technologies
══════════════════════════════════════ */

/* ── HERO ── */
.menu-hero {
  padding-top: 65px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: black;
  position: relative;
  overflow: hidden;
}
.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(192,161,89,.03) 0 1px, transparent 1px 48px);
}
.menu-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.menu-hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}
.menu-hero-eyebrow {
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.menu-hero-eyebrow::before,
.menu-hero-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.menu-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 7vw, 78px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 12px;
}
.menu-hero h1 em { font-style: italic; color: var(--gold); }
.menu-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── CATEGORY NAV ── */
.cat-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,25,16,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  overflow-x: auto;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  white-space: nowrap;
}
.cat-link {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(240,230,208,.58);
  text-decoration: none;
  padding: 14px 16px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.cat-link:hover { color: var(--cream); }
.cat-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── SECTION LAYOUT ── */
.menu-section {
  padding: 60px 60px;
  overflow: visible;
  max-width: 100vw;
  overflow-x: hidden;
}
.section-outer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0;
  align-items: start;
}
.menu-section:nth-child(even) .section-outer {
  grid-template-columns: 1fr 50%;
}
.menu-section:nth-child(even) .left-col { order: 2; }
.menu-section:nth-child(even) .right-col { order: 1; }

/* ── INFO CARD ── */
.info-card {
  background: rgba(255,255,255,0.62);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
  overflow: hidden;
}
.sec-header { padding: 24px 28px 18px; }
.sec-eyebrow { display: none; }
.sec-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.0;
}
.sec-title em { font-style: normal; font-weight: 900; }
.sec-sub {
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.items-list { padding: 0 28px; }
.item-entry {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 0;
}
.item-entry:last-child { border-bottom: none; padding-bottom: 20px; }
.item-entry:first-child { padding-top: 20px; }
.item-mobile-img {
  display: none;
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.13);
}
.item-body { flex: 1; min-width: 0; }
.item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.item-name {
  font-family: 'Maven Pro', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.item-price {
  font-family: 'Maven Pro', sans-serif;
  font-size: 18px;
  font-weight: 900;
}
.item-price small {
  display: block;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  text-align: right;
  margin-top: 1px;
  opacity: .62;
}
.item-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 4px; }
.item-desc {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  opacity: 0.85;
}
.tag-badge {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 500;
}
.tag-fav { background: rgba(192,161,89,.15); border: 1px solid rgba(192,161,89,.4); color: #9A7830; }
.tag-veg { background: rgba(63,150,60,.12); border: 1px solid rgba(63,150,60,.35); color: #2E7832; }
.tag-spicy { background: rgba(180,60,40,.12); border: 1px solid rgba(180,60,40,.3); color: #B03020; }
.tag-gf { background: rgba(130,90,180,.12); border: 1px solid rgba(130,90,180,.3); color: #7050A0; }

/* ── RIGHT IMAGE PANEL ── */
.right-col { position: relative; overflow: visible !important; }
.img-slot {
  position: absolute;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: box-shadow 0.3s ease;
  will-change: transform, opacity;
}
.img-slot.ready { pointer-events: auto; }
.img-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  border-radius: 0;
}
.img-slot:hover img { transform: scale(1.08); }
.img-slot.hovered {
  transform: scale(1.15) !important;
  z-index: 10;
  transition: transform 0.2s cubic-bezier(0.34,1.36,0.64,1), box-shadow 0.3s ease !important;
}
.active-item .item-desc {
  opacity: 1 !important;
  transform: translateX(4px);
  transition: opacity .25s ease, transform .25s ease;
}

/* ── SLIDE ANIMATIONS ── */
.slide-in-left { opacity: 0; transform: translateX(-36px); transition: opacity .55s ease, transform .55s ease; }
.slide-in-right { opacity: 0; transform: translateX(36px); transition: opacity .55s ease, transform .55s ease; }
.slide-in-left.vis, .slide-in-right.vis { opacity: 1; transform: translateX(0); }

/* ══ SECTION COLORS ══ */
#dips { background: #003E2D; color: #F5F0E8; }
#dips .sec-title { font-weight: 700; color: #F5F0E8; }
#dips .sec-title em { color: #C0A159; font-weight: 800; }
#dips .item-name { font-weight: 600; color: #F5F0E8; }
#dips .item-desc { opacity: 0.80; color: #F5F0E8; }

#appetizers { background: #C0A159; color: #000000; }
#appetizers .sec-title { font-weight: 700; color: #000000; }
#appetizers .sec-title em { color: #003E2D; font-weight: 800; }
#appetizers .item-name { font-weight: 600; color: #000000; }
#appetizers .item-desc { opacity: 0.80; color: #000000; }

#kabobs { background: #F5F0E8; color: #000000; }
#kabobs .sec-title { font-weight: 700; color: #000000; }
#kabobs .sec-title em { color: #003E2D; font-weight: 800; }
#kabobs .item-name { font-weight: 600; color: #000000; }
#kabobs .item-desc { opacity: 0.80; color: #000000; }

#stews { background: #3c3a3a; color: #F5F0E8; }
#stews .sec-title { font-weight: 700; color: #F5F0E8; }
#stews .sec-title em { color: #C0A159; font-weight: 800; }
#stews .item-name { font-weight: 600; color: #F5F0E8; }
#stews .item-desc { opacity: 0.80; color: #F5F0E8; }

#rice { background: #C0A159; color: #000000; }
#rice .sec-title { font-weight: 700; color: #000000; }
#rice .sec-title em { color: #003E2D; font-weight: 800; }
#rice .item-name { font-weight: 600; color: #000000; }
#rice .item-desc { opacity: 0.80; color: #000000; }

#platters { background: #003E2D; color: #F5F0E8; }
#platters .sec-title { font-weight: 700; color: #F5F0E8; }
#platters .sec-title em { color: #C0A159; font-weight: 800; }
#platters .item-name { font-weight: 600; color: #F5F0E8; }
#platters .left-col { width: 100% !important; max-width: 100% !important; }
#platters .section-outer { display: block !important; }
#platters .right-col { display: none !important; }
#platters .platter-deals-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  align-items: stretch;
}
#platters .platter-deal-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(192,161,89,0.45) !important;
  border-radius: 10px !important;
  padding: 20px 20px 42px !important;
  position: relative;
  display: flex;
  flex-direction: column;
}
#platters .platter-deal-header { display: flex !important; justify-content: space-between !important; align-items: flex-start !important; margin-bottom: 4px; }
#platters .item-name { color: #F5F0E8 !important; font-size: 17px !important; font-weight: 900 !important; text-transform: uppercase; letter-spacing: 0.6px; white-space: nowrap; }
#platters .item-price { color: #C0A159 !important; font-size: 18px !important; font-weight: 900 !important; white-space: nowrap; }
#platters .platter-serves { color: #C0A159; font-size: 14.5px; margin: 0 0 14px; opacity: 0.8; }
#platters .platter-divider { border: none; border-top: 1px solid rgba(192,161,89,0.3); margin: 0 0 14px; }
#platters .platter-item-list { list-style: none; padding: 0; margin: 0; flex: 1; }
#platters .platter-item-list li { color: #F5F0E8; font-size: 17px; padding: 5px 0; display: flex; gap: 10px; align-items: baseline; opacity: 0.92; border-bottom: 1px solid rgba(255,255,255,0.05); }
#platters .platter-item-list li:last-child { border-bottom: none; }
#platters .platter-item-list li::before { content: "—"; color: #C0A159; flex-shrink: 0; font-size: 11px; }
#platters .platter-save-badge { position: absolute; bottom: 16px; right: 16px; background: #C0A159; color: #1a1a08; font-size: 13px; font-weight: 900; padding: 6px 16px; border-radius: 5px; text-transform: uppercase; letter-spacing: 0.5px; }

#wraps { background: #F5F0E8; color: #000000; }
#wraps .sec-title { font-weight: 700; color: #000000; }
#wraps .item-name { font-weight: 600; color: #000000; }
#wraps .item-desc { opacity: 0.80; color: #000000; }

#handhelds { background: #F5F0E8; color: #000000; }
#handhelds .sec-title { font-weight: 700; color: #000000; }
#handhelds .sec-title em { color: #C0A159; font-weight: 800; }
#handhelds .item-name { font-weight: 600; color: #000000; }
#handhelds .item-desc { opacity: 0.80; color: #000000; }

#desserts { background: #3c3a3a; color: #F5F0E8; }
#desserts .sec-title { font-weight: 700; color: #F5F0E8; }
#desserts .sec-title em { color: #C0A159; font-weight: 800; }
#desserts .section-outer { display: block !important; }
#desserts .left-col { width: 100% !important; max-width: 100% !important; flex: unset !important; }
#desserts .right-col { display: none !important; }
#desserts .items-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; border-top: 1px solid rgba(255,255,255,0.12) !important; }
#desserts .menu-col { border-right: 1px solid rgba(255,255,255,0.12) !important; padding: 0 28px 0 0 !important; }
#desserts .menu-col:first-child { padding-left: 0 !important; }
#desserts .menu-col:nth-child(2) { padding: 0 28px !important; }
#desserts .menu-col:last-child { border-right: none !important; padding: 0 0 30px 28px !important; }
#desserts .item-row { display: flex !important; justify-content: space-between !important; align-items: flex-start !important; padding: 14px 32px !important; gap: 12px !important; }
#desserts .item-row-inner { flex: 1 !important; }
#desserts .item-name { font-size: 16px !important; font-weight: 900 !important; color: #F5F0E8 !important; text-transform: uppercase !important; display: block !important; line-height: 1.3 !important; }
#desserts .item-desc { font-size: 16px !important; color: rgba(245,240,232,0.5) !important; margin-top: 4px !important; font-style: italic !important; font-weight: 400 !important; }
#desserts .item-price { font-size: 14px !important; font-weight: 900 !important; color: #C0A159 !important; white-space: nowrap !important; }

#drinks { background: #C0A159; color: #000000; }
#drinks .sec-title { font-weight: 700; color: #000000; }
#drinks .sec-title em { color: #003E2D; font-weight: 800; }
#drinks .item-name { font-weight: 600; color: #000000; }
#drinks .item-desc { opacity: 0.75; color: #000000; }

/* active item hover highlights */
.active-item .item-name { color: #C0A159 !important; }
#appetizers .active-item .item-name,
#rice .active-item .item-name,
#drinks .active-item .item-name { color: #003E2D !important; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 64px 60px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 100vw;
  overflow-x: hidden;
}
.cta-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3vw,46px); font-weight: 300; color: var(--cream); line-height: 1.2; }
.cta-banner h3 em { font-style: italic; color: var(--gold); }
.cta-banner p { font-size: 17px; font-weight: 300; color: var(--cream-dim); margin-top: 6px; }
.btn-primary-menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .3s, transform .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-primary-menu:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ══ MOBILE ══ */
@media (max-width: 900px) {
  .menu-hero { padding-top: 64px; min-height: 220px; }
  .menu-hero-inner { padding: 32px 20px; }
  .menu-hero h1 { font-size: clamp(32px,10vw,52px); }
  .menu-hero-desc { font-size: 12px; }
  .cat-nav-inner { padding: 0 12px; }
  .cat-link { font-size: 9.5px; padding: 12px 10px; letter-spacing: 1.5px; }
  .menu-section { padding: 28px 14px; }
  .section-outer { grid-template-columns: 1fr !important; gap: 0; }
  .left-col { order: 1 !important; width: 100% !important; }
  .right-col { display: none !important; }
  .info-card { border-radius: 14px; overflow: hidden; }
  .sec-header { padding: 18px 16px 12px; }
  .sec-title { font-size: clamp(28px,9vw,46px) !important; line-height: 1.0; }
  .items-list { padding: 0 14px; }
  .item-entry { flex-direction: column !important; gap: 10px; padding: 16px 0; border-bottom: 1px solid rgba(128,128,128,0.15); }
  .item-entry:last-child { border-bottom: none; padding-bottom: 16px; }
  .item-mobile-img { display: block; width: 72px; height: 72px; border-radius: 10px; object-fit: cover; flex-shrink: 0; box-shadow: 0 3px 10px rgba(0,0,0,0.15); }
  .item-name { font-size: 14px !important; letter-spacing: 0.3px; line-height: 1.2; }
  .item-price { font-size: 14px !important; white-space: nowrap; flex-shrink: 0; }
  .item-desc { font-size: 12px !important; line-height: 1.5; opacity: 0.82; }
  .cta-banner { padding: 36px 16px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-banner h3 { font-size: clamp(18px,5.5vw,26px); }
  .btn-primary-menu { padding: 13px 26px; font-size: 10px; letter-spacing: 2px; width: 100%; justify-content: center; }
  #platters .platter-deals-grid { grid-template-columns: 1fr !important; gap: 14px; }
  #platters .platter-deal-card { padding: 16px 16px 52px !important; }
  #platters .item-name { font-size: 14px !important; white-space: normal !important; }
  #desserts .items-grid { grid-template-columns: 1fr !important; border-top: 1px solid rgba(255,255,255,0.12) !important; }
  #desserts .menu-col { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; padding: 0 !important; }
  #desserts .menu-col:last-child { border-bottom: none !important; }
  #desserts .item-row { padding: 11px 14px !important; }
}
@media (max-width: 480px) {
  .menu-section { padding: 22px 10px; }
  .sec-title { font-size: clamp(24px,8.5vw,36px) !important; }
  .item-mobile-img { width: 180px; height: 160px; border-radius: 8px; }
  .footer-main { grid-template-columns: 1fr !important; gap: 24px !important; padding: 24px 14px !important; }
}
