/* Importování Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mouse+Memoirs&display=swap');



body {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    background-color: black;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


h3{
  color: #f08c09;
}

/* ========================= */
/* NAVBAR                    */
/* ========================= */

.navbar {
    height: 8vh;
    padding: 0.5rem;
    position: absolute;
}

.navbar-brand img {
  margin-left: 30px;
  margin-top: 20px;
  width: 70px;
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
    color: #fff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus, 
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #fff;
    font-weight: 300;
    position: relative;
    font-family: "Montserrat", serif;
    font-size: 1.5rem;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #f08c09;
    visibility: hidden;
    transition: 0.1s ease-in-out;
}

.nav-link:hover::before, 
.nav-link.active::before {
    width: 100%;
    visibility: visible;
}

.offcanvas-body .nav-link {
    color: #fff !important;
    display: flex;
    justify-content: center;
}

.offcanvas-header {
    background-color: gray;
}

.offcanvas-header .btn-close {
    color: white !important;
}

/* ========================= */
/* NAVBAR                    */
/* ========================= */

.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.navbar-brand {
    font-weight: bold;
}

/* ========================= */
/* HERO SECTION              */
/* ========================= */

.hero {
    background-image: url(img/Pexels\ Photo\ by\ Lisa\ Fotios-\(Compressify.io\).webp);
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-family: "Montserrat";
}

.hero::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.cta-button {
    height: 60px;
  width: 180px;
  padding: 15px;
  font-size: 1.2rem;
  background-color: #fff;
  color: black;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 49px;
  transition: 0.5s;
  font-weight: 600;
}

.cta-button:hover {
    background-color: #f08c09;
    color: white;
    transition: 0.5s;
    transform: scale(1.05);
    box-shadow: #f08c09 0px 0px 20px;
    text-shadow: #f08c09 0px 0px 20px;
    filter: blur(0.5px);
    text-decoration: none;
    text-align: center;
}

.cta-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.cta-text {
    position: absolute;
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 5px;
    right: 14rem;
    top: 5rem;
    transform: rotate(-40deg);
    font-family: "Mouse Memoirs", serif;
    white-space: nowrap;
}

.arrow-img {
    width: 8vh;
    height: 8vh;
    position: absolute;
    margin-right: 15rem; 
    bottom: -3rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 5px #f08c09) drop-shadow(0 0 10px #f08c09) drop-shadow(0 0 20px #f08c09);
    text-shadow: #f08c09 0px 0px 20px;
    transition: 0.5s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}


/* ========================= */
/* HERO SECTION              */
/* ========================= */

/* ========================= */
/* CONTENT SECTION           */
/* ========================= */

.content-section {
  position: relative;
  overflow: hidden; /* Zajistí, že obsah sekce nebude přesahovat */
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/pozadi.webp'); /* Změňte na cestu k vašemu obrázku */
  background-size: cover;
  background-position: center;
  filter: blur(15px) brightness(25%);
  z-index: -1;
  pointer-events: none; /* Zajistí, že pseudo-element nebude interaktivní */
}

.nadpisy-h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  color: white;
  text-align: center;
  font-weight: bold;
  margin: 0;
  margin-top: 50px;
  padding: 1rem 0;
}

.line2 {
  display: flex;
  justify-content: center;
  width: 100%;
}

.text-hore {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 20px;
  font-family: "Montserrat", serif;
}

.embla-section {
  background-color: black;
  color: #fff;
}

/* ========================= */
/* EMBLA SLIDER            */
/* ========================= */

.embla {
  max-width: 90%;
  margin: 50px auto;
  position: relative;
  padding-top: 40px;
}

.embla__viewport {
  overflow: hidden;
  padding: 50px;
}

.embla__container {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.embla__slide {
  flex: 0 0 calc(16.666% - 0.85rem);
  min-width: 0;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
  background: transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  text-decoration: none;
  color: inherit;
  display: block;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.base-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 2px;
  transition: transform 0.5s ease;
  filter: grayscale(100%); /* Výchozí černobílý efekt */
    transition: filter 0.5s ease-in-out, transform 0.5s ease-in-out; /* Plynulý přechod tam i zpět */
}

.base-image:hover {
  filter: grayscale(0%); /* Barevný efekt při najetí kurzorem */
    transform: scale(1.05); /* Jemné zvětšení obrázku při najetí kurzorem */
}

.title {
  height: 60px;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3px);
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  z-index: 2;
  color: #000;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.embla__slide:hover .card {
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.embla__slide .base-image {
  transition: transform 0.3s ease-in-out;
}

.embla__slide:hover .base-image {
  transform: scale(1.05);
}

.embla__buttons {
  position: absolute;
  top: 50%;
  width: calc(100% + 60px);
  left: -30px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 70;
}

.embla__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
  pointer-events: auto;
}

.embla__button:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.embla__button:disabled {
  opacity: 0.3;
  cursor: default;
  transform: scale(1);
}

.embla__button__svg {
  width: 50%;
  height: 50%;
}

.map-container {
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
}

.map-container img {
  opacity: 0.8;
}

.landmark {
  transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.3s;
  z-index: 1;
}

.marker {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.text-link {
  text-decoration: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: -30px; /* Změna pozice nad markerem */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 5px;
  display: none;
  white-space: nowrap;
}

.landmark:hover .text-link {
  display: block;
}

.landmark:hover .marker {
  transform: scale(1.2);
}

.legend {
  text-align: left;
  color: black;
}

.legend-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}


/* Náš tým */
.team-member {
  margin-bottom: 3rem;
}

