*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #141414;
  background-color: #faf7f5;
}
/* Base button style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

/* Solid red primary button */
.btn-primary {
  background-color: #c5281f;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background-color: #e23324;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Soft white secondary button */
.btn-secondary {
  background-color: #ffffff;
  color: #222222;
  border-color: #e2d6cf;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.btn-secondary:hover {
  background-color: #f7efe9;
}

/* Outline button (WhatsApp / menu) */
.btn-outline {
  background-color: transparent;
  color: #c5281f;
  border-color: #c5281f;
}

.btn-outline:hover {
  background-color: #c5281f;
  color: #ffffff;
}

/* Spacing where groups of buttons live */
.hero-buttons .btn {
  margin-right: 0.75rem;
  margin-top: 1.5rem;
}

.order-buttons .btn {
  margin-right: 0.75rem;
  margin-top: 0.75rem;
}

/* Remove underline + default purple color inside these sections */
.hero-buttons a,
.order-actions a,
.menu-highlights a,
.contact-grid a {
  text-decoration: none;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background-color: #f1ebe7;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 560px;
  margin: 0.5rem 0 2rem;
  color: #555;
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  background-image:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.55)
    ),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  padding: 4rem 1.25rem;
}

.hero h1 {
  font-size: 2.4rem;
  max-width: 680px;
}

.hero-subtitle {
  margin-top: 0.9rem;
  max-width: 600px;
  color: #f5e8de;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
  white-space: nowrap;
}

/* Primary – Swiggy (red) */
.btn-primary {
  background-color: #c1272d; /* your red */
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

/* Secondary – Zomato (white pill) */
.btn-secondary {
  background-color: #ffffff;
  color: #2b1a16;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Outline – WhatsApp / menu buttons */
.btn-outline {
  background-color: transparent;
  color: #c1272d;
  border-color: #c1272d;
  box-shadow: none;
}

/* Hover / active states */
.btn-primary:hover {
  background-color: #a71f24;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.btn-secondary:hover {
  background-color: #f9f5f3;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.btn-outline:hover {
  background-color: #c1272d;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* Small tap feedback */
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Spacing for groups like hero + bottom card */
.hero-buttons .btn {
  margin-right: 0.75rem;
}

.order-actions .btn {
  margin-right: 0.75rem;
}

/* Stack buttons nicely on mobile */
@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-buttons .btn,
  .order-actions .btn {
    width: 100%;
    max-width: 340px;
    margin-right: 0;
  }
}

/* Cards & Info */

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 12, 10, 0.08);
}

.card.highlight {
  background-color: #24120f;
  color: #f9eee6;
}

.card.highlight h3 {
  margin-bottom: 0.5rem;
}

.card.highlight ul {
  list-style: none;
}

.card.highlight li::before {
  content: "• ";
  color: #ffcf99;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.card p {
  color: #444;
}

.tagline {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #777;
}

.info-list {
  list-style: none;
  margin-top: 0.75rem;
}

.info-list li + li {
  margin-top: 0.35rem;
}

/* Map */

.map-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* Contact grid */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Footer */

.footer {
  background-color: #140c0a;
  color: #f1ddd0;
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.footer-note {
  color: #d3b7a4;
}
/* --- Mobile-only fixes: DO NOT affect desktop --- */
@media (max-width: 768px) {
  /* Make all containers fit the screen */
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* Make sure hero content sits inside the screen, not off to the right */
  .hero-content.container {
    margin: 0 auto;
  }

  /* Slightly smaller heading so it wraps nicely */
  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
}
