@charset "UTF-8";
@font-face {
  font-family: "Avenir LT Pro Roman";
  src: local("Avenir LT Pro Roman"), url("assets/fonts/AvenirLTProRoman.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Avenir LT Pro Heavy";
  src: local("Avenir LT Pro Heavy"), url("assets/fonts/AvenirLTProHeavy.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Avenir LT Pro Medium";
  src: local("Avenir LT Pro Medium"), url("assets/fonts/AvenirLTProMedium.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Adobe Garamond Pro Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Adobe Garamond Pro Italic"), url("assets/fonts/AGaramondPro-Italic.woff") format("woff");
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Avenir LT Pro Roman", sans-serif;
  background-color: #fbf8ef;
  color: #304851;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: white;
  color: #304851;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.12);
  z-index: 1000;
}
header a {
  text-decoration: none;
  color: #304851;
}
header h1 {
  font-size: 22px;
  font-weight: normal;
}
header h1:hover {
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-right: 120px;
}
nav a {
  font-size: 22px;
  font-weight: normal;
  color: #304851;
  text-decoration: none;
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
}
.contact img {
  height: 32px;
}
.contact .phone {
  margin-left: 40px;
}
.contact .instagram {
  margin-left: 40px;
}

.content {
  width: 100%;
  min-height: calc(100vh - 60px - 20px);
  display: flex;
  overflow: hidden;
  color: #fbf8ef;
}
.content:first-of-type {
  padding-top: 80px;
}

.left-section, .right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#homepage .right-section {
  background-image: url("assets/images/pozadí-se čtverečkama.png");
  background-size: cover;
}
#homepage .left-section {
  background-image: url("assets/images/hlavni_obrazek.jpeg");
  background-size: cover;
}

section h2 {
  font-family: "Adobe Garamond Pro Italic", sans-serif;
  font-weight: lighter;
  font-size: 38px;
  margin-bottom: 60px;
}
section p {
  font-family: "Avenir LT Pro Heavy", sans-serif;
  font-size: 60px;
  margin: 0;
}
section button {
  background-color: transparent;
  color: #fbf8ef;
  border: 2px solid #fbf8ef;
  padding: 20px 40px;
  margin-top: 60px;
  font-size: 22px;
}
section button:hover {
  border: 2px solid #304851;
  color: #304851;
  cursor: pointer;
}

#main-info {
  text-align: center;
}

#informace .left-section {
  padding: 10px;
  background-image: url("assets/images/pozadí-se čtverečkama.png");
  background-size: cover;
}
#informace .left-section p {
  font-family: "Avenir LT Pro Roman", sans-serif;
  font-size: 22px;
  margin: 2px;
}
#informace .left-section h3 {
  font-family: "Avenir LT Pro Heavy", sans-serif;
  font-size: 22px;
  margin: 0;
}
#informace .left-section .divider {
  display: flex;
  align-items: center;
  width: 80%;
  margin-bottom: 40px;
}
#informace .left-section .divider .divider-image {
  margin-right: 20px;
}
#informace .contact-mail {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 22px;
  width: 90%;
}
#informace .contact-mail div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#informace .right-section {
  color: #304851;
  padding: 10px;
}
#informace .right-section img {
  margin-bottom: 100px;
  max-width: 90%;
}
#informace .right-section p {
  font-family: "Avenir LT Pro Medium", sans-serif;
  font-size: 22px;
  text-align: center;
}
#informace section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
}

/* Container to add some padding around the table */
.table-container {
  width: 90%;
  max-width: 800px;
  padding: 20px;
  border-radius: 8px;
}

/* Styling the table */
table {
  width: 100%;
  border-collapse: collapse;
  color: #304851;
  border: #304851 1px solid;
  font-size: 16px;
}

/* Table caption styling */
caption {
  caption-side: top;
  font-size: 18px;
  color: #304851;
  border: #304851 1px solid;
  border-bottom: none;
  padding: 12px 15px;
}

/* Header row styling */
thead {
  color: #304851;
  border: #304851 1px solid;
}

th, td {
  text-align: left;
  padding: 12px 15px;
  border: #304851 1px solid;
}

/* Zebra striping for table rows */
/* Hover effect for table rows */
tbody tr:hover {
  background-color: #f1f1f1;
}

.content-full {
  width: 100%;
  min-height: calc(100vh - 60px - 20px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #fbf8ef;
}
.content-full:first-of-type {
  padding-top: 80px;
}

.pricing-note {
  color: #304851;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 16px !important;
  }
  nav {
    gap: 40px;
  }
  table {
    font-size: 14px;
  }
  .table-container p {
    font-size: 14px;
  }
  header a {
    font-size: 16px !important;
  }
  h2 {
    font-size: 30px !important;
  }
  caption {
    font-size: 16px !important;
  }
  .right-section p, .left-section p {
    font-size: 20px !important;
  }
  .right-section h3, .left-section h3 {
    font-size: 20px !important;
  }
  header {
    padding: 10px 30px;
  }
  nav {
    margin-right: 60px;
  }
  nav .contact {
    display: none;
  }
  #homepage .left-section {
    display: none;
  }
  #homepage p {
    font-size: 48px !important;
  }
  #homepage button {
    font-size: 20px !important;
  }
  #informace {
    flex-direction: column;
  }
  #informace .divider {
    flex-direction: column;
    gap: 20px;
  }
  #informace .divider .divider-content {
    width: 100%;
  }
  #informace .divider .divider-image {
    margin: 0;
  }
  #informace .divider .divider-image img {
    max-height: 70px;
  }
  #informace .contact-mail {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  #informace .contact-mail .img-support {
    width: 30%;
  }
  #informace .contact-mail div {
    align-items: center;
    width: 70%;
    justify-content: space-around;
    gap: 0;
  }
  #informace .contact-mail div span {
    width: 70%;
  }
  #informace p {
    margin-bottom: 5px;
  }
  #informace .left-section, #informace .right-section {
    padding: 60px 20px;
  }
  #informace .left-section section, #informace .right-section section {
    gap: 10px;
  }
  #informace .left-section img, #informace .right-section img {
    max-width: 80%;
    max-height: 40px;
  }
  #informace .left-section .mapa, #informace .right-section .mapa {
    max-height: none;
    margin-bottom: 30px;
  }
}

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