body {
  font-family: 'Metropolis', sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-stretch: condensed;
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #333;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f4f4f4;
  flex-wrap: wrap;
}

.top-text {
  flex-shrink: 1;
  flex-grow: 1;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: left;
  white-space: nowrap; /* zabrání zalomení textu */
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;    
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
}

.menu-text {
  display: flex;
  gap: 15px;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

.menu-text span::after {
  content: ' /';
}

.menu-text span:last-child::after {
  content: '';
}

.menu-text a:hover {
  font-weight: bold;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
  margin-left: 10px;
}

.menu-toggle div {
  width: 22px;
  height: 2px;
  background-color: black;
  margin: 4px 0;
}

.menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 22px;
      height: 2px;
      background-color: black;
      margin: 4px 0;
    }

    @media (max-width: 600px) {
      .menu-text {
        display: none;
        flex-direction: column;
        position: absolute;
        align-items: center;
        top: 60px;
        right: 20px;
        background-color: white;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
        min-width: 150px;
      }

      .menu-text.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .menu-text span::after {
        content: '';
      }

      .top-text {
        font-size: 1rem; /* menší velikost pro mobil */
        max-width: 70%;
        text-align: left;
        margin-left: 0;
        margin-right: auto;
        }
    }

.grey-square {
  background-color: rgb(244, 243, 243);
  height: 60px;
  width: 100%;
}

.mid {
  padding: 40px 20px;
  font-family: 'Playfair Display', serif;
}

.title {
  font-size: 2.5rem;
  color: #777;
  font-weight: 400;
  margin-bottom: 20px;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1;
  min-width: 250px;
}

.row {
  margin: 10px 0;
  font-size: 1.5rem;
  color: #999;
}

.row p {
  font-size: 1rem;
  line-height: 1.5;
  color: #999;
}

.jidelni-button {
  margin-top: 30px;
  text-align: center;
}

.jidelni-button button {
  padding: 10px 20px;
  background-color: #777;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.jidelni-button button:hover {
  background-color: #888;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .menu-text {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0;
    left: auto;
    background-color: white;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 150px;
  }

  .menu-text.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .layout {
    flex-direction: column;
  }

  .title {
    font-size: 2rem;
    text-align: center;
  }

  .row {
    font-size: 1.2rem;
  }

  .row p {
    font-size: 0.95rem;
  }
}
