body {
  color: #62995e;
  --bs-body-color: #62995e;
  --bs-primary: #62995e;
  --bs-link-color: #62995e;
  --bs-btn-color: #62995e;
  --bs-body-font-family: Quicksand;
}

.btn-outline-primary {
  --bs-btn-color: #62995e;
  --bs-btn-border-color: #62995e;
  --bs-btn-hover-bg: #62995e;
  --bs-btn-hover-border-color: #62995e;
  --bs-btn-active-bg: #62995e;
  --bs-btn-active-border-color: #62995e;
  --bs-btn-disabled-border-color: #62995e;
}

h1, h2, h3, .h1, .h2, .h3, .display-1, .display-2, .display-3, .display-4, .display-5 {
  font-family: "Libre Bodoni", serif;
}

a {
  color: #A18276;
}
a:hover {
  color: #64544E;
}

hr {
  border-width: 2px;
}

#hamburger-wrapper {
  position: relative;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

#hamburger-icon {
  position: absolute;
  top: 0;
  right: 0.2rem;
  left: 0.2rem;
  width: auto;
  height: 100%;
}

/* MENU ICON */
.hamburger-lines,
.hamburger-lines:before,
.hamburger-lines:after {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  background: #62995e;
  transition: 0.3s;
}

.hamburger-lines {
  height: 2px;
  margin-top: -1px;
  top: 50%;
}

.hamburger-lines:before,
.hamburger-lines:after {
  content: "";
  height: 100%;
  /* Try different values here: .25rem, .5rem, .2rem, 5rem, 10rem... */
  transform-origin: 5rem center;
}

.hamburger-lines:before {
  top: 8px;
}

.hamburger-lines:after {
  top: -8px;
}

/* CLOSE ICON */
#hamburger-input:checked ~ label .hamburger-lines {
  background: transparent;
}

#hamburger-input:checked ~ label .hamburger-lines:before,
#hamburger-input:checked ~ label .hamburger-lines:after {
  top: 0;
  transform-origin: 50% 50%;
}

#hamburger-input:checked ~ label .hamburger-lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}

#hamburger-input:checked ~ label .hamburger-lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

#navbar-container {
  border-bottom: #62995e 2px solid;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

body.template-homepage #navbar-container {
  border-bottom: none;
  margin-bottom: 0;
}

#hamburger-input {
  display: none !important;
}

#menu-content {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s max-height ease-out;
}
#menu-content .nav-link {
  color: #62995e;
}
#menu-content .nav-link:hover {
  color: #446042;
}
#menu-content .nav-link.active {
  color: #262626;
}

#hamburger-input:checked ~ #menu-content {
  display: flex;
  height: auto;
  max-height: 500px;
  transition: 0.5s max-height ease-in;
}

html, body {
  height: 100%;
}

.page-layout {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer {
  flex-grow: 0;
}

footer {
  background-color: #252525;
}

.footer-link-row {
  margin-bottom: 15px;
}
.footer-link-row svg {
  margin-right: 12px;
  width: 25px;
}
.footer-link-row svg path {
  stroke: #62995e;
}
.footer-link-row a {
  color: #62995e;
  text-decoration: none;
}
.footer-link-row a:hover {
  color: white;
}
.footer-link-row a:hover path {
  stroke: white;
}

#footer-logo-white {
  fill-opacity: 0.8;
}

#footer-logo:hover #footer-logo-white {
  fill-opacity: 1;
}

.hero {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 1.5em;
}

.hero-text-wrapper {
  position: relative;
  height: 100%;
}

.hero-text {
  color: white;
  position: absolute;
}

.hero-text.hero-text-position-TL {
  top: 20px;
  left: 10px;
}

.hero-text.hero-text-position-TR {
  top: 20px;
  right: 10px;
}

.hero-text.hero-text-position-BL {
  bottom: 20px;
  left: 10px;
}

.hero-text.hero-text-position-BR {
  bottom: 20px;
  right: 10px;
}

.hero-text.hero-text-width-100 {
  width: 100%;
}

.hero-text.hero-text-width-50 {
  width: 50%;
}

.hero-text.hero-text-width-30 {
  width: 30%;
}

@media (max-width: 768px) {
  .hero-text.hero-text-width-50,
.hero-text.hero-text-width-30 {
    width: 100%;
  }
}
.sections-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.section-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  min-height: 100%;
}
.section-card p {
  font-size: 18px;
}

.section-heading {
  border-top: 2px solid #62995e;
  padding-top: 1em;
}

.section-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  padding: 0 1rem 2rem 1rem;
}

.section-button {
  border-width: 2px;
  padding: 10px 53px 10px 53px;
  font-size: 22px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: white;
}

.separator-image {
  height: 200px;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.references {
  margin-top: 1rem;
  columns: 3 300px;
  column-gap: 2.5rem;
}

.references-reference {
  display: block;
  padding-left: 1.5rem;
  border-left: 2px solid #62995e;
  margin-bottom: 2rem;
  break-inside: avoid;
  color: #505050;
}

.references-name {
  text-align: right;
  color: #62995e;
}

@media (max-width: 992px) {
  .sections-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .section-card {
    flex-direction: row;
    gap: 40px;
  }
  .section-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .section-card-header {
    flex-basis: 53%;
  }
  .section-card-end {
    flex-basis: 45%;
    position: relative;
  }
  .section-button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section-heading {
    width: 50%;
  }
  .section-card-end {
    align-self: center;
    position: relative;
  }
  .section-button {
    width: 100%;
  }
}
.gallery {
  columns: 6 300px;
  column-gap: 2rem;
}

@media (min-width: 992px) {
  .gallery {
    columns: 6 340px;
  }
}
.gallery-item {
  margin-bottom: 2rem;
  display: inline-block;
  max-width: 516px;
}
.gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-image-caption {
  border-left: 2px solid #62995e;
  border-bottom: 2px solid #62995e;
  padding: 1rem 1.5rem;
}

#galleryModal .modal-content {
  border-radius: 0;
}
#galleryModal .modal-body {
  padding: 5px;
  text-align: center;
}
#galleryModal button.btn-close {
  position: absolute;
  right: 5px;
  padding: 0;
  background: white;
  color: black;
  border-radius: 0;
  height: 32px;
  width: 32px;
}
#galleryModal img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

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