*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: var(--font-piksel) !important;
}


html, body {
  overflow-x: hidden;
  
}

@font-face {
  font-family: 'Gebuk';
  src:
    url('/assets/fonts/Gebuk-Regular.woff2') format('woff2'),
    url('/assets/fonts/Gebuk-Regular.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-piksel: 'Poppins', sans-serif;
  --font-custom: 'Gebuk', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-piksel) !important;
  background-color: #0A0A0A; 
  max-width: 100vw; 
  cursor: none;
  overflow-x: hidden; 
  position: relative;
}



.custom-cursor {
  position: absolute;
  width: 25px; /* Standardní velikost kurzoru */
  height: 25px;
  background: radial-gradient(circle, #60E3F0, #0077B6); /* Vícebarevný gradient s tmavší a světlejší modrou */
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(96, 227, 240, 0.8), 0 0 20px rgba(0, 119, 182, 0.5); /* Přidání záře */
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%); /* Vycentrování kurzoru */
  transition: transform 0.05s ease-out, background-color 0.3s ease, box-shadow 0.3s ease;
}

.line {
  position: absolute;
  width: 50px; /* Menší šířka linií */
  height: 50px; /* Menší výška linií */
  top: 50%;
  left: 50%;
  border: 2px solid rgba(96, 227, 240, 0.5); /* Linie kolem kurzoru */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998; /* Pod kurzorem */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5); /* Vycentrování a zmenšení */
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.custom-cursor-container {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
}

.custom-cursor-container.hover .custom-cursor {
  background: radial-gradient(circle, #ADE8F4, #60E3F0); /* Změna barev při hoveru */
  width: 30px; /* Zvětšení při hoveru */
  height: 30px;
  box-shadow: 0 0 15px rgba(173, 232, 244, 0.8), 0 0 30px rgba(96, 227, 240, 0.5); /* Zesílení záře */
}

.custom-cursor-container.click .line {
  opacity: 1;
  transform: translate(-50%, -50%) scale(2) rotate(360deg); /* Linie se rozšiřují a otáčí */
  animation: line-spin 1s forwards;
}

@keyframes line-spin {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2) rotate(360deg);
  }
}

a, button, .benefit-header, .steps-cards, .steps-timeline, .gallery-nav, .question  {
  cursor: none !important; /* Zabrání zobrazení jiných kurzorů */
}
  
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;      /* logo vlevo */
  margin: 20px;
  background: transparent;
  position: relative;
  z-index: 1000;
  padding: 0;  
}

.hamburger-menu {
  cursor: pointer;
  display: none; /* Hide by default */
  flex-direction: column;
  gap: 5px;
  transition: transform 0.3s ease;
}

