body {
  font-family: "Lato", sans-serif;
  margin: 0;
  color: whitesmoke;
  background-image: url('bg.jpg');
}

header {
  background: #d62828;
  color: white;
  text-align: center;
  padding: 1rem;
}

h1 {
  margin: 0;
}

.baner {
  max-width: 100%;
  height: auto;
}

main {
  max-width: 800px;   /* szerokość treści */
  margin: 0 auto;     /* wyśrodkowanie */
  padding: 1rem;
}

.category {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem; /* odstęp między kategoriami */
  text-align: center;    /* wyśrodkowanie treści */
}

.category h2 {
  border-bottom: 2px solid #d62828;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.category h3 {
  margin: 0.5rem 0;
}

.category p {
  margin: 0.3rem 0;
}

.category p:last-child {
  font-size: 1.1rem;
  color: #ffcb2e;
}


.item {
  display: flex;
  justify-content: center;   /* wyśrodkowanie główne */
  align-items: center;
  margin: 0.5rem 0;
  position: relative;        /* pozwala na absolutne pozycjonowanie ceny */
}

.item span:first-child {
  flex: 1;                   /* nazwa zajmuje środek */
  text-align: center;        /* wyśrodkowanie tekstu */
  font-weight: 500;
}

.item span:last-child, .item-cena {
  display: block;
  position: static;
  text-align: right;
  margin: 0.2rem 0 0.2rem auto;
  font-weight: bold;
  color: #ffcb2e;
  background: none;
  padding-left: 0;
  word-break: break-word;
}

@media (min-width: 600px) {
  .item span:last-child, .item-cena {
    position: absolute;
    right: 10px;
    top: 0;
    text-align: right;
    margin-right: 30px;
    padding-left: 10px;
    font-weight: bold;
    color: #ffcb2e;
  }
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

th, td {
  border: 1px solid #ddd;
  padding: 6px;
  text-align: center;
}

th {
  background: #f4f4f4;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}

/* Kontener pizzy */

.pizza-box {
  display: block;
  text-align: center;
  position: relative;
  margin-bottom: 0.3rem;
}

/* Nazwa pizzy */
.pizza-title {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  word-break: break-word;
}

/* Składniki pod nazwą */
.pizza-skladniki {
  margin: 0;
  font-style: italic;
  color: #555;
  text-align: center;
  font-size: 0.8rem !important;
}

/* Ceny wyrównane do prawej */
.pizza-ceny {
  display: block;
  position: static;
  text-align: right;
  margin: 0.2rem 0 0.2rem auto;
  font-weight: bold;
  color: #ffcb2e;
  background: none;
  padding-left: 0;
  word-break: break-word;
  max-width: 100%;
  overflow-wrap: break-word;
  white-space: normal;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .pizza-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .pizza-ceny {
    position: absolute;
    right: 0;
    top: 0.5rem;
    text-align: right;
    margin-right: 30px;
    background: white;
    padding-left: 10px;
    font-weight: bold;
    color: #ffcb2e;
  }
}


