
.welcome-banner {
  text-align: center;
  padding: 8px;
  font-size: 20px;
  color: black;
  background: rgba(59, 36, 12, 0.08);
  border-bottom: 1px solid rgba(92,58,39,0.15);s8
}

/* === Hero Section with Background Video === */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 25px 20px;
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  background: rgba(110, 75, 44, 0.06);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 40px;
  color: #c89c6a;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 16px;
  color: #dfc7aa;
  margin: 0;
}

/* === Button Styling === */
.btn {
  background-color: #a1744c;
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #c89c6a;
  color: #2e1a13;
}

.centered-button {
  text-align: center;
  margin: 30px auto;
}

/* === Featured Section === */
.featured-title {
  text-align: center;
  margin: 30px auto 10px;
}

.featured-title h2 {
  font-size: 28px;
  color: #fbead7;
  margin: 0;
}

/* === Dish Grid === */
.dish-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
}

.dish-card {
  width: 260px;
  background: rgba(110, 75, 44, 0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  color: #fdf2e9;
  box-shadow: 0 4px 8px rgba(59,36,12,0.05);
  transition: transform 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
}

.dish-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.dish-card h3 {
  font-size: 18px;
  margin: 4px 0;
  color: #c89c6a;
}

.dish-card p {
  font-size: 14px;
  color: #dfc7aa;
  margin-bottom: 6px;
}

.price {
  font-weight: bold;
  font-size: 16px;
  color: #ffeacb;
  margin-bottom: 10px;
}

/* === Stats Section === */
.stats-section {
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  background-color: rgba(92, 58, 39, 0.06);
  border-radius: 14px;
  padding: 20px;
  color: #fdf2e9;
}

.stats-section h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #c89c6a;
}

.stats-section p {
  font-size: 14px;
  color: #dfc7aa;
  margin: 0;
}

/* === Process Section === */
.process-section {
  margin: 30px auto;
  max-width: 800px;
  text-align: center;
}

.process-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #c89c6a;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.step {
  padding: 16px;
  width: 200px;
  border-radius: 10px;
  color: #fdf2e9;
  background-color: rgba(92,58,39,0.1);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* === Testimonials === */
.testimonials {
  text-align: center;
  padding: 30px 15px;
  background: rgba(59,36,12,0.1);
  border-radius: 10px;
  margin: 30px auto;
  max-width: 800px;
}

.testimonials h2 {
  font-size: 22px;
  color: #c89c6a;
  margin-bottom: 10px;
}

.quote {
  font-style: italic;
  max-width: 600px;
  margin: auto;
  color: #dfc7aa;
}

/* === Newsletter Section === */
.newsletter {
  text-align: center;
  margin: 30px auto;
  padding: 30px 15px;
  max-width: 800px;
}

.newsletter h3 {
  font-size: 20px;
  color: #c89c6a;
  margin-bottom: 8px;
}

.newsletter p {
  color: #dfc7aa;
  margin-bottom: 12px;
}

/* === Social Icons === */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-links img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c89c6a;
  box-shadow: 0 0 6px rgba(200, 156, 106, 0.3);
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.15);
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  css
/* Hero Section */
.hero-content h1 {
  font-size: 40px;
}

.hero-content p {
  font-size: 16px;
}

.dish-card h3 {
  font-size: 18px;
}
.dish-card p {
  font-size: 14px;
}
.dish-card .price {
  font-size: 16px;
}

/* Box sizing for stats, steps, testimonials */
.stats-section,
.process-section,
.testimonials,
.newsletter {
  padding: 24px;
  border-radius: 16px;
}

/* Responsive Layout: stack horizontal boxes vertically */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .dish-grid {
    flex-direction: column;
    align-items: center;
  }

  .dish-card {
    width: 100%;
    max-width: 360px;
  }

  .steps {
    flex-direction: column;
    gap: 12px;
  }

  .step {
    width: 100%;
    font-size: 14px;
  }

  .stats-section h3,
  .process-section h2,
  .testimonials h2,
  .newsletter h3 {
    font-size: 18px;
  }

  .quote {
    font-size: 14px;
  }
