/* Globální nastavení */
body > main {
  padding-top: 0px;
  padding-block: 0px;
}
a {
  text-decoration: none;
}
section {
  scroll-margin-top: 104px;
  padding: 1rem 0 1rem 0;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 96px;
  }
}

/* Navigace */
nav {
  display: flex;
  justify-content: space-between;
  padding: 0 2em;
  align-items: center;
  text-wrap: nowrap;
}

#navigace {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgba(19, 23, 31);
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 2px solid var(--pico-primary);
}

#logo {
  max-height: 64px;
  max-width: 128px;
}

ul {
  display: flex;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.specialni-objednat {
  border: 2px solid var(--pico-primary);
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Landing */
.domu {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
}

.domu::before {
  content: '';
  position: absolute;
  background-image: url('assets/cover.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  filter: blur(10px);
  z-index: 1;
}

.domu > .hero {
  position: relative;
  z-index: 2;
  text-align: center;
}

#hero-logo {
  max-width: 100%;
  height: auto;
}

/* Služby */
#sluzby > h2 {
  text-align: center;
}
#sluzby-container {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 1rem;
}
.sluzba {
  display: flex;
  justify-content: space-between;
}

.sluzba-duration {
  margin-left: 1em;
}

.cena {
  margin-right: 0.5em;
}
.nazev {
  margin-left: 0.5em;
}

.tecky {
  flex-grow: 1;
  margin: 0 0.25em;
  border-bottom: 2px dotted #888;
}

#darkovy-poukaz {
  width: 480px;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  #sluzby-container {
    grid-template-columns: 1fr;
  }
}

/* Kontakt */
#kontakt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
}

.bold {
  font-weight: 700;
}

#kontakt-info {
  flex: 1;
}

#kontakt-mapa {
  flex: 1;
  height: 600px;
  max-width: 100%;
  border: 0;
}
.highlight {
  color: var(--pico-primary);
}

.socky {
  display: flex;
  gap: 1em;
}

.socky > a > img {
  width: 32px;
  height: 32px;
}

footer {
  background-color: #131313;
  padding: 1rem 1rem 1rem 1rem;
  font-weight: 200;
}

/* O mně */
#o-mne {
  margin: 1em 0 1em 0;
}

/* Pravidla pro mobil */
@media (max-width: 768px) {
  section {
    scroll-margin-top: 96px;
  }
  nav {
    padding: 0 0.5em;
  }
  nav > ul {
    gap: 0em;
  }
  #sluzby-container {
    grid-template-columns: 1fr;
  }
  #kontakt {
    flex-direction: column;
  }
  #kontakt-mapa {
    height: 300px;
    max-width: 100%;
    width: 100%;
  }
}
