/*rgb(2, 93, 101)*/
body {
  font-family: "Varta", sans-serif;
  color: rgb(0, 0, 88);
}

#logo-image {
  max-width: 200px;
}

#background-image {
  max-width: 95vw;
}

.desktop-menu-container {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.desktop-menu-item {
  color: rgb(0, 0, 88);
  text-decoration: none;
  font-size: large;
  margin: 0 1em 0 1em;
  transition: color 400ms;
}

.desktop-menu-item:hover {
  color: rgb(0, 91, 99);
  cursor: pointer;
  margin: 0 1em 0 1em;
}

.sub-menu {
  transform: translateX(-10%);
  font-size: smaller;
  color: rgb(0, 0, 88);
  /* border-radius: 0.25em; */
  background-color: white;
  display: flex;
  visibility: collapse;
  opacity: 0;
  flex-direction: column;
  position: absolute;
  border: 0.1em solid rgb(0, 0, 88);
  padding: 0.5em 0.5em;
}

.desktop-menu-item:hover > .sub-menu {
  display: flex;
  visibility: visible;
  z-index: 1;
  opacity: 1;
}

.sub-menu-item:not(:hover) {
  z-index: -1;
}

.sub-menu-item {
  color: rgb(0, 0, 88);
  padding: 0.125em 0.5em;
  text-decoration: none;
  height: 10;
  transition: color 300ms;
}

.sub-menu-item:hover {
  /* color: black; */
  background-color: rgba(255, 214, 221, 0.5);
}

.heading-container {
  margin: 1em 2em 0 2em;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  /* flex-wrap: wrap; */
}

.contact-icons {
  margin-left: 1em;
}

.places-icons {
  margin-left: 1em;
}

.contact-icon {
  color: rgb(0, 0, 88);
  text-decoration: none;
  transition: color 300ms;
  cursor: pointer;
  /* margin-left: 1em; todo nastylovat toto a mista potom jinak */
}

.contact-icon:hover {
  cursor: pointer;
  color: rgb(0, 91, 99);
}

.contact-tooltip {
  background-color: rgb(0, 91, 99);
  transform: translate(-50%, 30%);
  /* background-color: black; */
  font-family: "Varta", sans-serif;
  color: white;
  border-radius: 0.25em;
  padding: 0.125em 0.5em;
  display: block;
  opacity: 0;
  position: absolute;
  transition: opacity 450ms;
  z-index: -1;
  max-width: 20em;
  overflow-wrap: break-word;
}

.contact-icon:hover + .contact-tooltip {
  opacity: 1;
  z-index: 100 !important;
}

.hamburger-menu-icon {
  padding: 0.125em;
  margin: 0 2em;
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 2.5em;
  transition: opacity 1s;
}

.hamburger-menu-icon:hover {
  cursor: pointer;
}

.main-container {
  margin: 0.5em;
  display: flex;
}

.hamburger-menu-icon:hover > .hamburger-menu-line {
  width: 2.25em;
  height: 0.3em;
  background-color: rgb(0, 91, 99);
}

.hamburger-menu-line {
  background-color: rgb(0, 0, 88);
  margin: 0.125em;
  height: 0.25em;
  width: 2em;
  border-radius: 20em;
  transition: width 300ms, height 300ms, background-color 300ms;
}

.opened-menu {
  padding: 0.5em;
  border-style: solid;
  border-width: 0.125em;
  border-radius: 0.5em;
  border-color: rgb(0, 0, 88);
  display: flex;
  flex-direction: row-reverse;
  transition: opacity 1s;
  opacity: 0;
}

/* .opened-menu .opened {
    opacity: 1;
} */
.menu-close-line {
  background-color: rgb(0, 0, 88);
  padding: 0.125em;
  margin: 0.125em;
  height: 0.175em;
  width: 1.25em;
  border-radius: 20em;
  transition: width 300ms, height 300ms, background-color 300ms;
  /* -moz-transition: background-color, width, height 900ms ease; */
}

.menu-close-line:hover {
  cursor: pointer;
  width: 1.5em;
  height: 0.2em;
  background-color: rgb(0, 91, 99);
}

.menu-main-part {
  flex-grow: 1;
}

.place-to-buy {
  text-decoration: none;
  padding: 0.1rem;
  color: rgb(0, 0, 88);
}

.places-container {
  margin: 3em;
  display: grid;
  justify-content: space-around;
  grid-template-columns: repeat(auto-fill, 13em);
  grid-gap: 1rem;
}

.city-container {
  flex-basis: 13em;
  margin: 0.25em;
  padding: 0.5em;
  /* border-radius: 0.5em; */
  border: 0.1em solid rgb(255, 214, 221);
  /*border shadow - mat (sedi asi spis jen k bilym kartickam*/
  /*hodne decentne ruzova*/
  display: flex;
  flex-direction: column;
}

.city-name {
  text-align: center;
  font-size: large;
  font-weight: 600;
  padding: 0.1rem;
}

.place-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#active-menu-element {
  border-bottom: 0.06em solid rgb(0, 0, 88);
}

