*,
*::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: -1000;
  /* 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.active .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;

}

.profile-page {
  max-width: 1200px;
  margin: 80px auto 120px;
  padding: 0 20px;
  color: #fff;
  position: relative;
}

/* Back link */
.back-nav {
  margin-bottom: 16px;
  position: relative;
  z-index: 9999;
}

.back-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s, transform .2s, opacity .2s;
}

.back-link:hover {
  color: #60E3F0;
  transform: translateX(-6px);
  opacity: .9;
}

/* ===================== */
/* HERO – jemné spacingy */
/* ===================== */
.profile-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  /* bylo 40px */
  align-items: center;
  margin-bottom: 56px;
  /* bylo 48px */
}

.profile-photo {
  position: relative;
}

.profile-photo img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: saturate(1.1) contrast(1.02);
  position: relative;
  z-index: 9999;
}

.profile-photo .ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(1200px 1200px at 30% 20%, rgba(96, 227, 240, .2), transparent 60%);
  border: 1px solid rgba(229, 231, 235, .5);
  pointer-events: none;
}

/* textový sloupec – mírně omezená šířka, ať to líp drží rytmus */
.profile-head {
  max-width: 720px;
}

.profile-head .title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.title-arrow {
  width: 36px;
  height: 36px;
  transform: rotate(-135deg);
  opacity: .9;
}

.profile-head h1 {
  font-size: 54px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -.4px;
}

.profile-head .verified {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 8px;
}

.role {
  color: #DADDDD;
  margin: .5rem 0 1rem;
  font-weight: 500;
}

.one-liner {
  color: #DADDDD;
  margin: 0 0 18px;
  max-width: 60ch;
}

.meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0 0 22px;
}

.meta li {
  color: #ADB1B1;
  font-size: 14px;
}

.meta .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60E3F0;
  box-shadow: 0 0 8px #60E3F0aa;
  margin-right: 6px;
  transform: translateY(-1px);
}

/* CTA – perfektní centrování textu uvnitř tlačítka */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 9999;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* centrování */
  line-height: 1;
  /* žádné posuny textu */
}

.primary-button {
  height: 50px;
  /* místo paddingu – 100% centrování */
  padding: 0 26px;
  border-radius: 50px;
  border: 3px solid #60E3F0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
}

.primary-button:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 12px #60E3F0;
}

.ghost-button {
  height: 48px;
  /* fix: „Napsat e-mail“ bude přesně uprostřed */
  padding: 0 22px;
  border-radius: 50px;
  border: 1px solid #E5E7EB;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  background: rgba(23, 23, 23, .35);
  transition: border-color .2s, transform .2s, background .2s;
}

.ghost-button:hover {
  transform: translateY(-1px);
  border-color: #60E3F0;
  background: rgba(23, 23, 23, .5);
}

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-row a {
  color: #ADB1B1;
  text-decoration: none;
  font-size: 14px;
}

.social-row a:hover {
  color: #60E3F0;
}

/* O mně */
.profile-bio {
  margin: 56px 0 32px;
}

/* lehce větší nadechnutí */
.profile-bio h2 {
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 500;
}

.profile-bio p {
  color: #DADDDD;
  margin: 0 0 18px;
  max-width: 70ch;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  background: rgba(23, 23, 23, .25);
}

/* Co dělám nejlíp */
.signature-skills {
  margin: 44px 0;
}

.signature-skills h2 {
  font-size: 28px;
  margin: 0 0 14px;
  font-weight: 500;
}

.skill-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-chips li {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 10px 14px;
  background: rgba(23, 23, 23, .25);
}

/* Projekty */
.profile-projects {
  margin: 60px 0 22px;
}

.profile-projects h2 {
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: 500;
}

.profile-projects .grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.project-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, .4);
  background: linear-gradient(134deg, rgba(23, 23, 23, .6), rgba(23, 23, 23, .2));
  transition: transform .25s;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.project-card .card-meta {
  padding: 14px 16px 16px;
}

.project-card .pill {
  font-size: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 4px 10px;
  opacity: .9;
}

.project-card h3 {
  margin: 10px 0 0;
  font-size: 20px;
}

.project-card:nth-child(odd) {
  transform: translateY(6px);
}

