/* ============================================================
   Atharva Catering — Pure Veg Catering
   Brand stylesheet · Built by 5P Media
   ============================================================ */

:root {
  --maroon: #7A2D1A;
  --maroon-dark: #5e2114;
  --gold: #C9962F;
  --gold-light: #e0b65a;
  --green: #2E7D32;
  --cream: #FBF4E6;
  --cream-2: #f5e9d2;
  --ink: #3A2418;
  --ink-soft: #6b5544;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(58, 36, 24, 0.12);
  --shadow-sm: 0 4px 14px rgba(58, 36, 24, 0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Mukta", "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--maroon);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.3rem; }

a { color: var(--maroon); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }

.center { text-align: center; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.08rem; }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--sans);
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn-primary { background: var(--maroon); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--maroon-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--maroon-dark); }
.btn-gold:hover { background: var(--gold-light); color: var(--maroon-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }

/* ---------- Veg mark ---------- */
.veg-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border: 2px solid var(--green);
  border-radius: 3px; vertical-align: middle;
}
.veg-mark::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.veg-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,125,50,.12); color: var(--green);
  padding: 6px 14px; border-radius: 50px; font-weight: 700; font-size: .85rem;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251, 244, 230, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(122,45,26,.10);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-emblem {
  width: 70px; height: 56px; /* aspect ~1.24:1 to match logo.png */
  background: url("../images/logo.png") center/contain no-repeat;
  color: transparent; font-size: 0; text-indent: -9999px;
  border: none; border-radius: 0; flex: 0 0 auto;
}
/* The logo image already shows the brand name, so hide the text version
   beside it — but keep it reachable for screen readers / SEO. */