.hamburger-menu .linka {
  width: 30px;
  height: 5px;
  background: linear-gradient(90deg, #60E3F0 70%, #FFFFFF 100%);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active .linka:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .linka:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .linka:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  display: none; /* Initially hide the mobile menu */
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: transparent;
  border-radius: 0 0 20px 20px;
  padding: 20px 0;
  z-index: 999;
}

.mobile-menu.active {
  display: flex; /* Show the menu when active */
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin: 10px 0;
  opacity: 0;
  transform: translateX(-100%); /* Start position off-screen */
  animation: slideIn 0.5s forwards; /* Trigger animation */
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #60E3F0; /* Change color on hover */
}

.mobile-menu ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.mobile-menu ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.mobile-menu ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.mobile-menu ul li:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0); /* End position at original place */
  }
}
  
  .navbar-glow {
    position: absolute;
    top: -1200px; /* Move it off-screen */
    left: -1200px; /* Move it off-screen */
    width: 2000px;
    height: 2000px;
    background: radial-gradient(circle , rgb(96, 228, 240), #0A0A0A, transparent);
    border-radius: 50%;
    z-index: -1; /* Behind the navbar content */
    opacity: 0.2;
  }
  
  .logo img {
    width: 150px;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    margin-left: auto;                 /* tlačí odkazy doprava vedle tlačítka */
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    padding: 10px 31px;
  }
  
  /* Vlastní seznam odkazů */
  .nav-links ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links ul li a {
    position: relative;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    padding-left: 12px;                /* prostor pro tečku */
  }

  .nav-links ul li a .nav-dot {
    display: none;
  }
  
  /* Aktvní tečka vlevo */
  .nav-links ul li a.activated .nav-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #60E3F0;
    border-radius: 50%;
    display: inline-block;
  }
  
  /* CTA tlačítko zůstává venku */
  .cta {
    margin-left: 20px;
  }
  .cta .button {
    padding: 10px 20px;
    border: 2px solid #60E3F0;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
  }
  
  .clients-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    margin-top: 15px; /* Closer to the hero text */
    margin-bottom: 0px; /* Margin to move it closer to the text */
  }
  
  .accepting-clients {
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid #ffffff80;
    background: linear-gradient(134.18deg, #171717cc 9.2%, #1717170d 97.9%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 330px;
    height: 39px;
  }
  
  .clients-announcement {
    display: flex;
    align-items: center;
  }
  
  .ellipse {
    border-radius: 50%;
    background: #60e3f0;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    animation: blink 2s infinite;
  }
  
  .clients-announcement p {
    font-size: 16px;
    color: #fff;
  }
  
  @keyframes blink {
    0%, 100% {
      opacity: 1;
      box-shadow: 0 0 1px 2px #60e3f0b3;
      filter: brightness(1.5);
    }
    50% {
      opacity: 0.5;
      box-shadow: none;
      filter: brightness(1);
    }
  }
  
  .social-icons-mobile {
    display: none; /* Výchozí nastavení - neviditelné */
}

  .hero {
    margin-top: -50px;
    text-align: center;
    padding: 50px 20px;
    
    position: relative; /* For positioning the hero glow */
    
  }
  
  .hero h1 {
    text-align: center;
    overflow-wrap: break-word;
    font-weight: 700;
    font-size: 68px;
    letter-spacing: -1.4px;
    line-height: 1.206;
    background: linear-gradient(90deg, #585858, #FFFFFF, #585858);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    margin: 0 auto 30px auto; /* Center and margin */
    max-width: 90%; /* Limiting the width */
  }
  
  .hero .first-line {
    display: inline-block;
  }
  
  .hero .second-line {
    display: inline-block;
  }
  
  .hero p {
    text-align: center;
    overflow-wrap: break-word;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: #c4c4c4;
    margin: 0 auto 30px auto; /* Center and margin */
    max-width: 70%; /* Limiting the width */
    margin-bottom: 30px;
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
  }
  .hero-buttons .primary-button {
    margin: 0; /* gap se dělá flexem */
  }
  .primary-button {
    padding: 15px 30px;
    background-color: transparent;
    color: #FFFFFF;
    border: 3px solid #60E3F0; /* Modrá barva borderu */
    border-radius: 50px;
    text-decoration: none;
    font-size: 500;
    font-size: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .primary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #60E3F0;
    
  }

  .hero-scroll {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .scroll-icon {
    display: inline-block;
    padding: 20px 10px;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .scroll-icon:hover {
    transform: scale(1.1);
  }

 /* ====== PARTNERS MARQUEE ====== */
.partners {
  text-align: center;
  margin: 80px 0 120px;
}
.partners h2 {
  color: #E5E7EB;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
}

/* obal, který skrývá přetékající části */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;  /* vystředí */
}

/* track pořád 2× širší, ale zrychlíme animaci */
.marquee-track {
  display: flex;
  width: calc(2 * 100%);
  animation: marquee 10s linear infinite; /* z 20s → 12s */
}

/* všechny loga stejný rozestup */
.marquee-track img {
  flex: 0 0 auto;
  height: 40px;       /* pevná výška */
  width: auto;        /* šířka se přepočítá podle poměru stran */
  object-fit: contain;
  margin: 0 40px;     /* mezera mezi logy */
  display: block;     /* odstraní případné whitespace posuny */
}

/* animace posuvu zleva doprava */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-53.5%);
  }
}

