@charset "UTF-8";
/*
Read README
*/
html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background: #ffffff;
  padding: 0;
  /* Logo */
  /* MENU */
}
.navbar .navbar-brand {
  padding-top: 6px;
  padding-bottom: 6px;
  margin-right: 2rem;
}
.navbar .navbar-brand img {
  display: block;
  max-height: 60px;
  width: auto;
}
.navbar .navbar-nav {
  align-items: center;
}
.navbar .navbar-nav .menu-item {
  position: relative;
  margin: 0 6px;
}
.navbar .navbar-nav .menu-item a {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.058em;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.navbar .navbar-nav .menu-item a:hover {
  color: #666;
}
.navbar .navbar-nav .menu-item.current-menu-item a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 41%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
}

/* MOBILE – Bootstrap breakpoint LG */
@media (max-width: 991.98px) {
  .navbar {
    position: fixed;
    top: 0;
  }
}
.carousel .carousel-item {
  position: relative;
}
.carousel .carousel-item .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carousel .carousel-item .info .title {
  text-shadow: 0 0 3px rgb(0, 0, 0);
  text-transform: uppercase;
}
.carousel .carousel-item .info .description {
  text-shadow: 0 0 3px rgb(0, 0, 0);
}
.carousel .carousel-item img {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.carousel .carousel-indicators {
  bottom: 1.5rem;
}
.carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border: none;
  border-radius: 50%;
  background-color: #b3b3b3;
  transition: all 0.3s ease;
  opacity: 1;
}
.carousel .carousel-indicators button:hover {
  transform: scale(1.2);
}
.carousel .carousel-indicators button.active {
  background-color: #e21618;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
  grid-auto-rows: 1px; /* základní jednotka pro výpočet */
}
@media (max-width: 600px) {
  .grid .grid {
    grid-template-columns: 1fr !important;
  }
}
.grid .item {
  position: relative;
}
.grid .item.wide {
  grid-column: span 2; /* zabere dvě sloupce */
}
@media (max-width: 600px) {
  .grid .item.wide {
    grid-column: span 1 !important; /* wide se změní na normální */
  }
}
.grid .item .item-content {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  min-height: 300px;
}
.grid .item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* lepší ořezování */
  vertical-align: middle;
}
.grid .item .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.grid .item .info .title {
  text-shadow: 0 0 3px rgb(0, 0, 0);
  text-transform: uppercase;
}

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