/* =========================
   RESTAURANT SECTION
========================= */

.restaurant-section {
  padding: 100px 8%;
  background: linear-gradient(
    180deg,
    #f8fbfc 0%,
    #ffffff 100%
  );
}

/* =========================
   HEADER
========================= */

.restaurant-header {
  text-align: center;
  margin-bottom: 60px;
}

.restaurant-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #1f3f46;
  margin-bottom: 12px;
}

.restaurant-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #5f7d84;
  letter-spacing: 0.5px;
  max-width: 650px;
  margin: 0 auto;
}

/* =========================
   DISHES GRID
========================= */

.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* =========================
   DISH CARD
========================= */

.dish {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dish:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* =========================
   VIDEO STYLE
========================= */

.dish video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* =========================
   DISH INFO
========================= */

.dish-info {
  padding: 28px 30px 32px;
  text-align: center;
}

.dish-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1f3f46;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.dish-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c8a90;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .dishes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .restaurant-section {
    padding: 80px 6%;
  }

  .dishes {
    grid-template-columns: 1fr;
  }

  .dish video {
    height: 230px;
  }

  .restaurant-header h2 {
    font-size: 2.3rem;
  }
}