/* pokud bys chtěl zachovat scroll navíc i manuálně */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ===== projects-section ===== */
.projects-section {
  text-align: center;
  margin: 80px auto 120px;
  max-width: 1200px;
}
.projects-section h2 {
  font-family: var(--font-piksel);
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 40px;
}

/* grid karet */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 50px;
}

/* wrapper jednoho projektu */
.project-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* samotná „karta“ jen obrázek */
.project-card {
  width: 100%;
  border: 1px solid #E5E7EB; /* přidaný border */
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}
.card-image {
  width: 100%;
  padding-top: calc(295 / 593 * 100%); /* poměr 593×295 */
  background-size: cover;
  background-position: center;
}

/* nadpis + šipka pod kartou */
.project-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--font-piksel);
  font-size: 24px;
  color: #FFFFFF;
  text-decoration: none;
}
.caption-arrow {
  width: 24px;
  height: 24px;
  transform: rotate(-135deg); /* ukazuje Severovýchod */
  transition: transform 0.3s;
}
.project-caption:hover .caption-arrow {
  transform: rotate(-135deg) translate(4px, -4px);
}

/* „Další…“ tlačítko jako scroll šipka/oval */
.projects-more {
  margin-top: 40px;
}
.more-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  font-family: var(--font-piksel);
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s;
}
.more-arrow {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg); /* šipka doprava */
}
.more-button:hover {
  background-color: rgba(255,255,255,0.1);
}


  /*SERVICES*/

  .services-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 160px auto 120px;
    max-width: 1200px;
  }
  
  .service-card {
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: /*rgba(23, 23, 23, 0.8)*/transparent;
    display: flex;
    flex-direction: column;
    padding: 23px 31.9px 23px 31px;
    box-sizing: border-box;
    width: 590px;
    height: 300px;
  }
  
  .icon-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .icon-background {
    backdrop-filter: blur(24.8px);
    border-radius: 48.5px;
    border: 3.2px solid #60E3F0;
    background: linear-gradient(90deg, rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.5));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    margin-right: 16px;
  }
  
  .icon-background img {
    width: 100%;
    height: 100%;
  }
  
  .service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: left;
  }
  
  .service-card p {
    overflow-wrap: break-word;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: left;
  }

  .service-button {
    padding: 10px 20px;
    border: 3px solid #60E3F0;
    color: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: box-shadow 0.3s;
    text-align: left;
    width: fit-content;
  }
  
  .service-button:hover {
    box-shadow: 0 0 10px #60E3F0;

  }

  .service-button-gray {
    padding: 10px 20px;
    border: 3px solid #bdbdbd;
    color: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: box-shadow 0.3s;
    text-align: left;
    width: fit-content;
  }
  
  .service-button-gray:hover {
    box-shadow: 0 0 10px #cdcdcd;

  }
  /*GLOWS*/
  .glow-1 {
    position: absolute;
    top: 600px; /* Move it off-screen */
    right: -1000px; /* Move it off-screen */
    width: 2000px;
    height: 2000px;
    background: radial-gradient(circle in lch, rgb(96, 228, 240), #0A0A0A, transparent);
    border-radius: 50%;
    z-index: -1; /* Behind the navbar content */
    opacity: 0.2;
  }

  .glow-2 {
    position: absolute;
    top: 1900px; /* Move it off-screen */
    left: -1100px; /* Move it off-screen */
    width: 2000px;
    height: 2000px;
    background: radial-gradient(circle in lch, rgb(96, 228, 240), #0A0A0A, transparent);
    border-radius: 50%;
    z-index: -1; /* Behind the navbar content */
    opacity: 0.2;
  }

  .glow-3 {
    position: absolute;
    top: 3800px; /* Move it off-screen */
    right: -1000px; /* Move it off-screen */
    width: 2000px;
    height: 2000px;
    background: radial-gradient(circle in lch, rgb(96, 228, 240), #0A0A0A, transparent);
    border-radius: 50%;
    z-index: -1; /* Behind the navbar content */
    opacity: 0.2;
  }

  

  /*BENEFITS*/
  .benefits-section {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    max-width: 1440px;
    margin: 150px auto auto auto;
  }
  
  .benefits-section h2 {
    margin: 150px 20% 50px 20%;
    align-self: center;
    text-align: center;
    overflow-wrap: break-word;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
  }
  
  .benefit-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 120px; /* Přidání mezery 140px na každé straně */
  }
  
  .benefit-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 0px 20px 5px;
    background-color: rgba(23, 23, 23, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 80px; /* Zavřená karta - omezení výšky */
  }
  
  .benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .benefit-header h3 {
    overflow-wrap: break-word;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-right: 10px;
  }
  
  .arrow {
    display: inline-block;
    transition: transform 0.3s;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    padding: 3px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    margin-bottom: 5px;
  }
  
  .benefit-content {
    overflow-wrap: break-word;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #DADDDD;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    padding: auto;
  }
  
  .benefit-card.active {
    max-height: 400px; /* Otevřená karta - výška */
  }
  
  .benefit-card.active .benefit-content {
    opacity: 1;
    max-height: 400px; /* Otevření obsahu */
  }

  .benefit-card.active .arrow {
    transform: rotate(-135deg);
  }

  /*WORK GALLERY*/
  .gallery-section h2{
    text-align: center;
    overflow-wrap: break-word;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color:#FFFFFF;
    margin-top: 80px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-tab {
    padding: 10px 20px;
    border: 2px solid #60E3F0;
    background-color: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow-wrap: break-word;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125;
    color: #DADDDD;

}

.gallery-tab:hover {
    box-shadow: 0 0 10px #60E3F0;
}

.gallery-display {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gallery-images img {
    width: 100%; /* Obrázek vyplní 100 % dostupného prostoru */
    height: auto; /* Zachová proporce obrázku */
    max-width: 700px; /* Maximální šířka obrázku */
    max-height: 500px; /* Maximální výška obrázku */
    display: none;
    object-fit: contain; /* Obrázek se přizpůsobí kontejneru bez deformace */
}

.gallery-images img.active {
    display: block;
}

.icon-wrapper {
    display: flex;
    align-items: center;
}

.icon-background {
    backdrop-filter: blur(24.8px);
    border-radius: 48.5px;
    border: 3.2px solid #60E3F0;
    background: linear-gradient(90deg, rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.5));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    margin-right: 16px;
}

.gallery-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-prev {
    margin-right: 950px; 
}

.gallery-next {
    margin-left: 950px;
}

/*STEPS SECTION*/

.steps-section h2 {
  margin-top: 150px;
  margin-bottom: 20px;
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
  
}

.steps-section p {
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 400;
  font-size:16px;
  line-height: 1.5;
  color: #ADB1B1;
  margin-left: 35%;
  margin-right: 35%;
}

.steps-timeline {
  display: flex;
  justify-content: space-between; /* Zajišťuje, že čísla jsou přesně nad kartami */
  align-items: center;
  position: relative;
  margin: 80px auto 40px auto;
  max-width: 1047px;
  padding: 0 0px 0 10px; /* Malý padding, aby čísla nebyla příliš blízko kraje */
  
}

.step-indicator {
  width: 35px;
  height: 35px;
  border: 3px solid #1B1E1E; /* Border barva pro čísla */
  border-radius: 50%;
  background-color: #0A0A0A; /* Transparentní pozadí */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-wrap: break-word;
  font-weight: 500;
  font-size: 12px;
  color: #ADB1B1;
  transition: background-color 0.3s, color 0.3s;
  z-index: 2;
  margin: 0; 
}

.step-indicator.active {
  border: 3px solid #60E3F0;
}

.progress-bar {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 0px;
  height: 4px;
  background-color: #1B1E1E;
  z-index: 1;
  transition: width 0.3s ease;
  max-width: calc(100% - 38px);
}

.steps-cards {
  display: flex;
  justify-content: space-between; /* Stejné mezery jako mezi čísly */
  gap: 8px; /* Mezera mezi kartami */
  padding: 0; /* Zajistěte, aby padding neovlivňoval mezery */
  margin: 0 auto; /* Centralizuje kontejner */
  max-width: 1194px; /* Šířka kontejneru */
}

.step-card {
  width: 190px; 
  height: 212px;
  backdrop-filter: blur(32.3px);
  border-radius: 25px;
  border: 2px solid rgba(67, 67, 67, 0.5);
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.8), rgba(23, 23, 23, 0.05));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20.8px 0 19.8px 0;
  box-sizing: border-box;
  transition: border-color 0.3s;
  margin-top: 35px; 
}

.step-card.active {
  border: 3.2px solid #60E3F0;
  backdrop-filter: blur(32.3px);
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.5));
}

