:root {
  --smoke-dark: #1f130f;
  --smoke-red: #b33124;
  --smoke-orange: #f39b2f;
  --cream: #fff3dc;
  --charcoal: #28211d;
  --soft-gray: #f6f2ec;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background-color: #ffffff;
}

h1,
h2,
h3,
.navbar-brand {
  font-weight: 800;
}

.site-navbar {
  background-color: rgba(31, 19, 15, 0.97);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}

.logo-img {
  width: 44px;
  height: 44px;
}

.navbar .nav-link {
  font-weight: 700;
  letter-spacing: 0.02rem;
}

.hero-section {
  padding-top: 7rem;
  background:
    linear-gradient(90deg, rgba(31, 19, 15, 0.96), rgba(91, 35, 20, 0.86)),
    radial-gradient(circle at top right, rgba(243, 155, 47, 0.65), transparent 35%);
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.eyebrow {
  color: var(--smoke-orange);
  font-weight: 800;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.carousel-img {
  min-height: 390px;
  object-fit: cover;
  background-color: var(--cream);
}

.carousel-caption {
  background: rgba(31, 19, 15, 0.72);
  border-radius: 1rem;
  padding: 1rem;
}

.info-card,
.feature-card,
.cart-panel,
.checkout-panel {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 0.75rem 2rem rgba(31, 19, 15, 0.10);
  border: 1px solid rgba(31, 19, 15, 0.08);
}

.feature-card {
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.5rem rgba(31, 19, 15, 0.18);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background-color: var(--cream);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.deal-box {
  background-color: var(--cream);
  border-left: 5px solid var(--smoke-orange);
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
}

.special-card {
  border-radius: 1rem;
  background-color: var(--soft-gray);
  padding: 1rem;
  height: 100%;
}

.special-card .price,
.menu-card .price {
  color: var(--smoke-red);
  font-weight: 800;
  font-size: 1.2rem;
}

.page-main {
  padding-top: 4.8rem;
}

.page-banner {
  padding: 5rem 0;
}

.order-banner {
  background:
    linear-gradient(90deg, rgba(31, 19, 15, 0.96), rgba(118, 40, 23, 0.82)),
    radial-gradient(circle at bottom right, rgba(243, 155, 47, 0.5), transparent 35%);
}

.contact-banner {
  background:
    linear-gradient(90deg, rgba(31, 19, 15, 0.96), rgba(50, 69, 39, 0.84)),
    radial-gradient(circle at bottom right, rgba(243, 155, 47, 0.5), transparent 35%);
}

.menu-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 1.8rem rgba(31, 19, 15, 0.10);
  border: 1px solid rgba(31, 19, 15, 0.08);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background-color: var(--cream);
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card .tag {
  display: inline-block;
  background-color: var(--cream);
  color: var(--smoke-red);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-right: 0.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
}

.cart-items {
  min-height: 130px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(31, 19, 15, 0.1);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  font-size: 1.35rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-controls button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 19, 15, 0.2);
  background-color: #ffffff;
}

.delivery-fields {
  background-color: var(--soft-gray);
  padding: 1rem;
  border-radius: 1rem;
}

.restaurant-map {
  min-height: 380px;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid var(--cream);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(31, 19, 15, 0.1);
}

.site-footer {
  background-color: var(--smoke-dark);
  color: #ffffff;
}

.site-footer a {
  color: var(--smoke-orange);
  font-weight: 700;
  margin-left: 1rem;
  text-decoration: none;
}

.btn-danger {
  background-color: var(--smoke-red);
  border-color: var(--smoke-red);
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #8e241b;
  border-color: #8e241b;
}

.btn-warning {
  background-color: var(--smoke-orange);
  border-color: var(--smoke-orange);
  color: #23140f;
  font-weight: 800;
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .carousel-img {
    min-height: 280px;
  }

  .page-banner {
    padding: 3rem 0;
  }
}
