/* ---------- Root + Reset ---------- */
:root{
  --bg: #fff7ea;          /* warm cream */
  --bg2:#fff1d6;          /* lighter saffron tint */
  --ink:#1f1a14;          /* deep brown */
  --muted:#5b4d41;
  --brand:#c98b1f;        /* mustard */
  --brand2:#9d3c2c;       /* chilli */
  --leaf:#1f5e4b;         /* deep green */
  --card:#ffffffcc;
  --border:#e8d9c3;
  --shadow: 0 18px 50px rgba(25,15,8,.12);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(201,139,31,.18), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, rgba(31,94,75,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), #fff);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button{font:inherit}
::selection{background:rgba(201,139,31,.25)}

/* ---------- Layout helpers ---------- */
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.section{padding: 70px 0}
.grid{display:grid; gap:24px}

/* ---------- Top Nav ---------- */
.topbar{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(255,247,234,.92), rgba(255,247,234,.72));
  border-bottom: 1px solid rgba(232,217,195,.7);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}


.brand{
  display:flex; align-items:center; gap:10px;
  font-weight: 800; letter-spacing:.2px;
}
.brand .dot{
  width:12px; height:12px; border-radius:999px;
  background: conic-gradient(from 120deg, var(--brand), var(--brand2), var(--leaf), var(--brand));
  box-shadow: 0 8px 22px rgba(201,139,31,.35);
}
.navlinks{
  display:flex; gap:18px; align-items:center;
}
.navlinks a{
  padding:10px 12px; border-radius:999px;
  color:var(--muted);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.navlinks a:hover{
  background: rgba(201,139,31,.12);
  color: var(--ink);
  transform: translateY(-1px);
}
.navlinks a.active{
  background: rgba(31,94,75,.12);
  color: var(--ink);
  border: 1px solid rgba(31,94,75,.18);
}

.hamburger{
  display:none;
  width:46px; height:42px;
  border-radius: 14px;
  border:1px solid rgba(232,217,195,.9);
  background: rgba(255,255,255,.6);
  box-shadow: 0 12px 30px rgba(25,15,8,.06);
}
.hamburger span{
  display:block; width:20px; height:2px; margin:5px auto;
  background: var(--ink); border-radius: 4px;
  transition: transform .2s ease, opacity .2s ease;
}
.mobilepanel{
  display:none;
  padding: 10px 0 16px;
}
.mobilepanel a{
  display:block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}
.mobilepanel a:hover{background: rgba(201,139,31,.12); color:var(--ink)}

/* ---------- Hero / Banner ---------- */
.hero{
  position: relative;
  border-bottom: 1px solid rgba(232,217,195,.7);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(110deg, rgba(255,247,234,.95), rgba(255,247,234,.80) 45%, rgba(31,94,75,.10)),
    url("https://static.wixstatic.com/media/9d48a5de41d24f18b66930e09a19726c.jpg/v1/fill/w_980,h_736,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/9d48a5de41d24f18b66930e09a19726c.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.03);
}
.hero::after{
  content:"";
  position:absolute; inset:-40px;
  background:
    radial-gradient(420px 220px at 10% 15%, rgba(201,139,31,.30), transparent 60%),
    radial-gradient(520px 260px at 90% 20%, rgba(157,60,44,.22), transparent 62%),
    radial-gradient(620px 280px at 65% 85%, rgba(31,94,75,.18), transparent 60%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  padding: 78px 0 64px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(232,217,195,.9);
  box-shadow: 0 14px 40px rgba(25,15,8,.10);
}
.kicker .pulse{
  width:10px; height:10px; border-radius:999px;
  background: var(--brand2);
  box-shadow: 0 0 0 0 rgba(157,60,44,.55);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(157,60,44,.55)}
  70%{box-shadow:0 0 0 14px rgba(157,60,44,0)}
  100%{box-shadow:0 0 0 0 rgba(157,60,44,0)}
}
.hero h1{
  margin: 18px 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.6px;
}
.hero p{
  margin: 0 0 22px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(232,217,195,.95);
  background: rgba(255,255,255,.65);
  box-shadow: 0 14px 40px rgba(25,15,8,.10);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-2px); box-shadow: 0 22px 55px rgba(25,15,8,.14)}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), #f3c45a);
  border-color: rgba(201,139,31,.55);
}
.btn.primary:hover{background: linear-gradient(135deg, #d89a2a, #f6ce73)}
.btn.secondary{
  background: linear-gradient(135deg, rgba(31,94,75,.12), rgba(31,94,75,.02));
  border-color: rgba(31,94,75,.18);
}
.smallnote{margin-top:14px; color:rgba(91,77,65,.9); font-size:.95rem}

/* ---------- Home Section 2 split ---------- */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:stretch;
}
.card{
  background: var(--card);
  border: 1px solid rgba(232,217,195,.9);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card.pad{padding: 22px}
.card h2{margin: 0 0 10px; letter-spacing:-.2px}
.card p{margin:0; color:var(--muted); line-height:1.65}

.thali{
  height: 100%;
  min-height: 380px;
  position:relative;
}
.thali img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.02);
  filter: saturate(1.03);
}
.thali .shine{
  position:absolute; inset:-30%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35), transparent 70%);
  transform: translateX(-40%) rotate(12deg);
  animation: shine 7s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shine{
  0%{transform: translateX(-55%) rotate(12deg)}
  55%{transform: translateX(35%) rotate(12deg)}
  100%{transform: translateX(55%) rotate(12deg)}
}