.step-title {
  position: relative;
  margin-right: 100px;
  overflow-wrap: break-word;
  font-size: 12px;
  font-weight: 500;
  color: #ADB1B1;
  line-height: 1.5;
}

.step-card h3 {
  overflow-wrap: break-word;
  font-size: 17px;
  font-weight: 500;
  color: #DADDDD;
  margin: 20px 20px 0px 20px;
  text-align: left;
  line-height: 1.5;

}

.card-bar {
  width: 80px;
  height: 2px;
  background: #60E3F0;
  margin-top: auto;
  margin-bottom: 10px;
}

.steps-cards .step-card:hover {
  border: 3.2px solid #60E3F0;
}

.steps-cards .step-card:not(:hover) .card-bar {
  background: rgba(193, 197, 197, 0.2);
}

.mobile-steps-timeline {
  display: none;
}
/*TEAM*/
.team-section {
  width: 100%;
  max-width: 1200px; /* Maximální šířka 1200px */
  margin: 150px auto;
  padding: 0 20px;
}

.team-section h2 {
  margin-top: 180px;
  text-align: center;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 50px;
}

/* Cards container */
.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 karty vedle sebe */
  grid-template-areas:
    "card1 card2";
   /* "card3 card3"; Třetí karta centrovaná na druhém řádku */ 
  gap: 50px;
  justify-items: center;
  margin: 50px auto;
}

