/* Amrutha Foodex — shared styles */
:root {
  --maroon: #6e1414;
  --maroon-dark: #4d0d0d;
  --saffron: #e8891c;
  --saffron-dark: #c96f0c;
  --cream: #fff8ef;
  --cream-2: #fdefdc;
  --ink: #2a1a12;
  --muted: #7a6a5f;
  --line: #ecdcc7;
  --green: #1f7a3f;
  --shadow: 0 10px 30px rgba(80, 25, 10, 0.10);
  --radius: 16px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; color: var(--maroon-dark); }

a { color: var(--saffron-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(110, 20, 20, 0.97);
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 20px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream);
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.25); overflow: hidden;
}
.brand .mark img { width: 30px; height: 30px; display: block; }
.brand .name { font-family: Georgia, serif; font-weight: 700; font-size: 1.25rem; color: #fff; line-height: 1.05; }
.brand .name small { display: block; font-size: 0.65rem; letter-spacing: 2px; color: var(--cream-2); font-family: "Segoe UI", sans-serif; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.nav-links a { color: var(--cream-2); padding: 8px 12px; border-radius: 8px; font-size: 0.95rem; }
.nav-links a:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }
.nav-cta {
  background: var(--saffron); color: #fff !important; font-weight: 600;
  padding: 9px 16px !important; border-radius: 999px;
}
.nav-cta:hover { background: var(--saffron-dark); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(rgba(77,13,13,0.72), rgba(77,13,13,0.82)),
    radial-gradient(circle at 20% 20%, #8a2020, #4d0d0d 70%);
  color: #fff; text-align: center; padding: 80px 20px 90px;
}
.hero .badge {
  display: inline-block; background: rgba(232,137,28,0.22); border: 1px solid rgba(232,137,28,0.5);
  color: var(--cream-2); padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 20px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 14px; }
.hero p { max-width: 640px; margin: 0 auto 28px; color: #f4e4d2; font-size: 1.1rem; }
.hero .stars { color: var(--saffron); font-size: 1.2rem; margin-bottom: 6px; }

.btn {
  display: inline-block; cursor: pointer; border: 0; font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 999px; transition: transform .08s ease, background .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--saffron); color: #fff; box-shadow: 0 8px 20px rgba(232,137,28,0.35); }
.btn-primary:hover { background: var(--saffron-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color:#fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb257; color:#fff; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 8px; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 42px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card .ic { font-size: 2rem; margin-bottom: 10px; }
.card h3 { margin: 0 0 8px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--muted); }

.alt { background: var(--cream-2); }

/* ---------- Menu ---------- */
.menu-cat { margin-bottom: 40px; }
.menu-cat h3 {
  font-size: 1.4rem; color: var(--maroon); border-bottom: 2px solid var(--line);
  padding-bottom: 8px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.menu-item {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .mi-name { font-weight: 600; color: var(--ink); }
.menu-item .mi-desc { color: var(--muted); font-size: 0.9rem; display: block; font-weight: 400; }
.menu-item .mi-price { color: var(--saffron-dark); font-weight: 700; white-space: nowrap; }
.veg, .nonveg { display: inline-block; width: 12px; height: 12px; border: 1.5px solid; margin-right: 6px; position: relative; top: -1px; }
.veg { border-color: var(--green); }
.veg::after { content:""; position:absolute; inset: 2px; border-radius: 50%; background: var(--green); }
.nonveg { border-color: #a11; }
.nonveg::after { content:""; position:absolute; inset: 2px; border-radius: 50%; background: #a11; }

.note {
  background: #fff; border-left: 4px solid var(--saffron); border-radius: 8px;
  padding: 14px 18px; color: var(--muted); font-size: 0.92rem; box-shadow: var(--shadow);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item .ic { font-size: 1.5rem; }
.contact-item b { display: block; color: var(--maroon); }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 20px 60px; }
.legal h1 { font-size: 2rem; margin-bottom: 4px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.25rem; margin-top: 34px; color: var(--maroon); }
.legal p, .legal li { color: #4a3b32; }
.legal ul { padding-left: 20px; }

.page-head {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff; text-align: center; padding: 54px 20px;
}
.page-head h1 { color: #fff; margin: 0; }
.page-head p { color: var(--cream-2); margin: 8px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-dark); color: #e9d7c4; padding: 46px 0 24px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; font-family: Georgia, serif; margin: 0 0 12px; }
.site-footer a { color: #e9d7c4; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 34px; padding-top: 18px;
  text-align: center; font-size: 0.85rem; color: #c9b3a0;
}
.footer-bottom .pay { margin-top: 8px; font-size: 0.8rem; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt { margin-top: 26px; }
.pill {
  display:inline-block; background: var(--cream-2); border:1px solid var(--line);
  color: var(--maroon); border-radius: 999px; padding: 5px 12px; font-size: 0.82rem; margin: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--maroon-dark); flex-direction: column; padding: 10px 16px 18px; gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}
