/* ===========================
   MAHARASHTRA CHICKEN SHOP
   style.css – v2.0
=========================== */

:root {
  --red:       #c0392b;
  --red-dark:  #96281b;
  --orange:    #e67e22;
  --orange-lt: #f39c12;
  --cream:     #fff8f0;
  --white:     #ffffff;
  --dark:      #1a0a00;
  --dark2:     #2c1a0e;
  --gray:      #5c4a3a;
  --gray-lt:   #f5ede6;
  --shadow:    rgba(192,57,43,0.18);
  --radius:    16px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

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

.accent       { color: var(--red); }
.accent-light { color: var(--orange-lt); }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26,10,0,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange-lt);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s;
}
.nav-links a:hover { color: var(--orange-lt); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: white;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: .9rem;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange); transform: scale(1.04); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 8px;
  line-height: 1;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav a {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 500;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--orange-lt); }
.mobile-nav .mobile-cta {
  margin-top: 12px;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
}
.mobile-nav.open { display: flex; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(230,126,34,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(192,57,43,.3) 0%, transparent 50%),
    #1a0a00;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px,
      transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px,
      transparent 1px, transparent 40px);
  pointer-events: none;
}

.hero::after {
  content: '🍗';
  position: absolute;
  right: -2%;
  bottom: 5%;
  font-size: clamp(120px, 22vw, 280px);
  opacity: .07;
  pointer-events: none;
  filter: grayscale(1);
  transform: rotate(-15deg);
  line-height: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,10,0,.6) 0%, rgba(44,26,14,.8) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(230,126,34,.2);
  border: 1px solid rgba(230,126,34,.4);
  color: var(--orange-lt);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeUp .9s .1s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
  animation: fadeUp .9s .2s ease both;
}
.hero-title .accent { color: var(--orange); }

.hero-tagline {
  color: rgba(255,255,255,.75);
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  letter-spacing: .5px;
  margin-bottom: 40px;
  animation: fadeUp .9s .3s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .9s .4s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
  white-space: nowrap;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--red-dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  color: white;
  font-weight: 600;
  font-size: .9rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-item:last-child { border-right: none; }
.trust-item span { font-size: 1.1rem; }

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.section-header p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}
.section-header.light h2 { color: white; }
.section-header.light p  { color: rgba(255,255,255,.65); }

.section-tag {
  display: inline-block;
  background: rgba(192,57,43,.12);
  color: var(--red);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  border: 1px solid rgba(192,57,43,.25);
}
.section-header.light .section-tag {
  background: rgba(255,255,255,.12);
  color: var(--orange-lt);
  border-color: rgba(255,255,255,.2);
}

/* ========== MENU ========== */
.menu-section {
  padding: 96px 24px;
  max-width: 1200px;
  margin: auto;
}

/* Loading spinner */
.menu-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 0;
  color: var(--gray);
  font-size: .95rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(192,57,43,.15);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

/* Error state */
.menu-error {
  text-align: center;
  padding: 48px 24px;
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
}
.menu-error a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 1.5px solid rgba(192,57,43,.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s, transform .5s, box-shadow .25s, border-color .25s;
}

.menu-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,126,34,.04), transparent 60%);
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: rgba(192,57,43,.25);
}
/* prevent hover fighting visible transition */
.menu-card.visible:hover {
  opacity: 1;
}

.menu-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff8f0, white);
}
.menu-card.featured:hover { box-shadow: 0 16px 40px rgba(230,126,34,.25); }

.card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.card-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.card-desc {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.55;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lt);
}

.price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
}
.price small {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  color: var(--gray);
  margin-left: 2px;
}

.order-btn {
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 30px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.order-btn:hover {
  background: var(--orange);
  transform: scale(1.06);
}

/* ========== ABOUT ========== */
.about-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 96px 24px;
}
.about-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(230,126,34,.3);
  aspect-ratio: 4/5;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(192,57,43,.2), rgba(230,126,34,.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  text-align: center;
  padding: 32px;
}
.about-img-placeholder span { font-size: 5rem; }
.about-img-placeholder p { font-family: var(--font-head); font-size: 1.2rem; color: rgba(255,255,255,.8); }
.about-img-placeholder small { font-size: .8rem; color: rgba(255,255,255,.4); }

.about-badge-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: white;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(230,126,34,.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.big-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-badge-card span:last-child {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text { color: white; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.about-text p {
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  font-size: .97rem;
  margin-bottom: 16px;
}
.about-list {
  list-style: none;
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  color: rgba(255,255,255,.75);
  font-size: .93rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--dark);
  padding: 96px 24px;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 20px;
  transition: background .2s, border-color .2s;
}
.contact-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(230,126,34,.4);
}
.contact-icon { font-size: 2rem; margin-bottom: 10px; }
.contact-card h4 {
  color: var(--orange-lt);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-card p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.6;
}
.contact-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: .88rem;
  transition: color .2s;
}
.contact-link:hover { color: var(--orange-lt); }

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  border: 2px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}
.map-placeholder iframe { width: 100%; height: 100%; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark2);
  border-top: 2px solid var(--red-dark);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--orange-lt);
  font-weight: 900;
  margin-bottom: 8px;
}
.footer-inner > p {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange-lt); }
.footer-copy {
  color: rgba(255,255,255,.25);
  font-size: .8rem;
}

/* ========== FABs ========== */
.fab-whatsapp, .fab-call {
  position: fixed;
  bottom: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
  animation: popIn .5s .5s both;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}
.fab-whatsapp { background: #25D366; right: 28px; }
.fab-call     { background: var(--red); right: 96px; }
.fab-whatsapp:hover, .fab-call:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-placeholder { height: 280px; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-btns  { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  .trust-bar  { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 0; }
  .trust-item { flex-shrink: 0; border-right: 1px solid rgba(255,255,255,.12); }

  .menu-section { padding: 64px 16px; }
  .menu-grid    { grid-template-columns: 1fr; gap: 16px; }

  .about-section, .contact-section { padding: 64px 16px; }
  .contact-cards { grid-template-columns: 1fr; }

  .fab-call { right: 96px; bottom: 24px; }
  .fab-whatsapp { right: 24px; bottom: 24px; }
}

@media (max-width: 400px) {
  .fab-call { display: none; }
  .fab-whatsapp { right: 16px; bottom: 20px; }
}