/* Grid area assignments */
.team-card:nth-child(1) {
  grid-area: card1;
}

.team-card:nth-child(2) {
  grid-area: card2;
}
/*
.team-card:nth-child(3) {
  grid-area: card3;
}
*/
/* Cards styling */
.team-card {
  width: 100%;
  max-width: 400px; /* Zmenšená max šířka karet */
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 100%;
  max-width: 313px;
  height: 313px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1.3px solid rgba(255, 255, 255, 0.5);
}

.team-photo img {
  width: 105%;
  height: 105%;
  object-fit: cover;
}

.team-card h3 {
  backdrop-filter: blur(26.2px);
  border-radius: 217.8px;
  border: 1.3px solid rgba(255, 255, 255, 0.5);
  background: url('../assets/images/frame_26080430.png') 329.25%, linear-gradient(134.18deg, rgba(23, 23, 23, 0.8) 9.2%, rgba(23, 23, 23, 0.05) 97.9%);
  margin-bottom: 14.4px;
  width: 400px;
  height: 63px;
  line-height: 63px;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
}

.team-card p {
  backdrop-filter: blur(24.8px);
  border-radius: 63.6px;
  border: 1.3px solid #60E3F0;
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.5));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18.7px;
  width: 200px;
  box-sizing: border-box;
  font-size: 18px;
  color: #FFFFFF;
}