.img-tym {
  width: 100%;
  max-width: 350px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  transition: 0.5s;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #f08c09;
  filter: drop-shadow(0 0 5px #f08c09) drop-shadow(0 0 10px #f08c09) drop-shadow(0 0 20px #f08c09);
  text-shadow: #f08c09 0px 0px 20px;
  text-decoration: none;
  color: inherit;
  display: block;
  
}

.img-tym2{
  float: right;
  width: 100%;
  max-width: 350px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  transition: 0.5s;
  margin-right: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #f08c09;
  filter: drop-shadow(0 0 5px #f08c09) drop-shadow(0 0 10px #f08c09) drop-shadow(0 0 20px #f08c09);
  text-shadow: #f08c09 0px 0px 20px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.img-tym:hover{
  transition: 0.5s;
  transform: scale(1.1);
}

.img-tym2:hover{
  transition: 0.5s;
  transform: scale(1.1);
}

.nadpis-tym{
  font-size: 50px;
}

@media (max-width: 768px) {
  .img-fluid{
    max-width: 180%;
  }
  .img-tym, .img-tym2 {
    float: none; /* Odstranění zarovnání vlevo/vpravo */
    margin: 0 auto; /* Zarovnání na střed */
    display: block; /* Zajištění správného zobrazení */
}

  .team-member {
      text-align: center;
  }

  .img-tym2{
    float: none;
  }

  .team-member .col-md-6 {
      margin-bottom: 1.5rem;
  }

  .marker{
    height: 20px;
    width: 20px;
  }

  .card{
    width: 100%;
    margin: 0 auto;
  }

  .arrow-img {
    animation: none; /* Animace je vypnuta na menších obrazovkách */
}
  
}

/* Hodnocení */

/* Kontejner pro carousel */
.carousel-container {
  overflow: hidden; /* Skryje obsah, který přesahuje */
  width: 100%; /* Šířka kontejneru */
  position: relative;
}

/* Dráha carouselu */
.carousel-track {
  display: flex; /* Uspořádání karet vedle sebe */
  gap: 20px; /* Mezera mezi kartami */
  will-change: transform; /* Optimalizace pro plynulou animaci */
}

/* Karty hodnocení */
.karta {
  flex: 0 0 300px; /* Pevná šířka karty */
  border-radius: 15px;
  background-color: #333232;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.karta:hover {
  transform: scale(1.05); /* Zvýraznění při najetí myší */
  transition: transform 0.3s;
}

/* Obsah karty */
.tělo-karty {
  text-align: center;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.jméno {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.text-hodnocení {
  font-size: 0.85rem;
  color: #ece9e9;
  margin-bottom: 0.8rem;
}

.hodnocení i {
  font-size: 1rem;
}

/* Obsah karty */
.tělo-karty {
  text-align: center;
  flex-grow: 1;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.jméno {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.text-hodnocení {
  font-size: 0.85rem;
  color: #ece9e9;
  margin-bottom: 0.8rem;
}

.hodnocení i {
  font-size: 1rem;
}

/* Responzivní úpravy */
@media (max-width: 768px) {
  .karta {
      height: 220px; /* Menší výška na menších obrazovkách */
  }

  .avatar {
      width: 50px;
      height: 50px;
  }

  .text-hodnocení {
      font-size: 0.8rem;
  }
}

/* Hodnocení */



/* Media Queries for Responsiveness */
@media (max-width: 1600px) {
  .mapa{
    display: none;
  }
  .embla__slide {
      flex: 0 0 calc(20% - 0.8rem);
  }
}

@media (max-width: 1200px) {
  .embla__slide {
      flex: 0 0 calc(25% - 0.75rem);   
  }

  .marker{
    height: 25px;
    width: 25px;
  }
}

@media (max-width: 1125px ){
  .nav-link{
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  .embla__slide {
      flex: 0 0 calc(33.333% - 0.67rem);
  }

  .offcanvas-body .nav-link{
    color: #000 !important;
  }

  .nav-link{
    font-size: 1.5rem;
  }

  .card-text{
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .embla__slide {
      flex: 0 0 calc(50% - 0.5rem);
  }
}

/* ========================= */
/* FOOTER SECTION            */
/* ========================= */

footer {
  background-color: #fff;
  color: #000;
  padding: 20px;
}

footer h5 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Montserrat", serif;
  margin-bottom: 20px;
  text-align: center;
  color: #f08c09;
  text-shadow: #f08c09 0px 0px 20px;
}

footer p {
  padding: 0;
  color: #838282;
  font-size: 1.1rem;
  transition: 0.5s;
  font-family: "Montserrat", serif;
  text-align: center;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
  margin: 0 auto; /* Zarovnání na střed */

}

footer p:hover {
  color: black;
  transform: scale(1.1);
  transition: 0.5s;
  text-decoration: none;
  text-align: center;
  margin: 0 auto; /* Zarovnání na střed */
  text-shadow: #f08c09 0px 0px 20px;
}

footer a {
  text-decoration: none;
  padding: 10px;
  transform: 0.5s;
}

.hr-line {
  display: none;
}

.btn-primary{
  background-color: #dfdddd;
  color: black;
  border: none;
  transition: 0.5s;
  width: 100px;
  height: 40px;
  font-weight: 500;
}

.btn-primary:hover{
  transition: 0.5s;
  background-color: #f08c09;
  color: white;
}


@media (max-width: 390px) {
  .cta-text {
      right: 13rem;
  }

  .arrow-img {
      width: 7vh;
      height: 7vh;
  }

  .nadpisy-h2 {
      font-size: 1.8rem;
  }

  .line2 {
      display: none;
  }

  .hr-line {
      display: block;
  }

  .offcanvas-body .nav-link{
    color: #000 !important;
  }
}