.brand-text {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  clip-path: inset(50%); white-space: nowrap; border: 0;
}
.brand-text { line-height: 1.1; }
.brand-text strong { font-family: var(--serif); color: var(--maroon); font-size: 1.25rem; display: block; }
.brand-text span { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 9px 14px; border-radius: 8px; color: var(--ink);
  font-weight: 600; font-size: .97rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon); background: rgba(201,150,47,.14); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; gap: 5px;
  justify-content: center; align-items: center;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--maroon); border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(58,36,24,.62), rgba(58,36,24,.72)),
    url("https://images.unsplash.com/photo-1567188040759-fb8a883dc6d8?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.hero h1 { color: #fff; margin: 14px 0 18px; max-width: 900px; margin-inline: auto; }
.hero .veg-pill { background: rgba(255,255,255,.15); color: #cdebcf; }
.hero .veg-mark { border-color: #7bd17f; }
.hero .veg-mark::after { background: #7bd17f; }
.hero p { font-size: 1.2rem; color: #f3e8d6; max-width: 680px; margin: 0 auto 32px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  background: linear-gradient(rgba(122,45,26,.85), rgba(94,33,20,.9)),
    url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff; text-align: center; padding: 90px 0 80px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #f3e8d6; margin-top: 12px; font-size: 1.15rem; }
.breadcrumb { font-size: .9rem; color: #e7c98f; margin-top: 16px; }
.breadcrumb a { color: #e7c98f; }

/* ============================================================
   Promise strip
   ============================================================ */
.promise-strip { background: var(--maroon); color: #fff; padding: 0; }
.promise-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.promise-item {
  padding: 34px 26px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.promise-item:last-child { border-right: none; }
.promise-item .ico { font-size: 1.8rem; margin-bottom: 10px; }
.promise-item strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.05rem; margin-bottom: 6px; }
.promise-item p { font-size: .92rem; color: #f0e3d2; margin: 0; }

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(201,150,47,.15);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-body { padding: 26px; }
.card .ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,150,47,.15); color: var(--maroon);
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
.card-img { height: 200px; object-fit: cover; width: 100%; }

.alt-bg { background: var(--cream-2); }
.maroon-bg { background: var(--maroon); color: #fff; }
.maroon-bg h2, .maroon-bg h3 { color: #fff; }

/* ---------- Welcome / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; object-fit: cover; max-height: 480px; }

/* ---------- Stat chips ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 30px; }
.stat {
  background: #fff; border-radius: var(--radius); padding: 24px 34px;
  text-align: center; box-shadow: var(--shadow-sm); min-width: 150px;
  border-bottom: 4px solid var(--gold);
}
.stat .num { font-family: var(--serif); font-size: 2.4rem; color: var(--maroon); font-weight: 700; }
.stat .label { font-size: .9rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Dish teaser ---------- */
.dish { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.dish img { height: 240px; width: 100%; object-fit: cover; transition: transform .4s; }
.dish:hover img { transform: scale(1.07); }
.dish .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(58,36,24,.85));
  color: #fff; padding: 30px 18px 16px; font-family: var(--serif); font-weight: 600;
}

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; position: relative; }
.step .circle {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--gold); color: var(--maroon-dark);
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-soft); font-size: .92rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.quote {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold);
}
.quote .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.quote p { font-style: italic; color: var(--ink); margin-bottom: 16px; }
.quote .who { font-weight: 700; color: var(--maroon); font-style: normal; }
.quote .who span { display: block; font-weight: 400; font-size: .88rem; color: var(--ink-soft); }

/* ============================================================
   Menu page
   ============================================================ */
.menu-cat {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,150,47,.18);
}
.menu-cat h3 {
  background: var(--maroon); color: #fff; padding: 16px 22px; margin: 0;
  display: flex; align-items: center; gap: 10px; font-size: 1.15rem;
}
.menu-cat h3 .ico { color: var(--gold-light); }
.menu-cat ul { list-style: none; padding: 18px 22px; }
.menu-cat li { padding: 7px 0; border-bottom: 1px dashed rgba(122,45,26,.12); color: var(--ink-soft); }
.menu-cat li:last-child { border-bottom: none; }
.callout {
  background: rgba(46,125,50,.10); border: 1px solid rgba(46,125,50,.3);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.callout h3 { color: var(--green); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.filter-btn {
  padding: 9px 20px; border-radius: 50px; border: 2px solid var(--maroon);
  background: transparent; color: var(--maroon); font-weight: 700; cursor: pointer;
  font-family: var(--sans); transition: .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--maroon); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure {
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery-grid img { height: 260px; width: 100%; object-fit: cover; transition: transform .4s; }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figure::after {
  content: "⛶"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: #fff; font-size: 1.6rem; opacity: 0; transition: .3s;
}
.gallery-grid figure:hover::after { opacity: .9; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(26,15,8,.92); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .close { position: absolute; top: 20px; right: 28px; color: #fff; font-size: 2.4rem; cursor: pointer; background: none; border: none; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid rgba(122,45,26,.22);
  border-radius: var(--radius-sm); font-family: var(--sans); font-size: 1rem; background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { display: none; background: rgba(46,125,50,.12); color: var(--green); padding: 14px; border-radius: var(--radius-sm); margin-top: 16px; font-weight: 600; }
.form-msg.show { display: block; }

.info-panel { background: var(--maroon); color: #fff; border-radius: var(--radius); padding: 34px; }
.info-panel h3 { color: var(--gold-light); }
.info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.info-item:last-child { border-bottom: none; }
.info-item .ico { font-size: 1.3rem; color: var(--gold-light); }
.info-item a { color: #fff; }
.info-item a:hover { color: var(--gold-light); }
.info-item small { display: block; color: #e7c98f; text-transform: uppercase; letter-spacing: 1px; font-size: .72rem; }
.map-wrap { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff; text-align: center; padding: 70px 0;
}
.cta-band h2 { color: #fff; margin-bottom: 22px; }
.cta-band .hero-btns { margin-top: 4px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #2b1a10; color: #d8c4ac; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 40px; }
.footer-brand .brand-emblem {
  width: 200px; height: 150px;
  /* logo art is built for light backgrounds — sit it on a cream card */
  background-color: var(--cream);
  background-origin: content-box;
  padding: 16px; border-radius: 14px;
}
.footer-brand .brand-text strong { color: var(--gold-light); font-size: 1.5rem; }
.footer-brand p { margin-top: 16px; color: #b39d84; max-width: 320px; }
.fssai { display: inline-block; margin-top: 16px; background: rgba(46,125,50,.2); color: #9bd89f; padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: .9rem; }
.site-footer h4 { color: var(--gold-light); font-family: var(--serif); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #d8c4ac; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { margin-bottom: 10px; font-size: .95rem; }
.footer-contact a { color: #d8c4ac; }
.social { display: flex; gap: 12px; margin-top: 16px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: var(--gold-light); font-size: 1.1rem;
}
.social a:hover { background: var(--gold); color: var(--maroon-dark); }
.footer-bottom { text-align: center; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: #9c876e; }

/* ============================================================
   Floating buttons
   ============================================================ */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 1500; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 1.5rem; box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: transform .2s;
}
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-wa { background: #25D366; }
.float-call { background: var(--maroon); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-item:nth-child(2) { border-right: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links {
    position: fixed; top: 76px; right: 0; height: calc(100vh - 76px);
    width: 78%; max-width: 320px; background: var(--cream);
    flex-direction: column; align-items: stretch; padding: 24px;
    gap: 4px; box-shadow: -8px 0 30px rgba(0,0,0,.15);
    transform: translateX(100%); transition: transform .3s; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-cta { margin: 12px 0 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4, .promise-grid, .steps, .gallery-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0; }
  body { font-size: 16px; }
}
