.menu-section {
  padding: 40px 20px;
}

.menu-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.menu-title {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

.card-body img {
  width: 250px;
}


.title-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e2a38;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #0d6efd;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.date {
  font-size: 1.2rem;
  color: #6c757d;  /* szary, podobny do Bootstrapowego "text-secondary" */
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}


main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.menu-category {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease;
}

.menu-category:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.menu-category__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d6efd; /* Bootstrap niebieski */
  border-bottom: 3px solid #0d6efd;
  padding-bottom: 8px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px dotted #bbb;
  font-size: 1.1rem;
  color: #333;
  transition: background-color 0.2s ease;
}

.menu-list__item:last-child {
  border-bottom: none;
}

.menu-list__item:hover {
  background-color: #f0f8ff;
}

.price {
  font-weight: 700;
  color: #198754; /* zielony bootstrap */
  min-width: 60px;
  text-align: right;
}
