/* Base Layout */
.menu-hero {
  /* background: linear-gradient(135deg, #f8e4d9, #fffaf5); */
  background-color: var(--light3);
  padding: 4rem 1rem;
  text-align: center;
}
.hero-title {
  font-size: 2.8rem;
  color: #a0351d;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* Section Styling */
.menu-section {
  padding: 3rem 1rem;
  background: var(--light3);
}
.section-title {
  font-size: 2rem;
  color: #b03e2f;
  margin-bottom: 0.5rem;
  text-align: center;
}
.section-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}

/* Grid for Specials */
.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.special-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.special-card:hover {
  transform: scale(1.02);
}
.special-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.special-info {
  padding: 1rem;
}
.special-info h3 {
  font-size: 1.25rem;
  color: #222;
}
.special-info p {
  font-size: 0.95rem;
  color: #555;
  margin: 0.5rem 0;
}
.price {
  font-weight: bold;
  color: #cc2f2f;
}

/* Download Section */
.download-section {
  background: var(--light2);
  padding: 2rem 1rem;
  text-align: center;
}
.download-box p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
}
.btn-download {
  background: #b03e2f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn-download:hover {
  background: #922b1e;
}

/* Storefront Section */
.store-section {
  background: var(--light2);
  padding: 3rem 1rem;
}
.store-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.store-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.store-text {
  max-width: 600px;
  text-align: center;
}
.store-text h2 {
  font-size: 1.8rem;
  color: #a0351d;
  margin-bottom: 1rem;
}
.store-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .specials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .store-wrapper {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .store-text {
    padding-left: 2rem;
  }
}

/* Menu filter */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1rem;
  background: #eee;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #b03e2f;
  color: #fff;
}