#active-menu-element:hover {
  cursor: default;
  color: rgb(0, 0, 88);
}

#active-sub-menu-element {
  text-decoration: underline;
  background-color: white;
  color: rgb(0, 0, 88);
}

#active-sub-menu-element:hover {
  cursor: default;
  color: rgb(0, 0, 88);
}

.placeholder-item {
  width: 100px;
  cursor: default;
  user-select: none;
}

.gallery {
  margin: 3em;
  display: grid;
  justify-content: space-around;
  grid-template-columns: repeat(auto-fill, 12em); /* 2 */
  grid-gap: 1rem; /* 3 */
}

.picture {
  cursor: pointer;
  /* margin: 0.5em; */
  max-width: 12em;
  padding: 0.25em;
  transition: max-width 200ms, padding 200ms;
}

.picture:hover {
  max-width: 12.5em;
  padding: 0;
}

#modal-container {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 2em; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  justify-content: center;
  opacity: 0;
  transition: opacity 700ms;
}

#modal-image {
  max-width: 98vw;
  max-height: 95vh;
}

#modal {
  position: absolute;
}

.modal-picture-close {
  cursor: pointer;
  user-select: none;
  position: absolute;
  z-index: 2;
  font-size: 3em;
  right: 0.22em;
  color: white;
  opacity: 0.5;
  transition: opacity 300ms;
}

.modal-picture-close:hover {
  opacity: 1;
}

.modal-picture-navigation {
  cursor: pointer;
  user-select: none;
  top: 45%;
  position: absolute;
  color: white;
  opacity: 0.5;
  transition: opacity 300ms;
}

.modal-picture-navigation:hover {
  opacity: 1;
}

.modal-picture-navigation-left {
  left: 0.35em;
}

.modal-picture-navigation-right {
  right: 0.35em;
}

.mobile-footer {
  display: none;
}

#background-image-mobile {
  display: none;
}

#locale-switch {
  font-size: large;
  margin-right: 1em;
  cursor: pointer;
  transition: color 300ms;
}

#locale-switch:hover {
  color: rgb(0, 91, 99);
}

#right-heading-container {
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 512px) {
  .places-container {
    margin: 2.5em 0.75em 2.5em 0.75em;
    grid-gap: 0.5em;
  }
  .gallery {
    margin: 2.5em 0.75em 2.5em 0.75em;
    grid-gap: 0.5em;
    grid-template-columns: repeat(auto-fill, 9em);
  }
  .picture {
    max-width: 9em;
  }
  .picture:hover {
    max-width: 9.5em;
  }
  .contact-icons {
    display: none;
  }
  /* .contact-tooltip{
        display: none;
    } */
  .mobile-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(255, 214, 221);
    margin: 0;
    padding: 0;
  }
  .contact-icons-mobile {
    display: flex;
    justify-content: center;
  }
  .contact-tooltip-footer {
    background-color: rgb(0, 91, 99);
    transform: translate(-30%, -200%);
    /* background-color: black; */
    font-family: "Varta", sans-serif;
    color: white;
    border-radius: 0.25em;
    padding: 0.125em 0.5em;
    display: block;
    opacity: 0;
    position: absolute;
    transition: opacity 450ms;
    z-index: -1;
  }
  .contact-icon:hover + .contact-tooltip-footer {
    opacity: 1;
    z-index: 100 !important;
  }
  .contact-footer-icon-item {
    margin: 0.5em 1em 0.5em 1em;
  }
  .contact-footer-icon-item:last-child {
    margin-right: 2em;
  }
  .placeholder-item {
    width: 18px;
  }
  .contact-tooltip {
    max-width: 12em;
  }
  #background-image {
    display: none;
  }
  #background-image-mobile {
    display: block;
    max-width: 95vw;
  }
  #locale-switch {
    margin-right: 0.25em;
  }
  .desktop-menu-item {
    margin: 0 0.5em 0 0.5em;
  }
  .desktop-menu-item:hover {
    margin: 0 0.5em 0 0.5em;
  }
  .place-tooltip-transofrm {
    transform: translate(0, 30%) !important;
  }
}

/*# sourceMappingURL=style.css.map */
