* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Metropolis', sans-serif;
  font-style: normal;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #333;
}

/* Header */
.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-direction: column;
  align-items: flex-end;
  position: relative;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 5px;
}

.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;
}

.grey-square {
  background-color: #f4f3f3;
  height: 60px;
  width: 100%;
}

.mid {
  padding: 40px 20px;
}

.title {
  text-align: center;
  font-size: 2rem;
  color: #777;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.column-2 {
  flex: 1 1 400px;
  max-width: 600px;
}

.sec-row {
  margin-bottom: 20px;
}

.sec-row-1 {
  font-size: 1.5rem;
  color: #777;
  margin-bottom: 15px;
}

.map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

.inner-column-1,
.inner-column-2,
.inner-column-3,
.inner-column-4 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.inner-column-1 p,
.inner-column-2 p,
.inner-column-3 p,
.inner-column-4 p {
  color: #777;
}

/* Responzivita */
@media (max-width: 600px) {
  .menu-text {
    flex-direction: column;
    background-color: white;
    text-align: center;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: 40px;
    right: 0;
    display: none;
  }

  .menu-text.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
  .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: '';
    }     
}
