/* ==========================================================================
   LR Pickles & Savories — style.css
   Palette:
     --bg        #0A0A0A  (near-black background)
     --bg-alt    #151515  (card background)
     --bg-alt-2  #1E1E1E  (raised card / hover background)
     --lime      #9ACD32  (main accent — buttons, headings, borders)
     --lime-dark #6FA524  (hover state for lime)
     --yellow    #FFD400  (small highlights only — badges, underlines)
     --white     #FFFFFF  (body copy / headings)
     --muted     #B3B3B3  (secondary text)
   Type:
     Headings — 'Poppins' (bold, modern, geometric)
     Body     — 'Inter'
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root{
  --bg:#0A0A0A;
  --bg-alt:#151515;
  --bg-alt-2:#1E1E1E;
  --lime:#9ACD32;
  --lime-dark:#6FA524;
  --lime-soft: rgba(154,205,50,0.12);
  --yellow:#FFD400;
  --white:#FFFFFF;
  --muted:#B3B3B3;
  --muted-dim:#7A7A7A;
  --line: rgba(154,205,50,0.18);
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 20px 45px rgba(0,0,0,0.55);
}

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

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--muted);
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }

h1,h2,h3,h4{
  font-family:'Poppins', sans-serif;
  color:var(--white);
  margin:0 0 0.4em;
  line-height:1.15;
  font-weight:800;
}

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

section{ padding:100px 0; position:relative; }
@media (max-width:720px){ section{ padding:68px 0; } }

.eyebrow{
  display:inline-block;
  font-family:'Poppins', sans-serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-size:0.75rem;
  color:var(--lime);
  margin-bottom:12px;
}
.eyebrow.yellow{ color:var(--yellow); }

.section-head{
  max-width:640px;
  margin:0 auto 52px;
  text-align:center;
}
.section-head h2{ font-size:clamp(1.9rem, 4.2vw, 2.6rem); }
.section-head p{ color:var(--muted); margin-top:8px; font-size:1.02rem; }

/* ------------------------------ buttons -------------------------------- */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:15px 28px;
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:0.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-3px); }
.btn:active{ transform:translateY(-1px); }

.btn-lime{
  background:var(--lime);
  color:#0A0A0A;
  box-shadow:0 10px 26px rgba(154,205,50,0.28);
}
.btn-lime:hover{ background:var(--yellow); box-shadow:0 12px 30px rgba(255,212,0,0.3); }

.btn-outline{
  background:transparent;
  border-color:var(--lime);
  color:var(--lime);
}
.btn-outline:hover{ background:var(--lime-soft); border-color:var(--yellow); color:var(--yellow); }

.btn-block{ width:100%; }
.btn-sm{ padding:11px 20px; font-size:0.85rem; }

/* --------------------------------- nav ---------------------------------- */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,10,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  max-width:1180px;
  margin:0 auto;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Poppins', sans-serif;
  font-weight:900;
  font-size:1.4rem;
  color:var(--white);
}
.logo .mark{
  width:38px; height:38px;
  border-radius:10px;
  background:var(--lime);
  color:#0A0A0A;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
  flex-shrink:0;
}
.logo .name span{ color:var(--lime); }

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:0.92rem;
}
.nav-links a{
  color:var(--muted);
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--lime);
  transition:width .2s ease;
}
.nav-links a:hover{ color:var(--white); }
.nav-links a:hover::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  background:none;
  border:1px solid var(--line);
  color:var(--white);
  border-radius:10px;
  width:42px; height:42px;
  font-size:1.2rem;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:4px;
  background:var(--bg-alt);
  border-top:1px solid var(--line);
  padding:12px 24px 20px;
}
.mobile-menu a{
  padding:12px 4px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  color:var(--muted);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover{ color:var(--lime); }
.mobile-menu.is-open{ display:flex; }

@media (max-width:880px){
  .nav-links{ display:none; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-actions .btn span.long{ display:none; }
}

/* --------------------------------- hero ---------------------------------- */

.hero{
  padding:64px 0 40px;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute;
  top:-10%; right:-10%;
  width:480px; height:480px;
  background:radial-gradient(circle, rgba(154,205,50,0.16), transparent 70%);
  z-index:0;
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:1;
}
@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .hero-media{ order:-1; }
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--lime-soft);
  border:1px solid var(--line);
  color:var(--lime);
  border-radius:999px;
  padding:8px 16px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:0.78rem;
  letter-spacing:0.04em;
  margin-bottom:22px;
}

.hero h1{
  font-size:clamp(2.4rem, 5.6vw, 3.6rem);
  font-weight:900;
  letter-spacing:-0.01em;
}
.hero h1 .lime{ color:var(--lime); }
.hero h1 .yellow{ color:var(--yellow); }

.hero-script{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:1.15rem;
  color:var(--white);
  opacity:0.85;
  margin-bottom:18px;
}

.hero-sub{
  color:var(--muted);
  font-size:1.05rem;
  max-width:48ch;
  margin-bottom:32px;
}

.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-media-badge{
  position:absolute;
  bottom:18px; left:18px;
  background:rgba(10,10,10,0.82);
  border:1px solid var(--lime);
  color:var(--lime);
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:0.78rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  padding:8px 14px;
  border-radius:999px;
  backdrop-filter:blur(6px);
}

/* ------------------------------ trust strip ------------------------------- */

.trust-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-top:56px;
}
@media (max-width:760px){ .trust-strip{ grid-template-columns:repeat(2, 1fr); } }

.trust-item{
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:20px 18px;
  display:flex;
  align-items:center;
  gap:12px;
  transition:transform .2s ease, border-color .2s ease;
}
.trust-item:hover{ transform:translateY(-4px); border-color:var(--lime); }
.trust-item .icon{
  width:38px; height:38px;
  border-radius:10px;
  background:var(--lime-soft);
  color:var(--lime);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  font-size:1.05rem;
}
.trust-item span{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:0.92rem;
  color:var(--white);
}