/* ---------- Menu ---------- */
.pagehead{
  padding: 46px 0 18px;
}
.pagehead h1{margin:0 0 8px; letter-spacing:-.5px}
.pagehead p{margin:0; color:var(--muted); max-width: 72ch}

.tabs{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:16px;
}
.tab{
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(232,217,195,.95);
  background: rgba(255,255,255,.55);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.tab:hover{transform: translateY(-1px)}
.tab.active{
  background: linear-gradient(135deg, rgba(31,94,75,.18), rgba(31,94,75,.06));
  border-color: rgba(31,94,75,.24);
}

.menu-section{
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed rgba(91,77,65,.22);
}
.menu-section h2{
  margin: 18px 0 6px;
  font-size: 1.35rem;
}
.dish{
  border-radius: var(--radius);
  border: 1px solid rgba(232,217,195,.9);
  background: rgba(255,255,255,.55);
  overflow:hidden;
  box-shadow: 0 18px 44px rgba(25,15,8,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.dish:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(25,15,8,.14);
}
.dish .thumb{
  height: 160px;
  background: #fff;
}
.dish .thumb img{width:100%; height:100%; object-fit:cover}
.dish .body{padding: 14px 14px 16px}
.dish .name{font-weight: 750; margin: 0 0 6px}
.dish .desc{margin:0 0 10px; color: var(--muted); line-height:1.45; font-size: .96rem}
.dish .row{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.badge{
  font-size:.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(232,217,195,.95);
  background: rgba(255,255,255,.6);
  color: rgba(91,77,65,.95);
}
.price{
  font-weight: 800;
  color: var(--ink);
}

/* ---------- Contact ---------- */
.contact-wrap{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items:stretch;
}
.list{
  display:grid; gap:10px;
  margin-top: 10px;
}
.item{
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(232,217,195,.9);
  background: rgba(255,255,255,.55);
}
.item .k{font-size:.85rem; color: rgba(91,77,65,.85)}
.item .v{font-weight: 750; margin-top: 2px}
.map{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(232,217,195,.9);
  box-shadow: var(--shadow);
  min-height: 380px;
}
.map iframe{width:100%; height:100%; border:0}

/* ---------- Policy pages ---------- */
.prose{
  background: rgba(255,255,255,.58);
  border:1px solid rgba(232,217,195,.9);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 22px;
}
.prose h1{margin: 0 0 10px}
.prose h2{margin: 18px 0 8px}
.prose p, .prose li{color: var(--muted); line-height: 1.7}
.prose ul{margin: 10px 0 0}

/* ---------- Footer ---------- */
footer{
  margin-top: 70px;
  border-top: 1px solid rgba(232,217,195,.7);
  background: linear-gradient(180deg, rgba(255,247,234,.2), rgba(255,247,234,.65));
}
.footer-inner{
  padding: 22px 0;
  display:flex; flex-wrap:wrap; gap:12px;
  align-items:center; justify-content:space-between;
  color: rgba(91,77,65,.92);
}
.footer-inner .links{
  display:flex; gap:10px; flex-wrap:wrap;
}
.footer-inner .links a{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(232,217,195,.9);
  background: rgba(255,255,255,.45);
}

/* ---------- Reveal Animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .split{grid-template-columns: 1fr}
  .thali{min-height: 320px}
  .contact-wrap{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  .navlinks{display:none}
  .hamburger{display:block}
  .mobilepanel{display:block}
  .hero-inner{padding: 60px 0 46px}
}

/* --- Logo alignment patch (left aligned, bigger logo) --- */
.nav{
  justify-content:space-between;
}
.brand{
  margin-left:0;
}
.brand img{
  height:64px;
  width:auto;
}

/* --- Floating WhatsApp Button --- */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(232,217,195,.95);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(25,15,8,.16);
  backdrop-filter: blur(10px);
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(25,15,8,.18);
}
.wa-dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #7CFFB2, #25D366 65%, #128C7E);
  box-shadow: 0 10px 24px rgba(18,140,126,.25);
}
.wa-text{
  font-weight: 750;
  letter-spacing: .1px;
}
@media (max-width: 480px){
  .wa-text{display:none;}
  .wa-float{padding: 12px 14px;}
}


.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:14px;
}
@media (max-width: 980px){
  .menu-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .menu-grid{ grid-template-columns: 1fr; }
}

/* --- Menu card layout patch --- */
.dish{display:flex; flex-direction:column;}
.thumb{height:190px;}
.thumb img{display:block;}
.dish .body{flex:1; display:flex; flex-direction:column;}
.dish .row{margin-top:auto;}

/* --- Menu Subcategory Buttons --- */
.subtabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 10px;
}
.subtab{
  padding:8px 14px;
  border-radius:999px;
  border:1.5px solid var(--brand);
  font-weight:600;
  font-size:14px;
  color:var(--brand);
  background:#fff7ec;
  transition:.2s ease;
}
.subtab:hover{
  background:var(--brand);
  color:#fff;
}
