/* =========================================================
   Mohammads Kitchen — static site styles
   Brand colors:
   --red:    #EC2227  (primary)
   --green:  #007D40
   --yellow: #FFD75A
   --orange: #F89D26
   --cream:  #F5F5DC
   --dark:   #231F20
   ========================================================= */

:root {
  --red: #EC2227;
  --green: #007D40;
  --yellow: #FFD75A;
  --orange: #F89D26;
  --cream: #F5F5DC;
  --dark: #231F20;

  --bg: #ffffff;
  --alt: #faf7ec;
  --text: #231F20;
  --muted: #6b6667;
  --border: #e8e2d2;

  --radius: 1rem;
  --shadow-sm: 0 1px 3px rgba(35, 31, 32, .08);
  --shadow-md: 0 6px 18px rgba(35, 31, 32, .10);
  --shadow-lg: 0 16px 40px rgba(35, 31, 32, .18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Anek Bangla", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.hidden { display: none !important; }

.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  padding: .9rem 1.5rem;
  font-size: 1rem;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #d11e23; transform: scale(1.04); }
.btn-outline {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-sm { padding: .6rem 1.25rem; font-size: .9rem; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: .5rem;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.brand-icon svg { width: 1.4rem; height: 1.4rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.1rem; color: var(--dark); }
.brand-text small { font-size: .75rem; color: var(--muted); }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: .9rem; font-weight: 500; }
.nav-desktop a:hover { color: var(--red); }

.nav-toggle {
  background: none; border: none; cursor: pointer; padding: .5rem;
  color: var(--text);
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }

.nav-mobile {
  border-top: 1px solid var(--border);
  padding: 1rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.nav-mobile a { font-size: 1rem; font-weight: 500; }
.nav-mobile a:hover { color: var(--red); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero { background: var(--alt); overflow: hidden; }
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 6rem; }
}
.hero-bismillah {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: .75rem;
}
@media (min-width: 640px) { .hero-bismillah { font-size: 1.85rem; } }
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--dark);
}
.text-red { color: var(--red); }
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42rem;
}
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero-badge {
  display: none;
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: #fff;
  border-radius: .75rem;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  align-items: center; gap: .75rem;
}
@media (min-width: 1024px) { .hero-badge { display: flex; } }
.badge-icon {
  width: 3rem; height: 3rem; border-radius: 999px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.badge-icon svg { width: 1.4rem; height: 1.4rem; }
.hero-badge strong { display: block; font-size: .9rem; color: var(--dark); }
.hero-badge small { font-size: .75rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding-block: 4rem; }
@media (min-width: 640px) { .section { padding-block: 5.5rem; } }
.section-alt { background: var(--alt); }
.section-cream { background: var(--cream); }

.section-head { max-width: 48rem; margin-inline: auto; text-align: center; }
.section-head h2, h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--dark);
}
.section-head p { margin-top: 1rem; font-size: 1.1rem; color: var(--muted); }
.lead { margin-top: 1rem; font-size: 1.1rem; color: var(--muted); }

.grid-3 {
  display: grid; gap: 2rem;
  margin-top: 0;
}
.section .grid-3, .section-head + .grid-3 { margin-top: 3rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.split { display: grid; gap: 3rem; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; align-items: center; }
  .split.align-start { align-items: start; }
}

/* ---------- Cards ---------- */
.card {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-top: 1rem; }
.card p { margin-top: .5rem; font-size: .9rem; color: var(--muted); }
.card-icon {
  width: 3rem; height: 3rem; border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 1.4rem; height: 1.4rem; }
.card-icon.red { background: rgba(236, 34, 39, .1); color: var(--red); }

/* ---------- Weekly menu ---------- */
.menu-grid { gap: 1.5rem; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; gap: .5rem;
}
.menu-card-top h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.tag {
  background: var(--cream);
  color: var(--dark);
  border-radius: 999px;
  padding: .2rem .8rem;
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
}
.menu-card > p { font-size: .9rem; color: var(--muted); flex: 1; }
.menu-card .bn { margin-top: .75rem; font-size: .78rem; color: var(--green); }

/* ---------- Special menu ---------- */
.special-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.special-card {
  display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .special-card { flex-direction: row; align-items: center; justify-content: space-between; }
}
.special-card h3 { font-size: 1.1rem; font-weight: 700; }
.special-card p { font-size: .9rem; color: var(--muted); }
.special-card .bn { margin-top: .25rem; font-size: .78rem; color: var(--green); }
.price {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  border-radius: .75rem;
  padding: .5rem 1.25rem;
  text-align: center;
  align-self: flex-start;
}
@media (min-width: 640px) { .price { align-self: center; } }
.price strong { font-size: 1.5rem; font-weight: 800; display: block; line-height: 1.1; }
.price small { font-size: .75rem; font-weight: 500; }

.rounded-media img {
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

/* ---------- How it works ---------- */
.step-card {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 3rem; font-weight: 800;
  color: rgba(236, 34, 39, .1);
}
.step-icon {
  width: 3rem; height: 3rem; border-radius: 999px;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.step-icon svg { width: 1.4rem; height: 1.4rem; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; }
.step-card p { margin-top: .5rem; font-size: .9rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 1.2rem; height: 1.2rem; }
.contact-icon.green { background: rgba(0, 125, 64, .1); color: var(--green); }
.contact-icon.orange { background: rgba(248, 157, 38, .1); color: var(--orange); }
.contact-icon.red { background: rgba(236, 34, 39, .1); color: var(--red); }
.contact-list small { display: block; font-size: .85rem; color: var(--muted); }
.contact-list strong { font-size: 1rem; color: var(--dark); }
.contact-photo { margin-top: 2.5rem; }

.quote-form {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .quote-form { padding: 2rem; } }
.quote-form h3 { font-size: 1.25rem; font-weight: 700; }
.quote-form .field { margin-top: 1.25rem; }
.quote-form label { display: block; font-size: .9rem; font-weight: 500; }
.quote-form input,
.quote-form textarea {
  margin-top: .35rem;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: .5rem;
  padding: .6rem .8rem;
  font-size: .9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: var(--muted); }
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(236, 34, 39, .18);
}
.quote-form .btn-full { margin-top: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #fff;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.footer-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { margin-top: 1rem; font-size: .9rem; color: rgba(255, 255, 255, .7); max-width: 28rem; }
.footer-grid h4 { font-weight: 600; }
.footer-grid ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.footer-grid ul a, .footer-grid ul li { font-size: .9rem; color: rgba(255, 255, 255, .7); }
.footer-grid ul a:hover { color: #fff; }
.footer-brand .brand strong { font-size: 1.25rem; }
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 2rem;
  text-align: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
}