/*CALL RSERVE*/

.reserve-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 120px auto 10px auto;
  text-align: left;
  max-width: 900px; /* Maximální šířka celé sekce */
  padding: 0 0px 0 0px; /* Přidání marginů ze stran */
}

.reserve-section-text {
  max-width: 383px;
}

.reserve-section-text h2 {
  display: inline-block;
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0px;
}

.reserve-section-text p {
    text-align: center;
    overflow-wrap: break-word;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ADB1B1;
}

.reserve-section-image-button {
  display: flex;
  flex-direction: column; /* Obrázek nad tlačítkem */
  align-items: center;
  gap: 20px;
  
}

.reserve-section-image {
  width: 80px;
  height: 60px;
  filter: grayscale(100%); 
}

.reserve-section-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reserve-section-button {
  text-align: center;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #60E3F0;
  text-decoration: none;
  width: 300px;
  overflow-wrap: break-word;
  font-weight: 700;
  font-size: 35px;
  line-height: 1;
  color: #FFFFFF;

}

/* ===== References Section ===== */
.references-section {
  text-align: center;
  padding: 80px 20px;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto 120px;
}
.references-section h2 {
  font-family: var(--font-piksel);
  font-size: 48px;
  color: #FFFFFF;
  margin-bottom: 60px;
  font-weight: 500;
}

/* Grid tří karet */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Jedna recenze */
.reference-card {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* Hlavička: avatar + jméno+ikonka */
.ref-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.ref-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}
.ref-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ref-name {
  font-family: var(--font-piksel);
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 500;
}
.ref-verified {
  width: 20px;
  height: 20px;
  background-color: #0095f6;               /* tvoje Instagramová modrá */
  mask: url('assets/vectors/verified.svg') no-repeat center;
  -webkit-mask: url('assets/vectors/verified.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

/* Text reference */
.ref-text {
  font-family: var(--font-piksel);
  font-size: 16px;
  line-height: 1.5;
  color: #DADDDD;
  flex-grow: 1;
}

/* Paginační tečky */
.references-pagination {
  margin-top: 40px;
}
.references-pagination .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: #555; /* neaktivní */
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.references-pagination .dot.active {
  background: #60E3F0; /* aktivní */
}

/*FAQ*/

.faq-title {
  margin-top: 180px;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}

.faq-description {
  text-align: center;
  font-size: 18px;
  color: #ADB1B1;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  width: 550px;
  margin-right: 60px;
}


.faq-answers-mobile {
  display: none;
}
.desktop-faq{
width: 500px;
}

.question {
  font-size: 20px;
  font-weight: 500;
  padding: 20px;
  margin-bottom: 10px;
  background-color: rgba(23, 23, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden;
}

.question.active {
  border: 2px solid #60E3F0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
}

.faq-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 3px;
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
  margin-bottom: 5px;
}

.question.active .faq-arrow {
  transform: rotate(320deg);
}

.answer {
  margin-top: 30px;
  text-align: left;
  display: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  overflow-wrap: break-word;
}

.answer.active {
  display: block;
}

/*SHAPING*/

.highlight-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  
}

.highlight-content {
  text-align: center;
}

.highlight-text h2 {
  font-weight: 400;
  font-size: 72px;
  line-height: 1.333;
  color: #fff;
  margin: 0;
  font-family: var(--font-custom) !important;
}

.highlight-text h2 .blue {
  font-family: var(--font-custom) !important;
  color: #05DCF1;
  
}
.action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.scroll-to-top {
  backdrop-filter: blur(24.8px);
  border-radius: 50px;
  border: 3.2px solid #60E3F0;
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.5));
  width: 210px;
  padding: 10px 20px 10px 20px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  }


.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.social-icons img:hover {
  opacity: 0.7;
}

/*FOOTER*/
footer {
  position: relative;
}

.footer-section {
  margin-top: 180px;
 
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}

.footer-logo img {
  height: 30px; /* Nastavení velikosti loga */
}

