
/* kolory motywu */
:root {
  --bg-dark: #111;
  --bg-panel: #111;
  --highlight: #d69a2d;
  --text-light: #fff;
  --text-muted: rgba(255,255,255,0.7);
}


.menu-page, .menu-page * {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}




/* całe tło sekcji */
.menu-page__container {
  display: flex;
  min-height: calc(100vh - 60px); 
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  padding-top: 30px;
}

/* ── LEWA POŁOWA ────────────────────────────────────────────────── */
.menu-page__list {
  width: 50%;
  padding: 180px 30px 30px; 
  background-color: var(--bg-dark);
}

.menu-page__heading {
  font-size: 2.25rem;
  margin: 0 auto 25px;
  text-align: center;
  max-width: 400px;
}

.menu-page__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 10px;
}

.menu-page__filter-label {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-light);
}

.menu-page__filter-select {
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--text-muted);
  background: #d69a2d;
  letter-spacing: 1px;
  color: white;
  margin-left: 10px;
}

/* LISTA DAŃ */
.menu-page__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-page__item {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}

.menu-page__item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(2px);
}

.menu-page__item.active {
  background: var(--highlight);
}

.menu-page__item-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--text-muted);
}

.menu-page__item.active .menu-page__item-image {
  border-color: var(--text-light);
}

.menu-page__item-title {
  font-size: 1.125rem;
  margin: 0;
  color: var(--text-light);
}

/* ── PRAWA POŁOWA ───────────────────────────────────────────────── */
.menu-page__detail {
  width: 50%;
  padding: 180px 60px 30px;
  background-color: var(--bg-panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.menu-page__detail-placeholder {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 100px;
}

/* gdy jest zawartość */
.menu-page__detail img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.menu-page__detail h2 {
  font-size: 2.25rem;
  margin: 0 0 15px;
  color: var(--text-light);
}

.menu-page__detail .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 20px;
  color: var(--highlight);
}

.menu-page__detail .description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ── RESPONSYWNOŚĆ ──────────────────────────────────────────────── */
@media (max-width: 992px) {
  .menu-page__container {
    flex-direction: column;
  }
  .menu-page__list,
  .menu-page__detail {
    width: 100%;
    padding: 100px 20px;
  }

  .menu-page__filter {
    flex-direction: column;
    align-items: center;
  }

  .menu-page__filter-label {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    margin-left: 100px;

  }

  .menu-page__filter-select {
    margin-top: 15px;
    margin-left: 50px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu-page__filter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-page__filter-select {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 260px;
  }

  .menu-page__filter-label {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 45px;
  }
}





