/* === Body Background === */
body {
  background: url('../images/background2.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* === Featured Title === */
.featured-title {
  text-align: center;
  margin: 40px auto 20px;
}

.featured-title h2 {
  font-size: 32px;
  color: #c89c6a;
  margin-bottom: 8px;
}

.featured-title p {
  font-size: 16px;
  color: #dfc7aa;
}

/* === Filter Form === */
form {
  text-align: center;
  margin-bottom: 30px;
}

select,
input[type="text"] {
  padding: 10px 14px;
  margin: 0 8px;
  border-radius: 8px;
  border: 1px solid rgba(92, 58, 39, 0.3);
  background-color: rgba(59, 36, 12, 0.07);
  color: #fdf2e9;
  font-size: 14px;
  outline: none;
}

select:focus,
input[type="text"]:focus {
  border-color: #c89c6a;
  background-color: rgba(92, 58, 39, 0.15);
}

/* === Dish Grid === */

/* === Dish Card === */
.dish-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #fdf2e9;
  box-shadow: 0 0 12px rgba(59,36,12,0.1);
  transition: transform 0.3s ease;
}

.dish-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(200, 156, 106, 0.3);
}

/* === Dish Image === */
.dish-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* === Dish Text === */
.dish-card h3 {
  font-size: 22px;
  color: #fbead7;
  margin-top: 10px;
}

.dish-card p {
  font-size: 15px;
  color: #dfc7aa;
  margin: 6px 0 12px;
}

/* === Button === */
.btn {
  background-color: #c89c6a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: background 0.3s ease;
}

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

/* === Responsive Design === */
@media (max-width: 768px) {
  .featured-title h2 {
    font-size: 24px;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  select,
  input[type="text"] {
    width: 90%;
    margin: auto;
  }

  .dish-card img {
    height: 160px;
  }

  .dish-card h3 {
    font-size: 18px;
  }

  .dish-card p {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .dish-grid {
    padding: 20px;
  }
}