.footer-copyright p {
  font-weight: 400;
  font-size: 14px;
  color: #DADDDD;
}
  @media screen and (max-width: 1050px) {
    .gallery-prev {
      margin-top: 200px;
        left: 80px;
        margin-bottom: 40px;
    }
    
    .gallery-next {
      margin-top: 200px;
        right: 80px;
        margin-bottom: 40px;
    }

  }

  @media screen and (max-width: 1024px) {
    .team-section{
      margin: 0;
    padding: 0;
    }

    .team-cards {
      grid-template-columns: 1fr; /* Karty pod sebou na menších obrazovkách */
      grid-template-areas: 
        "card1"
        "card2"
        "card3"; /* Třetí karta uprostřed */
      gap: 30px;
      justify-items: center; /* Centrovat karty */
    }
  
    .team-card {
      max-width: 90%; /* Snížená šířka na menších zařízeních (90%) */
    }
  
    .team-card h3 {
      width: 50%; /* Snížení šířky textu */
    }
    .team-card p {
      width: 30%;
    }
  }



  @media screen and (max-width: 768px) {
  body{
    cursor:auto;
  
  }

  .glow-1 {
    position: absolute;
    top: 600px; /* Move it off-screen */
    right: -533px; /* Move it off-screen */
    
    
  }

  .glow-2 {
    position: absolute;
    top: 2300px; /* Move it off-screen */
    left: -586px; /* Move it off-screen */
    
    
  }

  .glow-3 {
    position: absolute;
    top: 4000px; /* Move it off-screen */
    right: -533px; /* Move it off-screen */
    
  }

  .custom-cursor-container {
    display: none !important; /* Skryje celý custom cursor */
  }

  /*NAVBAR*/

  .nav-container {
    border: none;
  }

  .nav-links, .cta {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    background-color: transparent;
  }

  .mobile-menu ul li {
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 0.5s forwards;
  }
  
  .navbar {
    border: none; 
    margin: 20px; 
    
  }

  .social-icons-mobile {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 20px; 
    margin-bottom: 20px;
    z-index: 1000;
    position: relative;
}

.social-icons-mobile img {
    width: 25px;
    height: 25px;
    pointer-events: auto;
}

  .first-line, .second-line {
    font-size: 40px;
    display: inline;
    line-height: 1.2;
  } 

  .benefits-section h2, .gallery-section h2, .steps-section h2, .team-section h2, .reserve-section-text h2, .references-section h2 {
    font-size: 36px;
  }

  .hero p {
    max-width: 95%;
    font-size: 16px;
  }
  .hero-buttons {
    gap: 10px;    /* menší mezera na mobile */
    flex-wrap: wrap;
  }

   /* Move content when mobile menu is active */
   .content {
    transition: margin-top 0.3s ease;
  }

  .content.shifted {
    margin-top: 200px; /* Dynamically adjusted with JavaScript */
  }

  .marquee-track {
    animation: marquee 8s linear infinite;
  }
  .marquee-track img {
    max-height: 140px;
    margin: 0 20px;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-134%);
    }
  }

  .projects-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 60px;      /* zmenšeno z 100px */
    padding: 0 16px;    /* odsazení od krajů obrazovky */
  }

  /* Vystředění obsahu každé položky */
  .project-item {
    align-items: center;
  }

  /* Caption (nadpis + šipka) pod kartou na střed */
  .project-caption {
    justify-content: center;
    margin-top: 12px;   /* mírně menší odsazení */
    font-size: 18px;
  }

  /* Očištění karty */
  .project-card {
    width: 100%;
  }

  /* Případně zmenšení nadpisu sekce */
  .projects-section h2 {
    font-size: 36px;
  }
  

  /*SERVICES*/
  .services-section {
    flex-direction: column; /* Přepnutí karet pod sebe */
    align-items: center; /* Vycentrování karet na mobilu */
}