.project-card:nth-child(even) {
  transform: translateY(-6px);
}

.project-card:hover {
  transform: translateY(-2px) scale(1.01);
}

/* Reference (mini) */
.profile-testimonial {
  margin: 48px 0;
}

.t-card {
  border: 1px solid rgba(229, 231, 235, .4);
  border-radius: 20px;
  padding: 24px 26px;
  max-width: 900px;
  background: rgba(23, 23, 23, .25);
}

.t-card blockquote {
  margin: 0 0 10px;
  color: #DADDDD;
  font-size: 18px;
  line-height: 1.5;
}

.t-card figcaption {
  color: #ADB1B1;
  font-size: 14px;
}

/* Switch na další vizitku – CTA doprava a víc dechu */
.profile-switch {
  margin-top: 48px;
}

.switch-card {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(229, 231, 235, .4);
  border-radius: 18px;
  padding: 18px 20px;
  /* větší padding */
  background: rgba(23, 23, 23, .25);
  max-width: 780px;
  /* více prostoru */
}

.switch-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.switch-card>div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* řádkově + vyplnit */
.switch-card h3 {
  margin: 0;
  font-size: 20px;
}

.switch-card p {
  margin: 0;
  color: #ADB1B1;
}

.switch-card .ghost-button {
  margin-left: auto;
  height: 48px;
  padding: 0 22px;
}

/* CTA vpravo */

/* Sticky CTA (mobil) */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid #60E3F0;
  background: rgba(23, 23, 23, .6);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(96, 227, 240, .3);
}


.signature-skills,
.profile-projects,
.profile-testimonial,
.profile-stack,
.profile-process,
.profile-switch {
  text-align: center;
}

/* chips / tagy / kroky doprostřed */
.signature-skills .skill-chips,
.profile-stack .tags,
.process-steps {
  justify-content: center;
}

/* vybrané projekty – grid hezky uprostřed */
.profile-projects .grid {
  margin: 0 auto;
  justify-items: center;
  /* zarovná karty uprostřed buněk */
  max-width: 1120px;
  /* volitelně strop šířky, ať to drží rytmus */
}

/* karta projektu – nechat rozumnou šířku, ať se centruje pěkně ve 2 sloupcích */
.profile-projects .project-card {
  width: 100%;
  max-width: 560px;
}

/* reference karta doprostřed */
.profile-testimonial .t-card {
  margin-left: auto;
  margin-right: auto;
}

/* přepínač na druhou vizitku – box uprostřed */
.profile-switch .switch-card {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  /* jistota, aby nic nepřesahovalo za radius */
}


/*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;
}

/*CALL RSERVE*/

.reserve-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 120px auto 100px 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;

}

/*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 (max-width: 1024px) {
  .profile-hero {
    grid-template-columns: 300px 1fr;
  }

  .profile-head h1 {
    font-size: 46px;
  }
}

@media (max-width: 860px) {
  .title-row {

    justify-self: center;
  }

  .profile-hero {
    grid-template-columns: 1fr;
    justify-self: center;
  }

  .profile-photo {
    max-width: 320px;
    justify-self: center;
  }

  .profile-photo img {
    margin: 0 auto;
  }

  .profile-head {
    text-align: center;
    max-width: 100%;
  }

  .profile-bio {
    justify-self: center;
  }

  .meta {
    justify-content: center;
  }

  .cta-row,
  .social-row {
    justify-content: center;
  }
}

@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 */


  }


  .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;
  }


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

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

  /*PERSONALIZED DETAIL*/

  .profile-projects .grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: flex;
  }

  .profile-switch .switch-card {
    flex-direction: column;
    /* složit do sloupce */
    align-items: center;
    text-align: center;
  }

  .profile-switch .switch-card>div {
    flex-direction: column;
    /* přepíše desktop řádkové zarovnání */
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .profile-switch .ghost-button {
    margin-left: 0;
    /* pryč z pravé strany */
    margin-top: 12px;
    /* odstup pod textem */
    width: 100%;
    max-width: 260px;
    /* příjemná šířka */
  }


  /* jemné sjednocení – tlačítka mají vždy 100% centrování textu */
  .primary-button,
  .ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /*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;
  }


  /*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;

  }
}