body {
      font-family: 'Metropolis', sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    .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 {
      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;
      cursor: pointer;
    }
    .menu-toggle div {
      width: 22px;
      height: 2px;
      background-color: black;
      margin: 4px 0;
    }
    .grey-square {
      background-color: #f4f3f3;
      height: 60px;
      width: 100%;
    }
    .first-mid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      padding: 40px 20px;
    }
    .first-mid img {
      width: 100%;
      height: auto;
      cursor: pointer;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }
    .first-mid img:hover {
      transform: scale(1.05);
    }
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 80%;
    }
    .lightbox .close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      color: white;
      text-decoration: none;
    }
    .lightbox .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 50px;
      color: white;
      cursor: pointer;
      user-select: none;
    }
    .lightbox .prev {
      left: 20px;
    }
    .lightbox .next {
      right: 20px;
    }
    @media (max-width: 600px) {
      .menu-text {
        display: none;
        flex-direction: column;
        position: absolute;
        align-items: center;
        text-align: center;
        top: 60px;
        left: auto;
        right: 0;
        background-color: white;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
      }
      .menu-text.show {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }

      .top-text {
        font-size: 1rem; /* menší velikost pro mobil */
        max-width: 70%;
        text-align: left;
        margin-left: 0;
        margin-right: auto;
     }

      .menu-text span::after {
      content: '';
    }


    }