.service-card {
    width: 90%; /* Upraví šířku karet na 100% pro lepší vzhled na mobilu */
    max-width: 400px; /* Nastaví maximální šířku karet */
    height: auto;
    margin-bottom: 20px; /* Přidá mezery mezi kartami na mobilu */
}
  /*BENEFITS*/
  .benefits-section{
    margin-top: 0px;
  }

  .benefit-cards-container {
    grid-template-columns: 1fr; /* Seřadí karty pod sebe */
    gap: 20px;
    padding: 0 20px; /* Zmenšení mezer na mobilu */
  }

  .benefits-section h2 {
    font-size: 28px;
  }

  .benefit-header h3 {
    font-size: 16px;
  }
  /*GALLERY*/
  .gallery-images img {
    max-width: 90%;
    max-height: auto;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;

}

.gallery-prev {
  margin-top: 200px;
    left: 80px;
    margin-bottom: 40px;
}

.gallery-next {
  margin-top: 200px;
    right: 80px;
    margin-bottom: 40px;
}

 /*STEPS SECTION*/
  /* Skryj desktopovou timeline */
  .steps-timeline {
    display: none;
  }

  .steps-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .steps-cards {
    display: flex;
    flex-direction: column;
    width: 100%; /* Karty se roztáhnou přes celou šířku na mobilu */
    align-items: center;
    gap: 5px; /* Mezera mezi kartami */
  }

  .step-card {
    width: 70%; /* Karty budou mít 90 % šířky obrazovky, zarovnáno na střed */
    max-width: 400px; /* Maximální šířka pro zajištění pěkného vzhledu */
    height: 150px; /* Větší výška pro lepší viditelnost obsahu */
    padding: 20px; /* Přidání paddingu pro estetický vzhled */
    margin-bottom: 0px;
  }

  .steps-section h2 {
    width: 95%;
  }


  .steps-section p {
    font-size: 16px;
    margin-bottom: 20px;
    width: 90%;
    color: #ADB1B1;
  }
  /*TEAM*/
  .team-section {
    margin: 0;
    padding: 0;
  }

  .team-cards {
    grid-template-columns: 1fr; /* Karty pod sebou na menších obrazovkách */
    gap: 20px; /* Menší mezery mezi kartami */
  }

  .team-card {
    max-width: 80%; /* Zajištění, že karty nebudou přes celou šířku */
  }

  .team-card h3 {
    width: 80%; /* Zmenšené textové bloky */
  }
  .team-card p {
    width: 60%;
  }
/*CALL RESERVE*/

.reserve-section {
  flex-direction: column;
  text-align: center;
  padding: 0 20px; /* Zmenšení marginů pro mobilní verzi */
}

.reserve-section-image-button {
  gap: 10px;
}
/*FAQ*/
.faq-container {
  flex-direction: column;
  padding: 20px;
  margin-top: 0px;
}

.faq-questions {
  width: 100%;
}

.desktop-faq {
  display: none;
}

.faq-answers-mobile {
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.faq-answers-mobile .question.active .answer {
  display: block;
}
.question{
  font-size: 16px;
}
.answer {
  font-size: 14px;
}

.arrow{
  transform: rotate(45deg);
  
  }

  .faq-answers-mobile .question.active .arrow {
    transform: rotate(-135deg);
}

/*Shaping*/

.highlight-section {
  margin-bottom: 80px;
  margin-top: 100px;
  padding: 20px 0;
  font-family: var(--font-custom) !important;
}

.highlight-text h2 {
  font-size: 36px;
}

.action-row {
  flex-direction: column;
  gap: 10px;
}

.scroll-to-top {
  font-size: 14px;
  padding: 8px 16px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/*FOOTER*/
.footer-section {
 padding: 0;
 margin-top: 80px;
}

.footer-content {
  flex-direction: column;
  justify-content: center;
}

.footer-logo {
  margin-bottom: 10px;
  
}

.footer-copyright p {
  text-align: center;
  
}
  }

