
/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* === GLASS CONTAINER === */
.glass {
  background: rgba(92, 58, 39, 0.08);
  border: 1px solid rgba(92, 58, 39, 0.15);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 30px;
  color: #fdf2e9;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #a1744c;
  color: #fdf2e9;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* === DISH GRID STRUCTURE === */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: auto;
  padding: 0 20px 60px;
}

/* === DISH CARD DESIGN === */
.dish-card {
  position: relative;
  background: rgba(110, 75, 44, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dish-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(59, 36, 12, 0.3);
}

.dish-card img {
  width: 80%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.dish-card:hover img {
  transform: scale(1.05);
}

.dish-card h3 {
  margin-top: 12px;
  font-size: 20px;
  color: #c89c6a;
}

.dish-card p {
  font-size: 18px;
  color: #fbead7;
}

.price {
  font-weight: bold;
  color: #a1744c;
  margin-top: 6px;
}

/* === ADD TO CART BUTTON === */
.add-cart {
  margin-top: 10px;
  background-color: #a1744c;
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* === RESPONSIVENESS === */
@media (max-width: 768px) {
  .dish-grid {
    padding-bottom: 40px;
  }

  .btn,
  .add-cart {
    font-size: 14px;
    padding: 10px 18px;
  }

  .dish-card img {
    width: 100%;
    height: 140px;
  }

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

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