@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");
@import url("header.css");
@import url("home.css");
@import url("testimonials.css");
@import url("footer.css");

:root {
  --color-primary-1: #fff7ef;
  --color-primary-2: #ffe7ba;
  --color-primary-3: #f5d75b;
  --color-primary-4: #ffe787;
  --color-primary-5: #b40a0a;
  --color-primary-6: #d20c0c;

  --color-neutral-0: #fff;
  --color-neutral-1: #2c2c2c;
}

* {
  font-family: "Montserrat", "Space Grotesk", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-primary-1);
  overflow-x: hidden;
}

section {
  padding: 28px 8%;
}

.btn-default {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-5);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--color-neutral-0);
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-default:hover {
  background-color: var(--color-primary-6);
}

.btn-default.btn-light {
  background-color: var(--color-neutral-0);
  color: #111 !important;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.btn-default.btn-light:hover {
  background-color: var(--color-neutral-0);
  color: #111 !important;
  box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.12);
}

.social-media-buttons {
  display: flex;
  gap: 18px;
}

.social-media-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  background-color: var(--color-neutral-0);
  font-size: 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-neutral-1);
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.social-media-buttons a:hover {
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: var(--color-primary-6);
  font-size: 1.563rem;
}

.section-subtitle {
  font-size: 2.1875rem;
}

.section-description {
  margin-top: 8px;
  color: #3c3c3c;
  max-width: 720px;
  line-height: 1.5;
  text-align: center;
}

/* ------------------------------------------
   Weekly Drops + Vendor section styles
   (inlined here to avoid stale imports)
------------------------------------------- */
#menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}

#menu .dishes-shell {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 28px;
}

#dishes {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 10px 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

#dishes::-webkit-scrollbar {
  display: none;
}

.section-description {
  text-align: center;
}

.dish {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  gap: 14px;
  flex: 0 0 300px;
  min-width: 280px;
  max-width: 320px;
  padding: 20px;
  background-color: var(--color-neutral-0);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  scroll-snap-align: start;
}

.dish .dish-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.dish-heart {
  position: absolute;
  background-color: var(--color-primary-6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.563rem;
  color: var(--color-primary-1);
  width: 70px;
  height: 70px;
  right: -10px;
  top: -10px;
  border-radius: 0px 37.5px 0px 42.5px;
}

.dish-description {
  color: #434343;
  word-break: break-word;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-rate i {
  color: var(--color-primary-6);
}

.dish-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
}

.dish-meta .pill {
  background: var(--color-primary-1);
  border: 1px solid #f1d6c0;
  padding: 4px 10px;
  border-radius: 999px;
}

.dish--placeholder button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.dishes-shell::before,
.dishes-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 1;
}

.dishes-shell::before {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--color-primary-1) 0%,
    rgba(255, 247, 239, 0) 100%
  );
}

.dishes-shell::after {
  right: 0;
  background: linear-gradient(
    -90deg,
    var(--color-primary-1) 0%,
    rgba(255, 247, 239, 0) 100%
  );
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.carousel-arrow--left {
  left: 6px;
}
.carousel-arrow--right {
  right: 6px;
}

.vendor-spotlights {
  width: 100%;
  margin-top: 48px;
  border-radius: 18px;
  padding: 30px 32px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.vendor-spotlights::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
}

.vendor-spotlights__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.vendor-spotlights__header h4 {
  font-size: 1.25rem;
  color: var(--color-primary-6);
}

.vendor-spotlights__header p {
  color: #444;
  font-weight: 500;
}

.vendor-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.vendor-card {
  background: var(--color-neutral-0);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
}

.vendor-card__header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.vendor-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7f0e8;
}

.vendor-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #444;
}

.vendor-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.vendor-card__tag {
  background: var(--color-primary-1);
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.vendor-card__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #444;
}

.vendor-card--placeholder {
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #555;
  font-weight: 500;
}

@media screen and (max-width: 1170px) {
  #dishes {
    gap: 16px;
  }
}

@media screen and (max-width: 600px) {
  .carousel-arrow {
    display: none;
  }
  #menu .section-subtitle {
    text-align: center;
  }
}

/* Fallback testimonial image styling (mirrors testimonials.css) */
#testimonials {
  min-height: calc(100vh - 91px);
}

#testimonial_chef {
  width: 440px;
  max-width: 48vw;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.26),
    0 16px 36px rgba(0, 0, 0, 0.24);
  filter: saturate(0.65) brightness(0.82) contrast(1.05);
}