/* -------------------------------- products -------------------------------- */

.products-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
@media (max-width:940px){ .products-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }

.product-card{
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
  border-color:var(--lime);
}

.product-image{
  aspect-ratio:4/5;
  overflow:hidden;
  background:#000;
  position:relative;
}
.product-image img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.product-card:hover .product-image img{ transform:scale(1.06); }

.product-body{
  padding:24px 24px 26px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.product-body h3{ font-size:1.3rem; margin-bottom:8px; }
.product-body p{ color:var(--muted); font-size:0.95rem; margin-bottom:20px; flex:1; }

/* -------------------------------- samosa menu ------------------------------ */

.menu-panel{
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:44px;
  box-shadow:var(--shadow);
}
@media (max-width:640px){ .menu-panel{ padding:28px 20px; } }

.menu-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  border-bottom:1px solid var(--line);
  padding-bottom:22px;
  margin-bottom:8px;
}
.menu-panel-head h3{ margin:0; font-size:1.6rem; }
.menu-panel-head span{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  color:var(--lime);
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
}

.menu-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4px 32px;
}
@media (max-width:640px){ .menu-grid{ grid-template-columns:1fr; } }

.menu-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 0;
  border-bottom:1px dashed rgba(255,255,255,0.1);
}
.menu-row-name{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  color:var(--white);
  font-size:1.02rem;
}
.menu-badge{
  background:var(--yellow);
  color:#0A0A0A;
  font-family:'Poppins', sans-serif;
  font-weight:800;
  font-size:0.6rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  padding:3px 8px;
  border-radius:6px;
  margin-left:8px;
  vertical-align:middle;
}
.menu-row-fill{ flex:1; border-bottom:1px dotted rgba(255,255,255,0.18); transform:translateY(-5px); }
.menu-row-price{
  font-family:'Poppins', sans-serif;
  font-weight:800;
  color:#0A0A0A;
  background:var(--lime);
  padding:6px 14px;
  border-radius:8px;
  font-size:0.95rem;
}

.menu-panel-footer{
  margin-top:30px;
  display:flex;
  justify-content:center;
}

/* -------------------------------- services -------------------------------- */

.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
@media (max-width:940px){ .services-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .services-grid{ grid-template-columns:1fr; } }

.service-card{
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px 22px;
  transition:transform .2s ease, border-color .2s ease;
}
.service-card:hover{ transform:translateY(-5px); border-color:var(--lime); }
.service-icon{
  width:48px; height:48px;
  border-radius:12px;
  background:var(--lime-soft);
  color:var(--lime);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
  font-size:1.3rem;
}
.service-card h4{ font-size:1.05rem; margin-bottom:8px; }
.service-card p{ font-size:0.9rem; color:var(--muted); margin:0; }

/* ---------------------------------- about ---------------------------------- */

.about{
  background:var(--bg-alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.about-inner{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
@media (max-width:900px){ .about-inner{ grid-template-columns:1fr; } }

.about-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.about-text h2{ font-size:clamp(1.9rem, 4vw, 2.5rem); }
.about-text p{ font-size:1.05rem; color:var(--muted); margin-bottom:18px; }
.about-signoff{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  color:var(--white);
  margin-top:24px;
}
.about-signoff span{ color:var(--lime); }

/* --------------------------------- contact ---------------------------------- */

.contact-panel{
  background:linear-gradient(155deg, var(--bg-alt-2), var(--bg-alt));
  border:1px solid var(--lime);
  border-radius:var(--radius-lg);
  padding:60px 40px;
  text-align:center;
  max-width:820px;
  margin:0 auto;
}
@media (max-width:640px){ .contact-panel{ padding:40px 22px; } }

.contact-panel h2{ font-size:clamp(1.8rem, 4vw, 2.4rem); }
.contact-details{
  display:flex;
  justify-content:center;
  gap:34px;
  flex-wrap:wrap;
  margin:26px 0 32px;
}
.contact-detail{ text-align:left; }
.contact-detail .label{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:0.7rem;
  color:var(--lime);
  margin-bottom:4px;
}
.contact-detail .value{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  color:var(--white);
  font-size:1.1rem;
}

/* ---------------------------------- footer ---------------------------------- */

.footer{
  border-top:1px solid var(--line);
  padding:36px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.footer-logo{
  font-family:'Poppins', sans-serif;
  font-weight:800;
  color:var(--white);
  font-size:1.05rem;
}
.footer-logo span{ color:var(--lime); }
.footer-note{ font-size:0.85rem; color:var(--muted-dim); max-width:40ch; }
.footer-tags{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--lime);
}

/* ------------------------------ floating whatsapp ---------------------------- */

.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:200;
  width:60px; height:60px;
  border-radius:50%;
  background:var(--lime);
  color:#0A0A0A;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(154,205,50,0.45);
  font-size:1.6rem;
  transition:transform .2s ease, background .2s ease;
  animation:wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover{ transform:scale(1.08); background:var(--yellow); }

@keyframes wa-pulse{
  0%, 100%{ box-shadow:0 12px 30px rgba(154,205,50,0.45); }
  50%{ box-shadow:0 12px 30px rgba(154,205,50,0.75), 0 0 0 10px rgba(154,205,50,0.08); }
}

@media (max-width:640px){
  .wa-float{ right:16px; bottom:16px; width:56px; height:56px; }
}

/* -------------------------------- reveal animation ---------------------------- */

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .wa-float{ animation:none; }
}

:focus-visible{
  outline:2px solid var(--lime);
  outline-offset:3px;
}
